/* Amandine Font Import - Using Google Fonts alternative (Playfair Display) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Root Variables */
:root {
    --color-primary-text: #1D1D1D;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-footer-bg: #050505;
    --color-label-box-bg: #030303;
    --font-primary: 'Inter', -apple-system, Roboto, Helvetica, sans-serif;
    --font-display: 'Playfair Display', serif;
}

/* About Page General Styles */
.about-page {
    background: var(--color-white);
}

/* Hero Section */
.about-hero-section {
    padding: 5rem 0 4rem;
    background: var(--color-white);
}

.about-hero-content {
    padding-right: 2rem;
}

.section-label {
    color: var(--color-primary-text);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 1.375rem;
}

.page-title {
    color: var(--color-primary-text);
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 1.75rem;
}

.hero-description {
    color: var(--color-primary-text);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 2.5rem;
    max-width: 34.375rem;
}

.about-hero-image {
    width: 100%;
    max-width: 28.438rem;
    margin-left: auto;
}

.hero-img {
    width: 100%;
    height: auto;
    aspect-ratio: 91 / 114;
    object-fit: cover;
}

.btn-know-more {
    display: inline-block;
    padding: 0.625rem 2.25rem;
    border-radius: 1.563rem;
    border: 1px solid var(--color-primary-text);
    background: transparent;
    color: var(--color-primary-text);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: normal;
}

.btn-know-more:hover {
    background: var(--color-primary-text);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 29, 29, 0.2);
}

/* Students Gallery Section */
.students-gallery-section {
    padding: 3rem 0;
    background: var(--color-white);
}

.section-heading {
    color: var(--color-primary-text);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 2.688rem;
    padding-left: 1rem;
}

.students-gallery {
    display: flex;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.gallery-image-wrapper {
    flex: 0 0 auto;
    width: 11.875rem;
}

.gallery-img {
    width: 100%;
    height: 17.938rem;
    object-fit: cover;
}

/* Testimonial Sections */
.testimonial-section {
    padding: 4rem 0;
    background: var(--color-white);
}

.testimonial-image-wrapper {
    width: 100%;
    max-width: 28.313rem;
}

.testimonial-img {
    width: 100%;
    height: auto;
    aspect-ratio: 453 / 391;
    object-fit: cover;
}

.testimonial-content {
    padding: 2rem;
}

.testimonial-section.testimonial-left .testimonial-content {
    padding-left: 3rem;
}

.testimonial-section.testimonial-right .testimonial-content {
    padding-right: 3rem;
}

.testimonial-year {
    color: var(--color-primary-text);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0.5rem;
}

.testimonial-name {
    color: var(--color-primary-text);
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 2rem;
}

.testimonial-quote {
    color: var(--color-primary-text);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: normal;
    max-width: 34.375rem;
}

/* Performance Image Section */
.performance-image-section {
    width: 100%;
    overflow: hidden;
}

.performance-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1443 / 391;
    object-fit: cover;
    display: block;
}

/* Instructor Section */
.instructor-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.instructor-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 28.438rem;
}

.instructor-label-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 7.625rem;
    background: var(--color-label-box-bg);
    display: flex;
    align-items: center;
    padding-left: 2rem;
    z-index: 2;
}

.instructor-label-box .section-label {
    color: var(--color-white);
    margin-bottom: 0;
}

.instructor-img {
    width: 100%;
    height: auto;
    aspect-ratio: 91 / 114;
    object-fit: cover;
    display: block;
}

.instructor-content {
    padding-left: 3rem;
}

.instructor-name {
    color: var(--color-primary-text);
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.instructor-description {
    color: var(--color-primary-text);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 2.5rem;
    max-width: 34.375rem;
}

/* Footer */
.about-footer {
    background: var(--color-footer-bg);
    padding: 7.688rem 0 4rem;
}

.footer-container {
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 10.25rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 2.563rem;
}

.footer-link {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.7;
    color: var(--color-white);
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 1.063rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon svg {
    display: block;
}

/* Responsive Styles */

/* Large Desktop */
@media (min-width: 1400px) {
    .page-title,
    .testimonial-name,
    .instructor-name {
        font-size: 6rem;
    }
}

/* Desktop */
@media (max-width: 1199px) {
    .page-title,
    .testimonial-name,
    .instructor-name {
        font-size: 5rem;
    }

    .hero-description,
    .testimonial-quote,
    .instructor-description,
    .section-label,
    .section-heading,
    .testimonial-year,
    .footer-link {
        font-size: 1.375rem;
    }

    .btn-know-more {
        font-size: 1.375rem;
    }

    .footer-container {
        padding: 0 6rem;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .about-hero-section {
        padding: 3rem 0;
    }

    .about-hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .page-title,
    .testimonial-name,
    .instructor-name {
        font-size: 4rem;
    }

    .hero-description,
    .testimonial-quote,
    .instructor-description {
        font-size: 1.25rem;
    }

    .section-label,
    .section-heading,
    .testimonial-year,
    .footer-link {
        font-size: 1.25rem;
    }

    .btn-know-more {
        font-size: 1.25rem;
    }

    .about-hero-image {
        margin: 0 auto;
    }

    .testimonial-section {
        padding: 3rem 0;
    }

    .testimonial-content {
        padding: 1.5rem 0;
    }

    .testimonial-section.testimonial-left .testimonial-content,
    .testimonial-section.testimonial-right .testimonial-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .instructor-content {
        padding-left: 0;
        margin-top: 2rem;
    }

    .footer-container {
        padding: 0 3rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .gallery-image-wrapper {
        width: 10rem;
    }

    .gallery-img {
        height: 15rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .about-hero-section {
        padding: 2rem 0;
    }

    .page-title,
    .testimonial-name,
    .instructor-name {
        font-size: 3rem;
    }

    .hero-description,
    .testimonial-quote,
    .instructor-description {
        font-size: 1.125rem;
        line-height: 1.5;
    }

    .section-label,
    .section-heading,
    .testimonial-year,
    .footer-link {
        font-size: 1.125rem;
    }

    .btn-know-more {
        font-size: 1.125rem;
        padding: 0.563rem 2rem;
    }

    .students-gallery-section {
        padding: 2rem 0;
    }

    .testimonial-section {
        padding: 2rem 0;
    }

    .instructor-section {
        padding: 3rem 0;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .about-footer {
        padding: 4rem 0 2rem;
    }

    .footer-content {
        margin-bottom: 3rem;
    }

    .gallery-image-wrapper {
        width: 8.75rem;
    }

    .gallery-img {
        height: 13.125rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 576px) {
    .page-title,
    .testimonial-name,
    .instructor-name {
        font-size: 2.5rem;
    }

    .hero-description,
    .testimonial-quote,
    .instructor-description,
    .section-label,
    .section-heading,
    .testimonial-year,
    .footer-link {
        font-size: 1rem;
    }

    .btn-know-more {
        font-size: 1rem;
        padding: 0.5rem 1.75rem;
    }

    .gallery-image-wrapper {
        width: 7.5rem;
    }

    .gallery-img {
        height: 11.25rem;
    }

    .footer-section {
        gap: 1.5rem;
    }
}
