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

:root {
    --primary-burgundy: #800020;
    --secondary-burgundy: #A0002A;
    --light-burgundy: #B0003A;
    --dark-burgundy: #600015;
    --black: #000000;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    text-align: justify;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-burgundy), var(--secondary-burgundy));
    margin: 0 auto 3rem;
    border-radius: 2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Home page specific animations */
body.home-page .navbar {
    animation: fadeInDown 1s ease-out 5.5s both;
}

/* Override animations for navigation to home page */
body.home-navigation .navbar {
    animation: fadeInDown 1s ease-out 0s both;
}

/* Hide navigation logo on home page but maintain space */
body.home-page .nav-logo {
    visibility: hidden;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px) !important;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px 1rem 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.nav-logo {
    width: 100%;
    margin-bottom: 0.25rem;
}

.nav-logo .logo-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.nav-logo .logo-link:hover {
    color: var(--primary-burgundy);
}

.nav-logo .logo-text.signature-font {
    font-style: italic;
    transition: color 0.3s ease;
}

.nav-logo .logo-text.signature-font:hover {
    color: var(--primary-burgundy);
}

.signature-font {
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    font-style: italic;
    font-size: 2.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    justify-content: flex-end;
}

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

.nav-link:hover {
    color: var(--primary-burgundy);
    text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor;
}

/* Active navigation link - ALWAYS VISIBLE */
.nav-link.active {
    color: var(--primary-burgundy) !important;
    font-weight: 600 !important;
    position: relative !important;
    border-bottom: 3px solid var(--primary-burgundy) !important;
    box-shadow: 0 0 8px rgba(128, 0, 32, 0.5) !important;
}

.nav-link.active::before {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    width: 100% !important;
    height: 3px !important;
    background: var(--primary-burgundy) !important;
    border-radius: 2px !important;
    box-shadow: 0 0 8px rgba(128, 0, 32, 0.5) !important;
    z-index: 10 !important;
}

/* Hover effect for non-active links */
.nav-link:hover:not(.active) {
    color: var(--primary-burgundy);
    text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor;
}

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

.nav-link:hover:not(.active)::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Language Selector */
.language-selector {
    position: relative;
    display: inline-block;
    margin-left: 2rem;
}

.language-btn {
    background: transparent;
    border: 1px solid var(--primary-burgundy);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.language-btn:hover {
    background: var(--primary-burgundy);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid var(--primary-burgundy);
    border-radius: 8px;
    min-width: 150px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 10px 15px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(128, 0, 32, 0.2);
    white-space: nowrap;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: var(--primary-burgundy);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 1;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

/* Home page specific overlay animation */
body.home-page .hero-overlay {
    animation: fadeInOverlay 1s ease-out 4.5s both;
}

/* Override overlay animation for navigation to home page */
body.home-navigation .hero-overlay {
    animation: fadeInOverlay 1s ease-out 0s both;
}

@keyframes fadeInOverlay {
    from {
        background: rgba(0, 0, 0, 0);
    }
    to {
        background: rgba(0, 0, 0, 0.35);
    }
}

.hero-text-container {
    max-width: 50%;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.4);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    animation: glowPulse 2s ease-out 4.5s both;
}

/* Override text container animation for navigation to home page */
body.home-navigation .hero-text-container {
    animation: glowPulse 2s ease-out 0s both;
}

@keyframes glowPulse {
    0% {
        text-shadow: 0 0 50px rgba(255, 255, 255, 1), 0 0 100px rgba(255, 255, 255, 1), 0 0 150px rgba(255, 255, 255, 0.9), 0 0 200px rgba(255, 255, 255, 0.7);
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 1)) drop-shadow(0 0 50px rgba(255, 255, 255, 0.8));
    }
    100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.4);
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    }
}

/* Home page specific text animation */
body.home-page .hero-text-container {
    animation: fadeInLeft 1s ease-out 4.5s both, glowPulse 2s ease-out 4.5s both;
}

