/* QuietForge Supply - Professional Security Accessories Website Styles */

/* CSS Variables for Color System */
:root {
    --charcoal: #2D2D2D;
    --graphite: #4A4A4A;
    --petrol-blue: #2C5F5F;
    --safety-amber: #E6A500;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-medium: #666666;
    --text-light: #999999;
    --border-color: #E0E0E0;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    color: var(--charcoal);
}

h2 {
    font-size: 2.25rem;
    color: var(--charcoal);
}

h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
}

p {
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-product {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--safety-amber);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #CC9400;
}

.btn-secondary {
    background-color: transparent;
    color: var(--petrol-blue);
    border: 2px solid var(--petrol-blue);
}

.btn-secondary:hover {
    background-color: var(--petrol-blue);
    color: var(--white);
}

.btn-product {
    background-color: var(--petrol-blue);
    color: var(--white);
    width: 100%;
}

.btn-product:hover {
    background-color: #1E4343;
}

/* Header */
.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
}

.header-contact .phone {
    color: var(--petrol-blue);
    font-weight: 500;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #FAFAFA 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
    min-width: 0;
}

.hero-visual {
    flex: 0 0 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

.hero-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-placeholder {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 60px 40px;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.hero-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    opacity: 0.6;
}

.hero-image-placeholder span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Hero Image */
.hero-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
}

/* Compliance Notice */
.compliance-notice {
    background-color: var(--safety-amber);
    padding: 24px 0;
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.notice-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.notice-text h3 {
    color: var(--white);
    margin-bottom: 8px;
}

.notice-text p {
    color: var(--white);
    margin: 0;
    opacity: 0.95;
}

/* Product Categories */
.product-categories {
    padding: 80px 0;
}

.product-categories h2 {
    text-align: center;
    margin-bottom: 60px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.category-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-light);
}

.category-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.category-card h3 {
    margin-bottom: 16px;
    color: var(--charcoal);
}

.category-card p {
    color: var(--text-medium);
    margin: 0;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.featured-products h2 {
    text-align: center;
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.product-image-placeholder {
    background-color: var(--light-gray);
    border-bottom: 1px solid var(--border-color);
    padding: 40px;
    text-align: center;
}

.product-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
    opacity: 0.6;
}

.product-image-placeholder span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Product Images */
.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.product-info {
    padding: 32px;
}

.product-info h3 {
    margin-bottom: 16px;
    color: var(--charcoal);
}

.product-info p {
    margin-bottom: 20px;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.product-specs span {
    font-size: 0.875rem;
    color: var(--text-light);
    background-color: var(--light-gray);
    padding: 6px 12px;
    border-radius: 4px;
}

.product-price {
    background-color: var(--safety-amber) !important;
    color: var(--white) !important;
    font-weight: 600;
    font-size: 1rem;
}

/* Security Features */
.security-features {
    padding: 80px 0;
}

.security-features h2 {
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
}

.feature-item h3 {
    margin-bottom: 16px;
    color: var(--charcoal);
}

.feature-item p {
    color: var(--text-medium);
    margin: 0;
}

/* Business Solutions */
.business-solutions {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.business-solutions h2 {
    text-align: center;
    margin-bottom: 60px;
}

.business-content {
    display: grid;
  grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.business-info h3 {
    margin-bottom: 20px;
}

.business-features {
    list-style: none;
    margin: 24px 0;
}

.business-features li {
    color: var(--text-medium);
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.business-features li:before {
    content: '•';
    color: var(--safety-amber);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

.business-visual {
    display: flex;
    justify-content: center;
}

.business-image-placeholder {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 60px 40px;
    text-align: center;
    width: 100%;
    max-width: 350px;
}

.business-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    opacity: 0.6;
}

.business-image-placeholder span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Business Image */
.business-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
}

/* Quality Assurance */
.quality-assurance {
    padding: 80px 0;
}

.quality-assurance h2 {
    text-align: center;
    margin-bottom: 60px;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.quality-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-light);
}

.quality-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
}

.quality-item h3 {
    margin-bottom: 16px;
    color: var(--charcoal);
}

.quality-item p {
    color: var(--text-medium);
    margin: 0;
}

/* Legal Compliance */
.legal-compliance {
    padding: 60px 0;
    background-color: var(--petrol-blue);
}

.compliance-content {
    display: flex;
    align-items: center;
    gap: 32px;
}

.compliance-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.compliance-info h3 {
    color: var(--white);
    margin-bottom: 16px;
}

.compliance-info p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 20px;
}

.compliance-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.compliance-details span {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.875rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-item {
    text-align: center;
    padding: 32px;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.contact-item h3 {
    margin-bottom: 12px;
    color: var(--charcoal);
}

.contact-item p {
    color: var(--text-medium);
    margin: 0;
}

/* Footer */
.footer {
    background-color: var(--charcoal);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.footer-logo {
    width: 32px;
    height: 32px;
}

.footer-brand-name {
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
}

.footer-info {
    flex: 1;
}

.footer-info p {
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 12px;
}

.footer-notice {
    font-size: 0.875rem;
    opacity: 0.6;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--graphite);
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid var(--graphite);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--white);
    opacity: 0.6;
    margin: 0;
    font-size: 0.875rem;
}

/* Header Logo Link */
.logo-section a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo-section a:hover .brand-name {
  color: var(--petrol-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-visual {
        flex: none;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .business-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .compliance-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .notice-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}