/* ========================================
   CSS Variables & Reset
   ======================================== */
:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --text-cream: #f5f5dc;
    --text-light: #e8e8e8;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8940f;
    --accent-grey: #1a1a1a;
    --border-color: #333333;
    
    --font-bold: 'Montserrat', sans-serif;
    --font-script: 'Dancing Script', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-bold);
    background-color: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    line-height: 1.2;
}

.nav-brand a {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-brand a:hover {
    opacity: 0.8;
}

.nav-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.brand-left {
    display: flex;
    flex-direction: column;
}

.brand-right {
    display: flex;
    flex-direction: column;
}

.brand-gabe {
    font-family: var(--font-bold);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--text-cream);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 
        -2px -2px 0 var(--bg-darker),
        2px -2px 0 var(--bg-darker),
        -2px 2px 0 var(--bg-darker),
        2px 2px 0 var(--bg-darker),
        0 0 0 var(--bg-darker),
        -1px -1px 0 var(--bg-darker),
        1px -1px 0 var(--bg-darker),
        -1px 1px 0 var(--bg-darker),
        1px 1px 0 var(--bg-darker);
}

.brand-ramos {
    font-family: var(--font-bold);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--text-cream);
    letter-spacing: 3px;
    text-transform: uppercase;
    transform: skewX(-5deg);
    font-style: italic;
}

.brand-music,
.brand-academy {
    font-family: var(--font-script);
    font-size: 1.1rem;
    color: var(--text-cream);
    font-weight: 600;
    white-space: nowrap;
}

.brand-bold {
    font-family: var(--font-bold);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--text-cream);
    letter-spacing: 2px;
}

.brand-script {
    font-family: var(--font-script);
    font-size: 1rem;
    color: var(--text-cream);
    font-weight: 600;
}

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

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-cream);
    margin: 3px 0;
    transition: 0.3s;
}

/* ========================================
   Typography
   ======================================== */
.title-bold {
    font-family: var(--font-bold);
    font-weight: 900;
    font-size: 3rem;
    color: var(--text-cream);
    display: block;
    letter-spacing: 3px;
}

.title-script {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--text-cream);
    display: block;
    font-weight: 600;
    margin-top: -10px;
}

.title-year {
    font-family: var(--font-bold);
    font-weight: 900;
    font-size: 2rem;
    color: var(--text-cream);
    display: block;
    letter-spacing: 2px;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title .title-bold {
    font-size: 2.5rem;
}

.section-title .title-script {
    font-size: 2rem;
    margin-top: -5px;
}

.logo-inline {
    display: inline-block;
    height: 2rem;
    width: auto;
    vertical-align: middle;
    margin-top: -5px;
}

.logo-inline-text {
    display: inline-block;
    height: 1.2em;
    width: auto;
    vertical-align: middle;
    margin: 0 0.2em;
}

.gold-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem auto;
    position: relative;
}

.gold-divider::before,
.gold-divider::after {
    content: '✨';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1rem;
}

.gold-divider::before {
    left: -30px;
}

.gold-divider::after {
    right: -30px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    margin-top: 70px;
    position: relative;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.hero-title {
    text-align: center;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-logo {
    height: 130px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-family: var(--font-bold);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-cream);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    pointer-events: auto;
}

.btn-hero {
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-family: var(--font-bold);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    pointer-events: auto;
    cursor: pointer;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-darker);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--text-cream);
    border: 2px solid var(--text-cream);
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.3);
}

.btn-hero-secondary:hover {
    transform: translateY(-3px);
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--gold);
    color: var(--gold);
}

.hero-title .title-script {
    position: relative;
}

.hero-title .title-script::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.7;
}

.slideshow-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 4;
}

.slide-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-cream);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.slide-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--gold);
    color: var(--gold);
    transform: scale(1.1);
}

.slide-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--gold);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--gold-light);
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

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

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

.about-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-video-container {
    position: relative;
    width: 100%;
}

.about-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio for portrait video (16/9 inverted) */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: var(--bg-dark);
}