/* Override text animation for navigation to home page */
body.home-navigation .hero-text-container {
    animation: fadeInLeft 1s ease-out 0s both, glowPulse 2s ease-out 0s both;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
    font-family: 'Dancing Script', cursive;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-burgundy);
    margin-bottom: 0;
    font-weight: 400;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 15px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #800020, #a00030, #800020);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: spotlight 3s ease-in-out 4.5s both;
    position: relative;
}

/* Override subtitle animation for navigation to home page */
body.home-navigation .hero-subtitle {
    animation: spotlight 3s ease-in-out 0s both;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    background-size: 200% 200%;
    animation: spotlightMove 3s ease-in-out 4.5s both;
    z-index: -1;
    border-radius: 10px;
}

/* Override subtitle before animation for navigation to home page */
body.home-navigation .hero-subtitle::before {
    animation: spotlightMove 3s ease-in-out 0s both;
}

@keyframes spotlight {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

@keyframes spotlightMove {
    0% {
        background-position: -100% 0%;
    }
    100% {
        background-position: 100% 0%;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary-burgundy);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-burgundy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(128, 0, 32, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Sections */
.section {
    padding: 150px 0 100px 0;
    position: relative;
    flex: 1;
}

.section:nth-child(even) {
    background: rgba(128, 0, 32, 0.05);
}

/* About Section */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    margin: 3rem 0;
    padding: 2rem 0;
}

.about-image {
    position: relative;
}

.hero-portrait {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-portrait:hover {
    transform: scale(1.02);
}

.about-intro h3 {
    font-size: 2.5rem;
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-300);
    margin-bottom: 0;
    text-align: justify;
}

.about-paragraph {
    margin: 2rem 0;
    padding: 1.5rem 0;
}

.about-paragraph p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    text-align: justify;
}

.about-section-with-image {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    margin: 3rem 0;
    padding: 2rem 0;
}

.about-image-secondary {
    position: relative;
}

.secondary-portrait {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.secondary-portrait:hover {
    transform: scale(1.02);
}

.about-text-secondary {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-secondary p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    text-align: justify;
    margin: 0;
}

.about-section-with-image-left {
    margin: 2rem 0;
    padding: 0;
}

.portrait-left {
    float: left;
    width: 350px;
    height: auto;
    margin: 0 2rem 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.portrait-left:hover {
    transform: scale(1.02);
}

.about-section-with-image-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    text-align: justify;
    margin-bottom: 1.5rem;
}

.about-section-with-image-right {
    margin: 2rem 0;
    padding: 0;
}

.secondary-portrait-right {
    float: right;
    width: 350px;
    height: auto;
    margin: 0 0 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.secondary-portrait-right:hover {
    transform: scale(1.02);
}

.about-section-with-image-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    text-align: justify;
    margin-bottom: 1.5rem;
}

.about-video-container {
    margin: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(128, 0, 32, 0.2);
    padding-top: 2rem;
}

.biography {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.biography h3 {
    color: var(--primary-burgundy);
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.biography p {
    color: var(--gray-300);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.pedlev-link {
    color: var(--primary-burgundy);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pedlev-link:hover {
    color: var(--secondary-burgundy);
    text-decoration: underline;
}

.specializations {
    text-align: center;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(128, 0, 32, 0.2);
    width: 100%;
}

.specializations h3 {
    color: var(--primary-burgundy);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

/* New Expertise Showcase Styles */
.expertise-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.expertise-item {
    position: relative;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.expertise-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(139, 0, 0, 0.2);
    border-color: #8B0000;
}

.expertise-image {
    position: relative;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}

.expertise-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.expertise-item:hover .expertise-photo {
    transform: scale(1.05);
}

.expertise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(0, 0, 0, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.expertise-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.expertise-icon i {
    font-size: 1.8rem;
    color: #8B0000;
}

.expertise-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    text-align: left;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 0 0 20px 20px;
}

.expertise-content h4 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.expertise-content p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: justify;
}


.biography p {
    margin-bottom: 1.5rem;
    color: var(--gray-300);
    font-size: 1.1rem;
    line-height: 1.8;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.skill-card {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.skill-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.skill-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.skill-card:hover .skill-card-bg img {
    transform: scale(1.05);
}

.skill-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(128, 0, 32, 0.8) 100%);
    z-index: 2;
    transition: all 0.3s ease;
}

.skill-card:hover .skill-card-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(128, 0, 32, 0.9) 100%);
}

.skill-card-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    width: 90%;
}

.skill-icon {
    margin-bottom: 1rem;
}

.skill-icon i {
    font-size: 3rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.skill-card:hover .skill-icon i {
    transform: scale(1.1);
    color: var(--white);
}

.skill-description {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    text-align: justify;
}

.skill-card:hover .skill-description {
    opacity: 1;
}

.skill-card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 2rem 1.5rem 1.5rem;
    z-index: 4;
}

.skill-card-title h4 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Fallback backgrounds for when images don't load */
.conducting-card .skill-card-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    z-index: -1;
}

.piano-card .skill-card-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c1810 0%, #3d2317 50%, #4a2c1a 100%);
    z-index: -1;
}

.education-card .skill-card-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #3d5a80 100%);
    z-index: -1;
}

