/* Our Culture Page Styles */
.culture-hero-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

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

.culture-hero__image {
    width: 100%;
    height: 100%;
    filter: brightness(0.8);
}

.culture-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.culture-title-section {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    background: var(--color-background);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.culture-title {
    font-size: 7rem;
    font-weight: 900;
    text-align: center;
    background: url('/assets/images/hero/our-culture.jpg') center/cover;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0 0 var(--spacing-lg) 0;
    line-height: 1.1;
    position: relative;
    background-attachment: fixed;
    filter: brightness(0.8);
}

.culture-description {
    font-size: 1.5rem;
    text-align: center;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Mission & Vision Section */
.mission-vision {
    padding: var(--spacing-2xl) 0;
}

.statement-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 65vh;
    background: var(--color-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--spacing-2xl);
}

.statement-card--reverse {
    direction: rtl;
    background-color:#8B4000;
}

.statement-card--reverse > * {
    direction: ltr;
}

.statement-card__image {
    height: 100%;
}

.statement-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.statement-card__content {
    padding: var(--spacing-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.statement-card__title {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
    font-weight: 800;
}

.statement-card__text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--color-background);
}

/* About Culture Section */
.about-culture {
    padding: var(--spacing-2xl) 0;
    background: var(--color-text-light);
    color: var(--color-text-inverse);
}

.about-title {
    font-size: 5rem;
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    color: var(--color-text-inverse);
    font-weight: 800;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: var(--spacing-lg);
}

.about-highlight {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-secondary);
    font-style: italic;
    margin-top: var(--spacing-xl);
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .culture-title {
        font-size: clamp(3rem, 8vw, 6rem);
    }
    
    .statement-card__content {
        padding: var(--spacing-xl);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}

@media (max-width: 768px) {
    .culture-hero-container {
        height: 100vh;
    }
    
    .culture-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .culture-description {
        font-size: var(--font-size-lg);
        padding: 0 var(--spacing-md);
    }
    
    .statement-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .statement-card--reverse {
        direction: ltr;
    }
    
    .statement-card__image {
        height: 300px;
    }
    
    .statement-card__content {
        padding: var(--spacing-lg);
    }
    
    .statement-card__title {
        font-size: var(--font-size-2xl);
    }
    
    .about-title {
        font-size: var(--font-size-3xl);
    }
}

@media (max-width: 480px) {
    .culture-hero-container {
        height: 100vh;
    }
    
    .culture-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .statement-card__content {
        padding: var(--spacing-md);
    }
    
    .about-text {
        font-size: var(--font-size-base);
    }
}
