/* About Page Specific Styles */

/* About Content Sections */
.about-content-section {
    padding: 80px 0;
    background-color: #0d1f2d;
}

.about-content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.about-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

/* Testimonial Parallax Sections */
.testimonial-parallax {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-parallax-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 1;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.testimonial-parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 31, 45, 0.7);
}

.testimonial-content {
    max-width: 900px;
    padding: 60px 40px;
    text-align: center;
}

.testimonial-author {
    font-size: 0.875rem;
    color: #d9c7bd;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.testimonial-text {
    font-family: 'Georgia', serif;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.8;
    color: #ffffff;
    font-style: italic;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background-color: #112739;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.team-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.team-intro-heading {
    color: #ffffff;
    margin-bottom: 32px;
}

.team-intro-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1.125rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
}

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

.team-photo {
    margin-bottom: 24px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.team-member:hover .team-photo img {
    transform: scale(1.05);
}

.team-name {
    font-family: 'haboro-contrast-normal', 'Georgia', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.team-title {
    font-size: 1rem;
    color: #d9c7bd;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    font-weight: 500;
}

.team-bio {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1rem;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-content-section {
        padding: 60px 0;
    }
    
    .testimonial-parallax {
        height: 80vh;
        min-height: 500px;
    }
    
    .testimonial-parallax-bg {
        top: 0;
        height: 100%;
    }
    
    .testimonial-content {
        padding: 40px 30px;
    }
    
    .team-section {
        padding: 80px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 640px) {
    .about-content-section {
        padding: 50px 0;
    }
    
    .testimonial-parallax {
        height: auto;
        min-height: 700px;
    }
    
    .testimonial-parallax-bg {
        top: 0;
        height: 100%;
        min-height: 700px;
    }
    
    .testimonial-overlay {
        min-height: 700px;
    }
    
    .testimonial-content {
        padding: 80px 24px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 600px;
    }
    
    .testimonial-text {
        font-size: 1.125rem;
        line-height: 1.7;
    }
    
    .team-section {
        padding: 60px 0;
    }
    
    .team-grid {
        gap: 50px;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .testimonial-parallax-bg {
        transform: none !important;
    }
}