.vocal-card .skill-card-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a1a4a 0%, #6b2c6b 50%, #8b3a8b 100%);
    z-index: -1;
}

.portrait-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Agenda Section */
.concerts-section {
    position: relative;
}

.concerts-hero-image {
    width: 100%;
    margin: 0 0 3rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.concerts-full-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center 60%;
    transition: transform 0.3s ease;
}

.concerts-full-image:hover {
    transform: scale(1.02);
}

.concerts-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.tab-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--primary-burgundy);
    color: var(--white);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-burgundy);
    color: var(--white);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.concerts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.concert-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(128, 0, 32, 0.2);
    min-height: 120px;
    align-items: center;
}

.concert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.2);
    border-color: var(--primary-burgundy);
}

.concert-card.past {
    opacity: 0.9;
}

.concert-card.past .concert-details h3 {
    color: var(--gray-200);
}

.concert-card.past .concert-details .venue {
    color: var(--gray-300);
}

.concert-card.past .concert-details .location {
    color: var(--gray-400);
}

.concert-card.past .concert-details .program {
    color: var(--gray-400);
}

.concert-card.past .concert-date .month {
    color: var(--gray-300);
}

.concert-card.past .concert-date .day {
    color: var(--gray-200);
}

.concert-card.past .concert-date .year {
    color: var(--gray-400);
}

.concert-card.past:hover {
    opacity: 1;
}

.concert-card.past:hover .concert-details h3 {
    color: var(--white);
}

.concert-card.past:hover .concert-details .venue {
    color: var(--primary-burgundy);
}

.concert-card.past:hover .concert-details .location {
    color: var(--gray-400);
}

.concert-card.past:hover .concert-details .program {
    color: var(--gray-300);
}

.concert-card.past:hover .concert-date .month {
    color: var(--primary-burgundy);
}

.concert-card.past:hover .concert-date .day {
    color: var(--white);
}

.concert-card.past:hover .concert-date .year {
    color: var(--gray-500);
}

.concert-date {
    text-align: center;
    min-width: 100px;
    flex-shrink: 0;
}

.concert-date .month {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-burgundy);
    font-weight: 600;
}

.concert-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.concert-date .year {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.concert-details h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.concert-details .venue {
    color: var(--primary-burgundy);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.concert-details .location {
    color: var(--gray-400);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.concert-details .program {
    color: var(--gray-300);
    font-size: 0.9rem;
    font-style: italic;
}

.concert-ticket-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.55rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid var(--primary-burgundy);
    border-radius: 999px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.concert-ticket-link:hover,
.concert-ticket-link:focus-visible {
    background-color: var(--primary-burgundy);
    color: var(--white);
    transform: translateY(-1px);
}

.concert-ticket-link:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 3px;
}

/* Music Center Section */
.music-center-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem 0;
}

.music-center-image {
    position: relative;
}

.teaching-photo {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.music-center-intro h3 {
    font-size: 2.5rem;
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.music-center-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-300);
    margin-bottom: 0;
    text-align: justify;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.1), rgba(128, 0, 32, 0.05));
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 4rem 0 2rem 0;
    text-align: center;
    border: 1px solid rgba(128, 0, 32, 0.2);
}

