/* HERO */

.about-hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('https://brluxaawbbmgolnxamki.supabase.co/storage/v1/object/public/products/banners/about-banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 5% 60px;
    position: relative;
    overflow: hidden;
}


.about-content {
    max-width: 900px;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.about-content span {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 20px;
}

.about-content h1 {
    font-size: clamp(32px, 5vw, 60px);
    margin-bottom: 20px;
    line-height: 1.1;
}

.about-content p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* STORY */

.about-story {
    padding: 60px 10%;
    background: var(--white);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    font-size: clamp(28px, 3.5vw, 36px);
    color: var(--primary);
    margin-bottom: 20px;
}

.story-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* VALUES */

.about-values {
    padding: 60px 10%;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1240px;
    margin: 0 auto;
}

.value-card {
    background: var(--white);
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.value-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 30px;
    display: block;
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: 18px;
    font-size: 22px;
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 140px 5% 80px;
        min-height: 70vh;
    }

    .about-content h1 {
        font-size: clamp(34px, 9vw, 56px);
    }

    .about-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .about-story {
        padding: 60px 5%;
        text-align: center;
    }

    .story-content p {
        font-size: 15px;
    }

    .about-values {
        padding: 60px 5%;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 35px 25px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 120px 5% 60px;
        min-height: 60vh;
    }

    .about-content h1 {
        font-size: clamp(28px, 9vw, 40px);
    }
}