.about-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: contain;
    background: var(--bg-dark);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery-section {
    padding: 5rem 0;
    background: var(--bg-darker);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

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

/* ========================================
   Lessons Section
   ======================================== */
.lessons-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.lessons-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

.lessons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.lesson-card {
    background: var(--accent-grey);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.lesson-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

.lesson-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.lesson-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.lesson-card:hover .lesson-image img {
    transform: scale(1.08);
}

.lesson-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.lesson-content h3 {
    font-size: 1.3rem;
    color: var(--text-cream);
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.lesson-location {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pricing-compact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
    padding: 0;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.pricing-duration {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.price {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.lesson-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0.5rem 0 1rem 0;
    opacity: 0.9;
}

.lesson-time {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    margin: 1rem 0;
    letter-spacing: 0.5px;
}

.lesson-note {
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0.5rem 0 0 0;
    font-style: italic;
    opacity: 0.8;
}

.lesson-link {
    display: inline-block;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: auto;
    padding-top: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
    letter-spacing: 0.5px;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.lesson-link:hover {
    color: var(--gold-light);
    transform: translateX(5px);
}

.lessons-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-box {
    text-align: center;
    padding: 2rem;
    background: var(--accent-grey);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.feature-box h4 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-box p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   Courses Section
   ======================================== */
.courses-section {
    padding: 5rem 0;
    background: var(--bg-darker);
}

.courses-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

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

.course-placeholder {
    background: var(--accent-grey);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.course-placeholder:hover {
    transform: translateY(-5px);
}

.course-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.course-info {
    padding: 2rem;
    text-align: center;
}

.course-info h3 {
    color: var(--text-cream);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.course-info p {
    color: var(--text-light);
}

.courses-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-item h4 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

.contact-form-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.contact-form-container {
    background: var(--accent-grey);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 600px;
}

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

.contact-item {
    padding: 1.5rem;
    background: var(--accent-grey);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.contact-item h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

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


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

.form-group label {
    display: block;
    color: var(--text-cream);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-light);
    font-family: var(--font-bold);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-light);
}

.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-light);
    font-weight: 400;
    transition: color 0.3s ease;
}

.checkbox-label:hover,
.radio-label:hover {
    color: var(--text-cream);
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--gold);
    margin: 0;
}

.checkbox-label span,
.radio-label span {
    flex: 1;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-darker);
    border: none;
    border-radius: 5px;
    font-family: var(--font-bold);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Form Success Modal */
.form-success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.form-success-modal.active {
    display: flex;
}

.form-success-content {
    background: var(--accent-grey);
    border-radius: 15px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 2px solid var(--gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.form-success-content h3 {
    color: var(--text-cream);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-success-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-close-modal {
    padding: 0.875rem 2.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-darker);
    border: none;
    border-radius: 5px;
    font-family: var(--font-bold);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-close-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* ========================================
   About Page Styles
   ======================================== */
.about-hero {
    margin-top: 80px;
    position: relative;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.about-intro-modern {
    max-width: 1000px;
    margin: 0 auto 5rem;
}

.intro-content-modern {
    margin-top: 3rem;
}

.intro-text-modern {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-text-modern .lead-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-cream);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.intro-text-modern p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Expertise Highlights */
.expertise-highlights {
    margin: 5rem 0;
    padding: 4rem 0;
    background: var(--bg-darker);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--accent-grey);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.expertise-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.expertise-item h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.expertise-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.performance-gallery-modern {
    margin: 5rem 0;
    padding: 4rem 0;
}

.gallery-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item-modern {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-item-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-modern:hover img {
    transform: scale(1.1);
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 1.5rem 1rem 1rem;
    color: var(--text-cream);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item-modern:hover .gallery-label {
    transform: translateY(0);
}

.performance-gallery {
    margin: 4rem 0;
}

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

.gallery-item-large {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.gallery-item-large:hover {
    transform: translateY(-5px);
}

.gallery-item-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-large:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: var(--text-cream);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.experience-section {
    margin: 5rem 0;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.experience-card {
    background: var(--accent-grey);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.experience-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.experience-content {
    padding: 2rem;
}

.experience-content h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.experience-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

.video-showcase {
    margin: 5rem 0;
}

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

.video-item {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.video-item .video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.projects-section {
    margin: 5rem 0;
    padding: 4rem 0;
    background: var(--bg-darker);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.project-item {
    background: var(--accent-grey);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.project-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

.project-thumbnail-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: var(--bg-dark);
}

.project-thumbnail-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-item:hover .project-thumbnail-wrapper img {
    transform: scale(1.1);
}

.project-thumbnail-wrapper a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.project-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-title {
    color: var(--text-cream);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    letter-spacing: 0.5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-channel {
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: auto;
    letter-spacing: 0.5px;
}

.project-item a {
    text-decoration: none;
    color: inherit;
}

.connect-section {
    padding: 5rem 0;
    background: var(--bg-darker);
    text-align: center;
}

.connect-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.connect-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-darker);
}

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

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--bg-darker);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    line-height: 1.2;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item h4 {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact-item a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
}

.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========================================
   Why Choose Us Section
   ======================================== */
.why-choose-section {
    padding: 5rem 0;
    background: var(--bg-darker);
}

.why-choose-content {
    margin-top: 3rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.why-item {
    position: relative;
    padding: 0;
    background: var(--accent-grey);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
    border-color: var(--gold);
}

.why-item:hover::before {
    transform: scaleY(1);
}

.why-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-bold);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.15;
    line-height: 1;
    z-index: 1;
}

.why-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.why-content h3 {
    color: var(--text-cream);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.why-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 1.5rem;
}

.why-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.promotional-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 1rem;
    font-style: italic;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

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

.testimonial-card {
    background: var(--accent-grey);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.quote-icon {
    font-size: 3rem;
    color: var(--gold);
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: var(--text-cream);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-role {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 400;
}

/* Testimonials Page Styles */
.testimonials-hero,
.faq-hero {
    margin-top: 80px;
    position: relative;
}

.faq-hero .hero-image-container {
    position: relative;
}

.faq-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.faq-hero .hero-overlay {
    z-index: 2;
}

.faq-hero .hero-title {
    text-align: center;
}

.testimonials-hero .hero-image-container,
.faq-hero .hero-image-container {
    height: 50vh;
    min-height: 400px;
}

.hero-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: 400;
}

.testimonials-page-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.testimonials-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.featured-testimonial-large {
    margin-bottom: 4rem;
}

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

.testimonials-cta-section,
.faq-cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: var(--accent-grey);
    border-radius: 10px;
}

.testimonials-cta-section h2,
.faq-cta-section h2 {
    color: var(--text-cream);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonials-cta-section p,
.faq-cta-section p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

/* ========================================
   Student Showcase Section
   ======================================== */
.showcase-section {
    padding: 5rem 0;
    background: var(--bg-darker);
}

.showcase-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.showcase-item {
    background: var(--accent-grey);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
}

.showcase-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.showcase-item:hover .showcase-image img {
    transform: scale(1.1);
}

.showcase-info {
    padding: 2rem;
}

.showcase-info h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.showcase-info p {
    color: var(--text-light);
    line-height: 1.8;
}

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

.showcase-video-item {
    position: relative;
}

.showcase-video-item .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.showcase-video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.showcase-video-item h4 {
    color: var(--text-cream);
    text-align: center;
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.faq-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.faq-intro a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-intro a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.faq-categories {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 4rem;
}

.category-title {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--gold);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--accent-grey);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: var(--gold);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

.faq-question h3 {
    color: var(--text-cream);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    .lessons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        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-toggle {
        display: flex;
    }

    .title-bold {
        font-size: 2rem;
    }

    .title-script {
        font-size: 1.8rem;
    }

    .section-title .title-bold {
        font-size: 2rem;
    }

    .section-title .title-script {
        font-size: 1.6rem;
    }

    .logo-inline {
        height: 1.6rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-video-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-text-modern .lead-text {
        font-size: 1.2rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .connect-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .showcase-grid,
    .showcase-video-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-hero .hero-image-container,
    .faq-hero .hero-image-container {
        height: 40vh;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 70px;
    }

    .hero-slideshow {
        height: 100vh;
    }

    .hero-image-container {
        height: 50vh;
        min-height: 400px;
    }

    .lesson-image img {
        object-position: top;
    }

    .lesson-image img[alt="Online Lessons"],
    .lesson-image img[alt="In-Home Lessons"] {
        object-position: center;
    }

    .lesson-content {
        padding: 1rem;
    }

    .lesson-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .lesson-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }

    .pricing-compact {
        margin-bottom: 0.5rem;
    }

    .pricing-item {
        padding: 0.3rem 0;
        font-size: 0.85rem;
    }

    .lesson-note {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .lesson-link {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }

    .lessons-grid .lesson-card:first-child,
    .lessons-grid .lesson-card:last-child {
        transform: translateY(-15px);
    }

    .slideshow-controls {
        bottom: 1rem;
        gap: 1rem;
    }

    .slide-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .about-video-wrapper {
        padding-bottom: 177.78%; /* Maintain portrait aspect ratio */
    }

    .title-bold {
        font-size: 1.5rem;
    }

    .title-script {
        font-size: 1.3rem;
    }

    .title-year {
        font-size: 1.2rem;
    }

    .section-title .title-bold {
        font-size: 1.5rem;
    }

    .section-title .title-script {
        font-size: 1.3rem;
    }

    .logo-inline {
        height: 1.3rem;
    }

    .gallery-grid,
    .lessons-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .lessons-features,
    .courses-features {
        grid-template-columns: 1fr;
    }

    .about-section,
    .lessons-section,
    .courses-section,
    .contact-section {
        padding: 3rem 0;
    }

    .about-content-section {
        padding: 3rem 0;
    }

    .expertise-highlights {
        padding: 3rem 0;
        margin: 3rem 0;
    }

    .performance-gallery-modern {
        padding: 3rem 0;
        margin: 3rem 0;
    }

    .gallery-grid-modern {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .expertise-item {
        padding: 2rem 1.5rem;
    }

    .intro-text-modern .lead-text {
        font-size: 1.1rem;
    }

    .intro-text-modern p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-logo {
        height: 60px;
    }

    .footer-logo {
        height: 40px;
    }

    .hero-logo {
        height: 100px;
    }

    .hero-content {
        gap: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn-hero {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .brand-bold {
        font-size: 1rem;
    }

    .brand-script {
        font-size: 0.8rem;
    }

    .hero-title .title-bold {
        font-size: 1.2rem;
    }

    .hero-logo {
        height: 80px;
    }

    .hero-content {
        gap: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-top: 0.5rem;
    }

    .btn-hero {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}