.cta-content h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-description {
    font-size: 1.2rem;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-primary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-burgundy);
    color: var(--white);
    border: 2px solid var(--primary-burgundy);
}

.cta-primary:hover {
    background: transparent;
    color: var(--primary-burgundy);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(128, 0, 32, 0.3);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-feature i {
    color: var(--white);
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.teaching-philosophy {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.teaching-philosophy h3 {
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
}

.teaching-philosophy p {
    color: var(--gray-300);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

.book-lesson-section {
    margin-bottom: 3rem;
}

.book-lesson-section h3 {
    color: var(--primary-burgundy);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.lesson-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 2rem;
}

.lesson-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(128, 0, 32, 0.2);
    transition: all 0.3s ease;
}

.lesson-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(128, 0, 32, 0.15);
    border-color: var(--primary-burgundy);
}

.lesson-icon {
    margin-bottom: 1.5rem;
}

.lesson-icon i {
    font-size: 2.5rem;
    color: var(--primary-burgundy);
}

.lesson-card h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.lesson-card p {
    color: var(--gray-300);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.offering-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(128, 0, 32, 0.2);
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.2);
    border-color: var(--primary-burgundy);
}

.offering-icon {
    margin-bottom: 1.5rem;
}

.offering-icon i {
    font-size: 3rem;
    color: var(--primary-burgundy);
}

.offering-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.offering-card p {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: justify;
}

.offering-features {
    list-style: none;
    text-align: left;
}

.offering-features li {
    color: var(--gray-400);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.offering-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-burgundy);
    font-weight: bold;
}

/* Location & Availability Section */
.location-availability-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-radius: 20px;
    border: 1px solid rgba(128, 0, 32, 0.3);
    position: relative;
    overflow: hidden;
}

.location-availability-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-burgundy), var(--secondary-burgundy), var(--light-burgundy));
}

.availability-header {
    text-align: center;
    margin-bottom: 3rem;
}

.availability-header h3 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.availability-subtitle {
    color: var(--gray-300);
    font-size: 1.1rem;
    margin: 0;
}

.availability-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.availability-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(128, 0, 32, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.availability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-burgundy);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.availability-card:hover::before {
    transform: scaleX(1);
}

.availability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(128, 0, 32, 0.2);
    border-color: var(--primary-burgundy);
}

.availability-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.availability-icon i {
    font-size: 2.5rem;
    color: var(--primary-burgundy);
    transition: all 0.3s ease;
}

.availability-card:hover .availability-icon i {
    transform: scale(1.1);
    color: var(--secondary-burgundy);
}

.availability-content h4 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.availability-content .location {
    color: var(--primary-burgundy);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.availability-content .description {
    color: var(--gray-300);
    text-align: justify;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits li {
    color: var(--gray-400);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-burgundy);
    font-weight: bold;
}

.availability-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(128, 0, 32, 0.2);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gray-300);
    font-size: 0.95rem;
}

.feature-item i {
    color: var(--primary-burgundy);
    font-size: 1.2rem;
    width: 20px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--secondary-burgundy) 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.cta-content h4 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: var(--white);
    color: var(--primary-burgundy);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

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

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: var(--primary-burgundy);
    color: var(--white);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--white);
    transition: width 0.3s ease;
    z-index: -1;
}

.cta-secondary:hover::before {
    width: 100%;
}

