/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-blue: #5586BC;
    --secondary-blue: #4A7BA7;
    --light-blue: #7BA3D1;
    --dark-blue: #3D6B96;
    --accent-blue: #6B9BD2;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --background-light: #F8FAFC;
    --white: #FFFFFF;
    --shadow: rgba(85, 134, 188, 0.15);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(85, 134, 188, 0.1);
    box-shadow: 0 2px 20px var(--shadow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.nav-logo .logo {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.nav-logo .logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
    margin-right: 40px;
}

.bar {
    width: 30px;
    height: 3px;
    background: var(--primary-blue);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Header Banner */
.header-banner {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 40px 20px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.banner-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    opacity: 0;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    animation: fadeInUp 1s ease 0.5s forwards;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.banner-text-box {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 4rem;
    margin: 2rem auto;
    max-width: 800px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
    text-align: center;
}

.banner-description {
    font-size: 1.3rem;
    margin: 0;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.banner-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: auto;
    margin-bottom: -80px;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 8px 25px rgba(85, 134, 188, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-blue);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(85, 134, 188, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 120px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
}

/* About Section */
.about {
    background: var(--background-light);
}

.intro-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow);
    object-fit: cover;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 3rem;
}

.about-image {
    text-align: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(85, 134, 188, 0.1);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
}

.feature i {
    font-size: 3.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.feature h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.feature-link {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: var(--primary-blue);
}

.about-image-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 40px var(--shadow);
}

.about-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-text h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.about-image-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.highlight-text {
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-style: italic;
}

/* Reviews Section */
.reviews {
    background: white;
    padding: 120px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.review-card {
    background: var(--background-light);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px var(--shadow);
    border: 1px solid rgba(85, 134, 188, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px var(--shadow);
}

.review-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 2rem;
}

.review-stars i {
    color: #FFD700;
    font-size: 1.3rem;
}

.review-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-author-info h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.review-author-info p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Videos Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    margin: 0;
    padding: 0;
}

.video-item iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    display: block;
}

.video-item h3,
.video-item p {
    margin: 0;
    background: white;
    padding: 0.5rem 0;
    line-height: 1.2;
}

.video-item h3 {
    margin-bottom: 0;
    display: block;
}

.video-item h3::after {
    content: "";
    display: block;
}

.video-item p {
    margin: 0;
    display: block;
}

.video-placeholder {
    background: var(--background-light);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    border: 2px dashed var(--light-blue);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(85, 134, 188, 0.1), transparent);
    transition: left 0.5s;
}

.video-placeholder:hover::before {
    left: 100%;
}

.video-placeholder:hover {
    border-color: var(--primary-blue);
    background: rgba(85, 134, 188, 0.05);
    transform: translateY(-5px);
}

.video-placeholder i {
    font-size: 5rem;
    color: #dc2626;
    margin-bottom: 1.5rem;
}

.video-placeholder h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.video-placeholder p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Audio Section */
.audio {
    background: var(--background-light);
}

.audio-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.audio-player {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.mp3-player {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px var(--shadow);
    width: 100%;
    border: 1px solid rgba(85, 134, 188, 0.1);
}

.mp3-player h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.track-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.track-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 15px;
    border: 1px solid rgba(85, 134, 188, 0.1);
    transition: all 0.3s ease;
}

.track-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow);
}

.track-info h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.track-info p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

.audio-controls {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    outline: none;
}

.audio-controls::-webkit-media-controls-panel {
    background-color: var(--primary-blue);
    border-radius: 10px;
}

.repertoire {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px var(--shadow);
    border: 1px solid rgba(85, 134, 188, 0.1);
}

.repertoire h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    text-align: center;
}

.repertoire-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.category {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    border: 1px solid rgba(85, 134, 188, 0.1);
    transition: all 0.3s ease;
}

.category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow);
}

.category h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    text-align: center;
}

.category ul {
    list-style: none;
}

.category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(85, 134, 188, 0.1);
    color: var(--text-light);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.category li:hover {
    color: var(--primary-blue);
    padding-left: 1rem;
    background: rgba(85, 134, 188, 0.05);
    border-radius: 10px;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.category li:last-child {
    border-bottom: none;
}

.repertoire-note {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(85, 134, 188, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--primary-blue);
    text-align: center;
}

.repertoire-note p {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

/* Photos Section */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow);
    background: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    width: 100%;
}
.photo-item--portrait {
    grid-row: span 2;
    height: 100%;
    min-height: 620px;
}

.photo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    transition: all 0.3s ease;
    object-position: center center;
}

.photo-item:hover img {
    transform: scale(1.02);
}

