/* ==========================================
   RESET & BASE STYLES
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================
   CONTAINER & LAYOUT
   ========================================== */

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

/* ==========================================
   HEADER
   ========================================== */

.header {
    position: relative;
    padding: 42px 0 20px;
    z-index: 10;
}

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

.logo-container {
    flex: 0 0 auto;
}

.logo {
    height: 39px;
    width: auto;
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.2;
    color: #000;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(18px, 3vw, 24px);
    color: #db1027;
    margin-bottom: 40px;
    line-height: 1.4;
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    color: #000;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background-color: #121212;
    color: #fff;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn:hover {
    background-color: #db1027;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-icon {
    width: 24px;
    height: 24px;
}

/* ==========================================
   CONTACT INFO SECTION
   ========================================== */

.contact-info {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.contact-text {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    margin-bottom: 8px;
    color: #000;
}

.contact-text:last-child {
    margin-bottom: 0;
}

.brand-name {
    color: #db1027;
    font-weight: 600;
}

/* ==========================================
   BRANDS SECTION
   ========================================== */

.brands-section {
    padding: 80px 20px;
    background-color: #f6f6f6;
}

.section-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(28px, 4vw, 36px);
    text-align: center;
    color: #000;
    margin-bottom: 60px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
    justify-items: center;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100px;
}

.brand-logo {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-name-text {
    font-size: 14px;
    text-align: center;
    color: #000;
    line-height: 1.2;
    min-height: 32px;
    display: flex;
    align-items: center;
}

.brands-footer {
    text-align: center;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: #000;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background-color: #000;
    padding: 20px;
    text-align: center;
}

.footer-text {
    font-size: 14px;
    color: #fff;
    line-height: 1.4;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero {
        min-height: 500px;
        padding: 80px 20px 60px;
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 20px;
    }

    .section-title {
        margin-bottom: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header {
        padding: 30px 0 15px;
    }

    .logo {
        height: 32px;
    }

    .hero {
        min-height: auto;
        padding: 60px 20px 50px;
    }

    .hero-title {
        margin-bottom: 15px;
    }

    .hero-subtitle {
        margin-bottom: 30px;
    }

    .hero-description {
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-info {
        padding: 40px 20px;
    }

    .brands-section {
        padding: 60px 20px;
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 15px;
    }

    .brand-item {
        width: 80px;
    }

    .brand-logo {
        width: 80px;
        height: 80px;
    }

    .brand-name-text {
        font-size: 12px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
    }

    .social-links {
        gap: 15px;
    }

    .cta-buttons {
        gap: 15px;
    }

    .btn {
        padding: 12px 16px;
        font-size: 15px;
    }
}

/* ==========================================
   UTILITIES
   ========================================== */

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title {
    animation: none;
}

.hero-subtitle {
    animation: none;
}

.hero-description {
    animation: none;
}

.cta-buttons {
    animation-delay: 0.4s;
}