.cta-secondary:hover {
    color: var(--primary-burgundy);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.cta-primary i,
.cta-secondary i {
    margin-right: 0.5rem;
}

/* Repertoire Section */
.repertoire-hero {
    display: block;
    margin: 0 0 3rem 0;
}

.repertoire-image {
    position: relative;
    overflow: hidden;
}

.repertoire-photo {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.repertoire-intro h3 {
    font-size: 2.5rem;
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
    font-weight: 600;
}


.repertoire-list {
    max-width: 1000px;
    margin: 0 auto;
}

.repertoire-description {
    color: var(--gray-300);
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 3rem;
}

.repertoire-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2rem;
}

.repertoire-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(128, 0, 32, 0.2);
    transition: all 0.3s ease;
}

.repertoire-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(128, 0, 32, 0.15);
    border-color: var(--primary-burgundy);
}

.repertoire-item h4 {
    color: var(--primary-burgundy);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.repertoire-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.repertoire-item li {
    color: var(--gray-300);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(128, 0, 32, 0.1);
    transition: all 0.3s ease;
}

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

.repertoire-item li:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

.periods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.period-overview {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(128, 0, 32, 0.2);
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}


.period-overview:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(128, 0, 32, 0.15);
    border-color: var(--primary-burgundy);
}

.period-overview .period-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-burgundy), var(--secondary-burgundy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.period-overview:hover .period-icon {
    transform: scale(1.1);
}

.period-overview .period-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.period-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.period-title {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
}

.period-years {
    color: var(--primary-burgundy);
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(128, 0, 32, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(128, 0, 32, 0.3);
    display: inline-block;
    margin: 0 auto;
}

.period-description {
    color: var(--gray-300);
    font-size: 0.9rem;
    margin: 0.5rem 0 0;
    font-style: italic;
}

/* Period-specific styling */
.period-overview.baroque .period-icon {
    background: linear-gradient(135deg, #8B4513, #A0522D);
}

.period-overview.classical .period-icon {
    background: linear-gradient(135deg, #4169E1, #6495ED);
}

.period-overview.romantic .period-icon {
    background: linear-gradient(135deg, #DC143C, #FF6347);
}

.period-overview.contemporary .period-icon {
    background: linear-gradient(135deg, #9932CC, #DA70D6);
}

/* Reviews Section */
.reviews-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem 0;
}

.reviews-image {
    position: relative;
}

.reviews-photo {
    width: 100%;
    height: 350px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

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

.reviews-intro h3 {
    font-size: 2.5rem;
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.reviews-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-300);
    margin-bottom: 0;
    text-align: justify;
}

.reviews-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.review-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(128, 0, 32, 0.2);
    transition: all 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(128, 0, 32, 0.15);
    border-color: var(--primary-burgundy);
}

.review-content p {
    color: var(--gray-300);
    font-style: italic;
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.review-author h4 {
    color: var(--primary-burgundy);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.news-section h3 {
    color: var(--primary-burgundy);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.news-items {
    display: grid;
    gap: 1.5rem;
}

.news-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(128, 0, 32, 0.2);
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(128, 0, 32, 0.1);
    border-color: var(--primary-burgundy);
}

.news-date {
    color: var(--primary-burgundy);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-content p {
    color: var(--gray-300);
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: justify;
}

.news-content blockquote {
    color: var(--white);
    font-style: italic;
    border-left: 3px solid var(--primary-burgundy);
    padding-left: 1rem;
    margin: 1rem 0;
}

.news-content h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.news-link {
    color: var(--primary-burgundy);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: var(--secondary-burgundy);
    text-decoration: underline;
}

.tab-btn {
    background: transparent;
    border: 2px solid var(--primary-burgundy);
    color: var(--primary-burgundy);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-burgundy);
    color: var(--white);
}

.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.horizontal-scroll-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.horizontal-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
    flex: 1;
}

.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.scroll-btn {
    background: rgba(128, 0, 32, 0.8);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 2;
}

.scroll-btn:hover {
    background: var(--primary-burgundy);
    transform: scale(1.1);
}

.scroll-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.scroll-btn i {
    font-size: 1rem;
}

.press-item,
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(128, 0, 32, 0.2);
    transition: all 0.3s ease;
    min-width: min(100%, 350px);
    max-width: 400px;
    flex-shrink: 0;
}

.press-item:hover,
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(128, 0, 32, 0.15);
    border-color: var(--primary-burgundy);
}

.press-source {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(128, 0, 32, 0.3);
}

.press-source h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin: 0;
}

.press-date {
    color: var(--primary-burgundy);
    font-size: 0.9rem;
    font-weight: 500;
}

.press-item p {
    color: var(--gray-300);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: var(--gray-300);
    font-style: italic;
    line-height: 1.6;
    font-size: 1.05rem;
    margin: 0;
    text-align: justify;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author h4 {
    color: var(--white);
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--primary-burgundy);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Visual Content Containers */
.about-video-container,
.music-center-video-container {
    margin: 2rem 0 1rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(128, 0, 32, 0.2);
    text-align: center;
}

.video-section-header {
    margin-bottom: 2rem;
}

.video-section-header h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.video-section-header p {
    color: var(--gray-300);
    font-style: italic;
    font-size: 1.1rem;
}

.video-wrapper {
    width: 100%;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(128, 0, 32, 0.2);
}

.video-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* Responsive video sizing */
@media (max-width: 768px) {
    .video-section-header h3 {
        font-size: 1.5rem;
    }
    
    .video-section-header p {
        font-size: 1rem;
    }
}

.photo-gallery-header {
    text-align: center;
    margin-bottom: 2rem;
}

.photo-gallery-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.photo-gallery-header p {
    color: var(--gray-300);
    font-style: italic;
}

.photo-grid,
.teaching-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.photo-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.photo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(128, 0, 32, 0.2);
}

.photo-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(128, 0, 32, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.photo-placeholder:hover {
    background: rgba(128, 0, 32, 0.1);
    border-color: var(--primary-burgundy);
}

.photo-placeholder i {
    font-size: 2rem;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.photo-placeholder h3,
.photo-placeholder p {
    color: var(--white);
    margin: 0.3rem 0;
}

.photo-placeholder p {
    color: var(--gray-300);
    font-size: 0.9rem;
}

.music-center-video-container {
    margin: 2rem 0;
    text-align: center;
}

.video-container {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
}

.video-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(128, 0, 32, 0.3);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: rgba(128, 0, 32, 0.1);
    border-color: var(--primary-burgundy);
}

.video-placeholder i {
    font-size: 3rem;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.video-placeholder h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.video-placeholder p {
    color: var(--gray-300);
    margin: 0.3rem 0;
    line-height: 1.5;
}

/* Contact Section */
.contact-hero {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem 0;
}

.contact-image {
    position: relative;
}

.contact-photo {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.contact-intro h3 {
    font-size: 2.5rem;
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-300);
    margin-bottom: 0;
    text-align: justify;
}

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 3rem 0;
}

.contact-form-section h3 {
    color: var(--primary-burgundy);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid rgba(128, 0, 32, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-burgundy);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.contact-info-section h3 {
    color: var(--primary-burgundy);
    font-size: 2rem;
    font-weight: 600;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(128, 0, 32, 0.2);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-burgundy);
    min-width: 30px;
}

.contact-item h3 {
    color: var(--white);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--gray-300);
    margin: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(128, 0, 32, 0.2);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(128, 0, 32, 0.3);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
    min-height: 170px;
    max-height: 300px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-burgundy);
    box-shadow: 0 0 0 2px rgba(128, 0, 32, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.social-media {
    text-align: center;
    margin-top: 3rem;
}

.social-media h3 {
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(128, 0, 32, 0.2);
    border: 1px solid var(--primary-burgundy);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-burgundy);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(128, 0, 32, 0.3);
}

.social-link i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem 0;
    border-top: 1px solid rgba(128, 0, 32, 0.2);
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-text p {
    color: var(--gray-500);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        order: 1;
    }

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

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

    .language-selector {
        position: relative;
        order: 2;
        margin-left: auto;
        margin-right: 0;
    }

    .language-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .language-dropdown {
        right: 0;
        min-width: 140px;
    }

    .lang-option {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .hero-text-container {
        max-width: 90%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .lesson-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .repertoire-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .specializations {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-availability-section {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .availability-header h3 {
        font-size: 1.8rem;
    }
    
    .availability-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .availability-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .concerts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .concert-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 2rem;
    }
    
    .concert-date {
        min-width: auto;
    }
    
    /* Hero sections responsive */
    .about-hero,
    .about-section-with-image,
    .repertoire-hero,
    .reviews-hero,
    .music-center-hero,
    .contact-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-section-with-image-left {
        margin: 1.5rem 0;
    }

    .portrait-left {
        float: none;
        width: 100%;
        margin: 0 0 1.5rem 0;
        display: block;
    }

    .about-section-with-image-right {
        margin: 1.5rem 0;
    }

    .secondary-portrait-right {
        float: none;
        width: 100%;
        margin: 0 0 1.5rem 0;
        display: block;
    }
    
    .hero-portrait,
    .repertoire-photo,
    .reviews-photo,
    .teaching-photo,
    .contact-photo {
        max-height: 300px;
    }
    
    /* Contact page responsive */
    .contact-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* CTA section responsive */
    .cta-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Agenda image responsive */
    .concerts-full-image {
        height: 250px;
    }
    
    .concerts-hero-image {
        margin: 2rem 0;
    }
    
    .offerings-grid,
    .periods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .horizontal-scroll-container {
        gap: 0.5rem;
    }
    
    .scroll-btn {
        width: 40px;
        height: 40px;
    }
    
    .scroll-btn i {
        font-size: 0.8rem;
    }
    
    .press-item,
    .testimonial-card {
        min-width: 280px;
        max-width: 320px;
        padding: 1.5rem;
    }
    
    .horizontal-scroll {
        gap: 1.5rem;
    }
    
    .photo-grid,
    .teaching-photo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .photo-placeholder {
        padding: 1.5rem;
        min-height: 150px;
    }
    
    .video-placeholder {
        padding: 2rem 1rem;
        min-height: 200px;
    }
    
    .video-placeholder i {
        font-size: 2rem;
    }
    
    .period-overview {
        padding: 1.5rem;
    }
    
    .period-overview .period-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }
    
    .period-title {
        font-size: 1.1rem;
    }
    
    .period-years {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
    
    .period-description {
        font-size: 0.8rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .skill-card {
        height: 250px;
    }
    
    .skill-icon i {
        font-size: 2.5rem;
    }
    
    .skill-card-title h4 {
        font-size: 1.1rem;
    }
    
    /* New expertise showcase responsive styles */
    .expertise-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .expertise-image {
        height: 180px;
    }
    
    .expertise-content {
        padding: 1.2rem;
    }
    
    .expertise-content h4 {
        font-size: 1.2rem;
    }
    
    .expertise-content p {
        font-size: 0.9rem;
    }
    
    .expertise-icon {
        width: 60px;
        height: 60px;
    }
    
    .expertise-icon i {
        font-size: 1.5rem;
    }
    
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .concert-card,
    .offering-card,
    .press-item,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }
    
    .skill-card {
        height: 200px;
    }
    
    .skill-icon i {
        font-size: 2rem;
    }
    
    .skill-card-title h4 {
        font-size: 1rem;
    }
    
    .skill-description {
        font-size: 0.9rem;
    }
    
    /* Mobile expertise showcase styles */
    .expertise-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }
    
    .expertise-image {
        height: 160px;
    }
    
    .expertise-content {
        padding: 1rem;
    }
    
    .expertise-content h4 {
        font-size: 1.1rem;
    }
    
    .expertise-content p {
        font-size: 0.85rem;
    }
    
    .expertise-icon {
        width: 50px;
        height: 50px;
    }
    
    .expertise-icon i {
        font-size: 1.2rem;
    }
    
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-burgundy);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-burgundy);
}

/* Hero CTA Button */
.hero-cta-btn {
    display: inline-block;
    margin-top: 5rem;
    padding: 0.5rem 1.5rem;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.hero-cta-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.8);
    opacity: 1;
    transform: none;
    box-shadow: none;
}
