/* About Hero Section - Fixed */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 145px 40px 80px;
    background: linear-gradient(135deg, rgba(45, 74, 34, 0.9), rgba(30, 51, 24, 0.8)),
                url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-hero-content {
    text-align: center;
    color: #e6e9e3;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.about-hero p {
    font-size: 1.3rem;
    line-height: 1.7;
}

/* About Story */
.about-story {
    padding: 100px 0;
    background: var(--bg-primary);
}

.about-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
}

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

/* Story Image Logo Styling */
.story-image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    padding: 2rem 3rem 2rem 2rem;
}

.story-image img {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Mobile responsiveness for logo */
@media (max-width: 768px) {
    .story-image {
        padding: 1.5rem;
        justify-content: center;
    }
    
    .story-image img {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .story-image {
        padding: 1rem;
        justify-content: center;
    }
    
    .story-image img {
        max-height: 250px;
    }
}

/* Values Section */
.about-values {
    padding: 100px 0;
    background: var(--bg-card);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
    border: 2px solid var(--accent-gold);
}

.value-icon i {
    font-size: 2rem;
    color: #e6e9e3;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
}

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

/* Team Section */
.about-team {
    padding: 100px 0;
    background: var(--bg-darker);
}

.about-team .section-header h2 {
    color: #e6e9e3;
}

.about-team .section-header h2::after {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light), var(--accent-gold));
}

.about-team .section-header p {
    color: var(--primary-lightest);
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.team-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #e6e9e3;
    font-family: 'Playfair Display', serif;
}

.team-text p {
    font-size: 1.1rem;
    color: var(--primary-lightest);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.team-stats {
    display: flex;
    gap: 2rem;
}

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

.team-stat h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.2);
}

.team-stat p {
    color: var(--primary-lightest);
    font-size: 0.9rem;
    margin: 0;
}

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

/* Mission Vision Section */
.mission-vision {
    padding: 100px 0;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 74, 34, 0.1), rgba(212, 175, 55, 0.05));
    z-index: 1;
}

.mission-vision .container {
    position: relative;
    z-index: 2;
}

.mission-vision .section-header h2 {
    color: #e6e9e3;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mission-vision .section-header p {
    color: var(--primary-lightest);
    font-size: 1.2rem;
}

.mission-vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.mission, .vision {
    background: rgba(230, 233, 227, 0.05);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mission::before, .vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold-dark), var(--accent-gold), var(--accent-gold-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.mission:hover::before, .vision:hover::before {
    transform: scaleX(1);
}

.mission:hover, .vision:hover {
    background: rgba(230, 233, 227, 0.08);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.mission:hover .mv-icon, .vision:hover .mv-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.mv-icon i {
    font-size: 2rem;
    color: var(--primary-darker);
}

.mission h3, .vision h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e6e9e3;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.mission p, .vision p {
    color: var(--primary-lightest);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 110px 20px 60px;
        min-height: 50vh;
        background-attachment: scroll;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .about-story {
        padding: 80px 0;
    }
    
    .about-story-content,
    .team-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .story-text h2,
    .team-text h3 {
        font-size: 2rem;
    }
    
    .story-text p,
    .team-text p {
        font-size: 1rem;
    }
    
    .story-image img,
    .team-image img {
        height: 300px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2.5rem 2rem;
        margin: 0 20px;
    }
    
    .team-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .team-stat h4 {
        font-size: 1.8rem;
    }
    
    .mission-vision {
        padding: 80px 0;
    }
    
    .mission-vision .section-header h2 {
        font-size: 2rem;
    }
    
    .mission-vision-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 3rem;
    }
    
    .mission, .vision {
        padding: 2.5rem 2rem;
    }
    
    .mv-icon {
        width: 70px;
        height: 70px;
    }
    
    .mv-icon i {
        font-size: 1.8rem;
    }
    
    .mission h3, .vision h3 {
        font-size: 1.6rem;
    }
    
    .mission p, .vision p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 15px 50px;
        min-height: 45vh;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .about-story,
    .about-values,
    .about-team {
        padding: 60px 0;
    }
    
    .story-text h2,
    .team-text h3 {
        font-size: 1.8rem;
    }
    
    .story-text p,
    .team-text p {
        font-size: 0.95rem;
    }
    
    .story-image img,
    .team-image img {
        height: 250px;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
        margin: 0 15px;
    }
    
    .value-card h3 {
        font-size: 1.2rem;
    }
    
    .team-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .mission-vision {
        padding: 60px 0;
    }
    
    .mission-vision .section-header h2 {
        font-size: 1.8rem;
    }
    
    .mission, .vision {
        padding: 2rem 1.5rem;
    }
    
    .mv-icon {
        width: 60px;
        height: 60px;
    }
    
    .mv-icon i {
        font-size: 1.5rem;
    }
    
    .mission h3, .vision h3 {
        font-size: 1.4rem;
    }
    
    .mission p, .vision p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 360px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }
    
    .value-card {
        margin: 0 10px;
        padding: 1.5rem 1rem;
    }
    
    .story-text h2,
    .team-text h3 {
        font-size: 1.6rem;
    }
}
