/* about.css */

/* --- Page Header --- */
.header-about {
    background-image: url('https://images.unsplash.com/photo-1543007630-9710e4a00a20?q=80&w=2070&auto=format&fit=crop');
}

.header-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.7) 100%);
}

.page-header {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.header-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    color: var(--primary-white);
}

.header-content p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* --- Our Story Section --- */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    padding: 4rem 0;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.chef-sig {
    width: 200px;
    filter: invert(1);
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.image-stack {
    position: relative;
    height: 600px;
}

.stack-main {
    width: 80%;
    height: 80%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.stack-sub {
    width: 70%;
    height: 70%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

/* --- Philosophy Section --- */
.philosophy {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.philosophy-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.phil-parallax {
    width: 100%;
    height: 120%;
    object-fit: cover;
    will-change: transform;
}

.philosophy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.phil-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}

.phil-card {
    max-width: 600px;
    width: 100%;
}

.phil-card .glass-card {
    padding: 5rem 4rem;
    text-align: left;
}

.phil-card h2 {
    color: #ff3f3ffa;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.phil-card p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 1;
}

/* --- Community Section --- */
.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    padding: 6rem 0;
}

.comm-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .story-grid,
    .community-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .story-text .section-title,
    .community-text .section-title {
        text-align: center;
    }

    .story-text .section-subtitle,
    .community-text .section-subtitle {
        text-align: center;
    }

    .phil-content {
        justify-content: center;
    }

    .image-stack {
        height: 480px;
    }

    .story-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .header-content h1 {
        font-size: 3rem;
    }

    .header-content p {
        font-size: 1.1rem;
    }

    .image-stack {
        height: 350px;
        margin-bottom: 2rem;
    }

    .phil-card .glass-card {
        padding: 3rem 1.5rem;
    }

    .phil-card h2 {
        font-size: 2.2rem;
    }

    .stat-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 2.2rem;
    }
    
    .phil-card h2 {
        font-size: 1.8rem;
    }
}