/* About Us Page Styles */

.about-page-body .header {
    background: rgba(10, 10, 10, 0.4) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding: 15px 0 !important;
}

.about-page {
    background-color: #F5F1E8;
    color: #232323;
    padding-top: 80px; /* Header offset */
}

/* Hero Section */
.about-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(245, 241, 232, 1));
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 40px;
}

.about-hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
    color: #232323;
}

.about-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 300;
    color: rgba(35, 35, 35, 0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Story Section */
.about-story {
    padding: 120px 0;
}

.about-story-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-story-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #232323;
    font-weight: 300;
}

.about-story-text p {
    margin-bottom: 32px;
}

.about-story-text p:last-child {
    margin-bottom: 0;
}

/* Split Section */
.about-split {
    padding: 100px 0;
}

.about-split-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

.about-split-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-split-content {
    flex: 1;
}

.about-split-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 24px;
    color: #232323;
}

.about-split-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(35, 35, 35, 0.85);
    font-weight: 300;
}

.about-split-image {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.about-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-split-image:hover img {
    transform: scale(1.05);
}

/* CTA Section */
.about-cta {
    padding: 160px 0;
    text-align: center;
}

.about-cta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-cta-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 600;
    margin-bottom: 20px;
    color: #232323;
}

.about-cta-subtext {
    font-size: 1.15rem;
    color: rgba(35, 35, 35, 0.7);
    margin-bottom: 48px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-split-grid {
        flex-direction: column;
        gap: 48px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-story {
        padding: 80px 0;
    }
    .about-cta {
        padding: 100px 0;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .about-split-grid {
        flex-direction: column;
        gap: 48px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-story {
        padding: 80px 0;
    }
    .about-cta {
        padding: 100px 0;
    }
}