.photo-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    background: rgba(85, 134, 188, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay i {
    font-size: 3rem;
    color: white;
}

/* Contact Section */
.contact {
    background: var(--background-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px var(--shadow);
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-right: 1.5rem;
    width: 40px;
    text-align: center;
}

.contact-item a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-blue);
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow);
    border: 1px solid rgba(85, 134, 188, 0.1);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(85, 134, 188, 0.2);
    border-radius: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background: var(--background-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(85, 134, 188, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Playfair Display', serif;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.footer-section ul li a:hover {
    color: var(--light-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 95%;
    max-height: 95%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    width: auto;
    height: auto;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(85, 134, 188, 0.8);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-nav:hover {
    background: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
    
    .nav-container {
        max-width: 1000px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 800px;
    }
    
    .nav-container {
        max-width: 800px;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .audio-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    .hamburger {
        display: flex;
        margin-right: 35px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .header-banner {
        height: calc(100vh - 40px);
        min-height: 60vh;
        max-height: 80vh;
        padding-top: 40px;
    }


    .banner-image {
        object-position: 40% 20% !important;
        top: 80px !important;
    }
    

    .banner-logo {
        display: none;
    }
    
    .banner-text-box {
        padding: 1.5rem 2rem;
        margin: 20rem auto 1rem auto;
        max-width: 90%;
    }
    
    .banner-description {
        font-size: 1rem;
    }
    
    .banner-buttons {
        margin-bottom: -60px;
        gap: 0.8rem;
    }
    
    .banner-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }

    section {
        padding: 80px 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .video-item iframe {
        width: 100% !important;
        aspect-ratio: 16/9 !important;
        height: auto !important;
    }
    
    
    .video-item h3 {
        font-size: 1.1rem;
        margin: 0.8rem 0 0.5rem 0;
    }
    
    .video-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .repertoire-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        margin-bottom: 1rem;
        padding: 0.8rem;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 8px;
    }
    
    .contact-item i {
        font-size: 1rem;
        margin-right: 0.8rem;
    }
    
    .contact-item a,
    .contact-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .header-banner {
        height: calc(100vh - 60px);
        min-height: 50vh;
        max-height: 70vh;
        padding-top: 35px;
    }


    .banner-image {
        object-position: 35% 20% !important;
        top: 100px !important;
    }
    

    .banner-logo {
        display: none;
    }
    
    .banner-text-box {
        padding: 1.2rem 1.5rem;
        margin: 18rem auto 0.8rem auto;
        max-width: 95%;
    }
    
    .banner-description {
        font-size: 0.95rem;
    }
    
    .banner-buttons {
        margin-bottom: -100px;
        gap: 0.6rem;
    }
    
    .banner-buttons .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .photo-item {
        height: 250px;
    }
    
    .modal-content {
        max-width: 98%;
        max-height: 98%;
    }
    
    
    .video-item iframe {
        width: 100% !important;
        aspect-ratio: 16/9 !important;
        height: auto !important;
    }
    
    .video-item h3 {
        font-size: 1rem;
        margin: 0.6rem 0 0.4rem 0;
    }
    
    .video-item p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .contact-info h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-item {
        padding: 0.6rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-item i {
        font-size: 0.9rem;
        margin-right: 0.6rem;
    }
    
    .contact-item a,
    .contact-item span {
        font-size: 0.85rem;
    }
    
    .hamburger {
        margin-right: 25px;
        padding: 8px;
    }
    
    .hamburger .bar {
        width: 25px;
        height: 2px;
    }
    
    .modal-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .modal-prev {
        left: 10px;
    }
    
    .modal-next {
        right: 10px;
    }
}
/* ===== SCROLL ANIMATIONS ===== */

/* Base reveal state */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.reveal-left {
    transform: translateX(-50px);
}
.reveal.reveal-right {
    transform: translateX(50px);
}
.reveal.reveal-scale {
    transform: scale(0.92);
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

/* Stagger delays for grids */
.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.65s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 0.75s; }

/* Navbar shrinks on scroll */
.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(85,134,188,0.25);
    background: rgba(255,255,255,0.98);
}
.navbar.scrolled .nav-container {
    height: 70px;
    transition: height 0.3s ease;
}
.navbar.scrolled .nav-logo .logo {
    height: 55px;
    transition: height 0.3s ease;
}

/* Hover lift for cards */
.feature,
.review-card,
.video-item,
.photo-item {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.feature:hover,
.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(85,134,188,0.2);
}
.video-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(85,134,188,0.18);
}

/* Section title underline animation */
.section-title {
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
    margin: 0.4rem auto 0;
    border-radius: 2px;
    transition: width 0.7s ease 0.3s;
}
.section-title.visible::after {
    width: 80px;
}

/* Banner headline fade-in */
@keyframes bannerFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.banner-content {
    animation: bannerFadeUp 1s ease 0.3s both;
}

/* Smooth image zoom on hover in photo grid */
.photo-item img {
    transition: transform 0.5s ease;
}
.photo-item:hover img {
    transform: scale(1.06);
}
