/**
 * Avon Music Academy - Musical Theme
 * Warm, elegant design inspired by concert halls and music studios
 * 
 * To switch themes, change the CSS import in layouts/public.php:
 *   From: public.css (corporate blue)
 *   To:   theme-musical.css (warm musical)
 */

/* ===== CSS Variables - Musical Theme ===== */
:root {
    /* Primary Colors - Deep Crimson Red */
    --cmn-primary: #8B2635;
    --cmn-primary-dark: #6E1E2A;
    --cmn-primary-light: #FDF7F3;
    --cmn-secondary: #2D3436;
    
    /* Accent Colors - Gold/Amber */
    --cmn-accent: #D4A853;
    --cmn-accent-dark: #B8923F;
    
    /* Neutrals - Warmer tones */
    --cmn-white: #FFFFFF;
    --cmn-gray-50: #FAF8F5;
    --cmn-gray-100: #F5F2EE;
    --cmn-gray-200: #E8E4DE;
    --cmn-gray-300: #D4CFC7;
    --cmn-gray-400: #A39E96;
    --cmn-gray-500: #78736B;
    --cmn-gray-600: #5A5650;
    --cmn-gray-700: #3D3A36;
    --cmn-gray-800: #2A2825;
    --cmn-gray-900: #1A1917;
    
    /* Semantic Colors */
    --cmn-success: #2D8659;
    --cmn-success-light: #E8F5EE;
    --cmn-danger: #C53030;
    --cmn-danger-light: #FEE8E8;
    --cmn-warning: #C27803;
    --cmn-warning-light: #FEF5E7;
    --cmn-info: #2B6CB0;
    --cmn-info-light: #EBF4FF;
    
    /* Shadows - Warmer */
    --cmn-shadow-sm: 0 1px 2px 0 rgba(45, 52, 54, 0.05);
    --cmn-shadow: 0 1px 3px 0 rgba(45, 52, 54, 0.08), 0 1px 2px 0 rgba(45, 52, 54, 0.04);
    --cmn-shadow-md: 0 4px 6px -1px rgba(45, 52, 54, 0.08), 0 2px 4px -1px rgba(45, 52, 54, 0.04);
    --cmn-shadow-lg: 0 10px 15px -3px rgba(45, 52, 54, 0.08), 0 4px 6px -2px rgba(45, 52, 54, 0.03);
    --cmn-shadow-xl: 0 20px 25px -5px rgba(45, 52, 54, 0.1), 0 10px 10px -5px rgba(45, 52, 54, 0.04);
    
    /* Border Radius - Slightly softer */
    --cmn-radius-sm: 4px;
    --cmn-radius: 8px;
    --cmn-radius-lg: 12px;
    --cmn-radius-xl: 16px;
    
    /* Musical Theme Specific */
    --cmn-hero-overlay: rgba(45, 52, 54, 0.65);
    --cmn-hero-overlay-light: rgba(45, 52, 54, 0.45);
    
    /* Typography */
    --cmn-font-heading: 'Playfair Display', 'Georgia', serif;
    --cmn-font-body: 'Source Sans 3', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== Typography Overrides ===== */
body {
    font-family: var(--cmn-font-body);
    background-color: var(--cmn-gray-50);
}

h1, h2, h3 {
    font-family: var(--cmn-font-heading);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h4, h5, h6 {
    font-family: var(--cmn-font-body);
    font-weight: 600;
}

/* ===== Header Enhancements ===== */
.public-header {
    background: linear-gradient(135deg, var(--cmn-secondary) 0%, #1a1a1a 100%);
    border-bottom: 3px solid var(--cmn-accent);
}

.public-header .logo .logo-line1 {
    font-family: var(--cmn-font-heading);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.public-header .logo .logo-line2 {
    color: var(--cmn-accent);
    font-family: var(--cmn-font-body);
}

.public-nav a::after {
    background-color: var(--cmn-accent);
}

/* ===== Button Enhancements ===== */
.btn-primary,
.hero .btn-primary,
.header-cta .btn-primary,
.mobile-drawer-cta .btn-primary {
    background: linear-gradient(135deg, #851324 0%, #6a0f1d 100%) !important;
    box-shadow: 0 2px 4px rgba(133, 19, 36, 0.25);
}

.btn-primary:hover,
.hero .btn-primary:hover,
.header-cta .btn-primary:hover {
    background: linear-gradient(135deg, #6a0f1d 0%, #520b16 100%) !important;
    box-shadow: 0 4px 8px rgba(133, 19, 36, 0.35);
}

.btn-secondary {
    border-color: var(--cmn-primary);
    color: var(--cmn-primary);
}

.btn-secondary:hover {
    background: var(--cmn-primary);
}

/* ===== Hero Section - More Dramatic ===== */
.hero {
    background: linear-gradient(135deg, var(--cmn-secondary) 0%, #1a1a1a 100%);
}

.hero h1 {
    font-family: var(--cmn-font-heading);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero p {
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* Hero login CTA styling */
.hero-login-cta {
    border-top-color: var(--cmn-accent);
}

/* ===== Instrument Cards - With subtle border ===== */
.instrument-selection-section .instrument-card {
    background: #fff;
    border: 1px solid var(--cmn-gray-200);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.instrument-selection-section .instrument-card:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(133, 19, 36, 0.1);
    border-color: var(--cmn-primary);
}

.instrument-selection-section .instrument-card-image {
    border-radius: 8px 0 0 8px;
    overflow: hidden;
}

.instrument-selection-section .instrument-card-content h3 i {
    color: var(--cmn-primary);
}

.instrument-selection-section .instrument-teachers .teacher-count {
    color: var(--cmn-primary);
}

/* ===== Why Choose Section - 2x2 Grid, Image-First ===== */
.why-choose-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #e8e8e8 0%, #f5f5f5 25%, #ffffff 50%, #f8f8f8 75%, #efefef 100%);
    position: relative;
    overflow: hidden;
}

/* Wavy staff with treble clef spanning full width */
.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.06;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 400' preserveAspectRatio='none'%3E%3Cdefs%3E%3Cstyle%3E.staff{fill:none;stroke:%23888;stroke-width:1.5}%3C/style%3E%3C/defs%3E%3C!-- Wavy staff lines --%3E%3Cpath class='staff' d='M-50 120 Q200 100 400 130 T800 110 T1200 140 T1650 120'/%3E%3Cpath class='staff' d='M-50 150 Q200 130 400 160 T800 140 T1200 170 T1650 150'/%3E%3Cpath class='staff' d='M-50 180 Q200 160 400 190 T800 170 T1200 200 T1650 180'/%3E%3Cpath class='staff' d='M-50 210 Q200 190 400 220 T800 200 T1200 230 T1650 210'/%3E%3Cpath class='staff' d='M-50 240 Q200 220 400 250 T800 230 T1200 260 T1650 240'/%3E%3C!-- Treble clef --%3E%3Cg transform='translate(120,100) scale(0.35)' fill='%23888'%3E%3Cpath d='M62.5 184c-5.4 0-10.2-1.3-14.3-3.8-4.2-2.6-7.4-6.2-9.7-10.8-2.3-4.7-3.5-10-3.5-16 0-7.7 1.6-15.5 4.7-23.3 3.2-7.8 7.6-14.9 13.3-21.2 5.7-6.3 12.4-11.4 20-15.2-1.3-5.5-2-11.4-2-17.7 0-12.4 2.6-24 7.8-34.8 5.2-10.8 12.5-19.3 21.8-25.7 9.4-6.4 20-9.5 32-9.5 9.2 0 16.7 2.3 22.5 7 5.8 4.7 8.7 11 8.7 19 0 6.3-2 11.8-6 16.5-4 4.7-9 7-15 7-4.5 0-8.2-1.4-11-4.2-2.8-2.8-4.2-6.4-4.2-10.8 0-3.5 1-6.7 3-9.5 2-2.8 4.7-5 8-6.5-1.3-1.7-3.4-2.5-6.3-2.5-6.7 0-12.8 2.8-18.5 8.5-5.7 5.7-10.2 13.2-13.5 22.5-3.3 9.3-5 19.2-5 29.5 0 4.3.3 8.5 1 12.5 8.5-3 17.3-4.5 26.5-4.5 13 0 23.8 3.3 32.5 10 8.7 6.7 13 15.5 13 26.5 0 8-2.3 15.3-7 22-4.7 6.7-11 12-19 16-8 4-16.8 6-26.5 6-11.8 0-21.7-3.2-29.5-9.5 0 .3 0 .7 0 1 0 8.3 2 15.3 6 21 4 5.7 9.3 8.5 16 8.5 5 0 9.4-1.5 13-4.5 3.7-3 6.4-7 8.2-12l4.8 2c-2.2 7-5.8 12.5-11 16.5-5.1 4-11.1 6-18 6zm8-60c-6.8 5.5-12.2 12-16 19.5-3.8 7.5-5.8 15-5.8 22.5 0 2.3.2 4.5.5 6.5 5.5 4.3 12 6.5 19.5 6.5 9.5 0 17.4-3.2 23.8-9.5 6.3-6.3 9.5-14.2 9.5-23.5 0-7-2.2-12.7-6.5-17-4.3-4.3-10.2-6.5-17.5-6.5-2.7 0-5.2.2-7.5.5z'/%3E%3C/g%3E%3C!-- Musical notes scattered --%3E%3Cg fill='%23888'%3E%3Cellipse cx='350' cy='155' rx='12' ry='10'/%3E%3Cpath d='M362 155 L362 100 L380 108 L380 115 L362 108'/%3E%3Cellipse cx='550' cy='195' rx='12' ry='10'/%3E%3Cpath d='M562 195 L562 140'/%3E%3Cellipse cx='750' cy='165' rx='12' ry='10'/%3E%3Cellipse cx='780' cy='145' rx='12' ry='10'/%3E%3Cpath d='M762 165 L762 110 L792 100 L792 145'/%3E%3Cellipse cx='1000' cy='205' rx='12' ry='10'/%3E%3Cpath d='M1012 205 L1012 150'/%3E%3Cellipse cx='1200' cy='175' rx='12' ry='10'/%3E%3Cpath d='M1212 175 L1212 120 L1230 128 L1230 135 L1212 128'/%3E%3Cellipse cx='1400' cy='155' rx='12' ry='10'/%3E%3Cpath d='M1412 155 L1412 100'/%3E%3C/g%3E%3C!-- Second wavy staff (lower) --%3E%3Cpath class='staff' d='M-50 280 Q200 300 400 270 T800 290 T1200 260 T1650 280'/%3E%3Cpath class='staff' d='M-50 310 Q200 330 400 300 T800 320 T1200 290 T1650 310'/%3E%3Cpath class='staff' d='M-50 340 Q200 360 400 330 T800 350 T1200 320 T1650 340'/%3E%3Cpath class='staff' d='M-50 370 Q200 390 400 360 T800 380 T1200 350 T1650 370'/%3E%3Cpath class='staff' d='M-50 400 Q200 420 400 390 T800 410 T1200 380 T1650 400'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* 3-column variant for single row layout */
.why-choose-grid.why-choose-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
}

.why-choose-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.why-choose-item:hover {
    transform: none;
    box-shadow: none;
}

.why-choose-visual {
    width: 100%;
    max-width: 320px;
    height: 200px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-item:hover .why-choose-visual {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(133, 19, 36, 0.15);
}

.why-choose-copy {
    max-width: 320px;
}

.why-choose-copy h4 {
    font-family: var(--cmn-font-heading);
    font-size: 1.25rem;
    color: var(--cmn-primary);
    margin-bottom: 0.5rem;
}

.why-choose-copy p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--cmn-gray-600);
}

/* Mobile: single column */
@media (max-width: 700px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-choose-grid.why-choose-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .why-choose-visual {
        max-width: 280px;
        height: 180px;
    }
}

/* Tablet: 3-column becomes 2-column */
@media (max-width: 900px) and (min-width: 701px) {
    .why-choose-grid.why-choose-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
    
    .why-choose-grid.why-choose-grid-3 .why-choose-item:last-child {
        grid-column: 1 / -1;
        justify-self: center;
    }
}

/* ===== General Cards - Keep subtle for content cards ===== */
.teacher-card,
.content-card {
    background: linear-gradient(180deg, #ffffff 0%, var(--cmn-gray-50) 100%);
    border: 1px solid var(--cmn-gray-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.teacher-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(139, 38, 53, 0.1);
}

/* ===== Section Headers ===== */
.section-header h2,
.content-section h2,
.page-content h2 {
    font-family: var(--cmn-font-heading);
    position: relative;
    display: inline-block;
}

/* Decorative underline for section headers */
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cmn-accent), transparent);
    border-radius: 2px;
}

/* ===== Page Hero Sections ===== */
.page-hero,
.instrument-hero {
    position: relative;
}

.page-hero h1,
.instrument-hero h1 {
    font-family: var(--cmn-font-heading);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

/* ===== Why Choose Section ===== */
.why-choose-item h4 {
    font-family: var(--cmn-font-heading);
    color: var(--cmn-primary);
}

/* ===== Location Filter - Prominent CTA ===== */
.location-filter-section {
    background: linear-gradient(135deg, var(--cmn-secondary) 0%, #3d4447 100%);
    border-bottom: 3px solid var(--cmn-accent);
    padding: 2rem 1.5rem;
}

.filter-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

.filter-label {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: var(--cmn-font-heading);
    letter-spacing: 0.02em;
    text-transform: none;
}

.area-links {
    justify-content: center;
}

.area-link {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.95);
    padding: 0.6rem 1.25rem;
    font-size: 0.95rem;
}

.area-link:hover,
.area-link.active {
    background: var(--cmn-primary);
    color: #fff;
    border-color: var(--cmn-primary);
}

/* ===== Footer ===== */
.public-footer {
    background: linear-gradient(135deg, var(--cmn-secondary) 0%, #1a1a1a 100%);
    border-top: 3px solid var(--cmn-accent);
}

.footer-logo .logo-line2 {
    color: var(--cmn-accent);
}

/* ===== CTA Section ===== */
.cta-section h2 {
    font-family: var(--cmn-font-heading);
}

/* ===== Mobile Drawer ===== */
.mobile-drawer-header {
    background: linear-gradient(135deg, var(--cmn-secondary) 0%, #1a1a1a 100%);
    border-bottom: 2px solid var(--cmn-accent);
}

.mobile-drawer-logo .logo-line2 {
    color: var(--cmn-accent);
}

.mobile-drawer-nav a.active {
    background: var(--cmn-primary-light);
    color: var(--cmn-primary);
    border-left-color: var(--cmn-primary);
}

/* ===== Login Drawer ===== */
.login-drawer-header {
    background: linear-gradient(135deg, var(--cmn-primary) 0%, var(--cmn-primary-dark) 100%);
}

/* ===== Instructor Profile ===== */
.teacher-profile-header h1 {
    font-family: var(--cmn-font-heading);
}

.profile-instrument-tag {
    background: var(--cmn-primary-light);
    color: var(--cmn-primary);
    border: 1px solid rgba(139, 58, 76, 0.2);
}

/* ===== Testimonials ===== */
.testimonial-card {
    border-left: 4px solid var(--cmn-accent);
}

.testimonial-card::before {
    color: var(--cmn-accent);
}

/* ===== Teaching Venues Grid ===== */
.teaching-venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.venue-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--cmn-white);
    border-radius: 12px;
    border: 1px solid var(--cmn-gray-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.venue-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.venue-card.venue-primary {
    border-color: var(--cmn-primary);
    border-width: 2px;
    background: linear-gradient(135deg, var(--cmn-white) 0%, var(--cmn-primary-light) 100%);
}

.venue-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cmn-primary-light);
    color: var(--cmn-primary);
    border-radius: 10px;
    font-size: 1.25rem;
}

.venue-info {
    flex: 1;
    min-width: 0;
}

.venue-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--cmn-gray-900);
}

.venue-address {
    margin: 0 0 0.5rem 0;
    font-size: 0.875rem;
    color: var(--cmn-gray-600);
    line-height: 1.5;
}

.venue-notes {
    margin: 0;
    font-size: 0.8rem;
    color: var(--cmn-gray-500);
}

.venue-badge {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--cmn-primary);
    color: var(--cmn-white);
    border-radius: 4px;
}

@media (max-width: 600px) {
    .teaching-venues-grid {
        grid-template-columns: 1fr;
    }
    
    .venue-card {
        padding: 1rem;
    }
    
    .venue-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ===== Teaching Venues - Compact Layout ===== */
.venue-list-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.venue-item-compact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: var(--cmn-white);
    border: 1px solid var(--cmn-gray-200);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--cmn-gray-700);
    transition: all 0.2s ease;
}

.venue-item-compact:hover {
    border-color: var(--cmn-primary);
    background: var(--cmn-primary-light);
}

.venue-item-compact i {
    color: var(--cmn-primary);
    font-size: 0.8rem;
}

.venue-item-compact .venue-name {
    font-weight: 500;
}

.venue-item-compact .venue-location {
    color: var(--cmn-gray-500);
    font-size: 0.8rem;
}

.venue-item-compact .venue-location::before {
    content: "·";
    margin-right: 0.25rem;
}

.venue-item-compact.venue-primary {
    border-color: var(--cmn-primary);
    background: var(--cmn-primary-light);
}

.venue-primary-badge {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--cmn-primary);
    color: var(--cmn-white);
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
}

/* ===== Forms ===== */
.form-control:focus {
    border-color: var(--cmn-primary);
    box-shadow: 0 0 0 3px rgba(139, 58, 76, 0.1);
}

/* ===== Subtle Texture Overlay (optional - can be enabled) ===== */
/*
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zM22.344 0L13.858 8.485 15.272 9.9l9.9-9.9h-2.828zM32 0l-3.486 3.485-1.414-1.414L30.172 0H32zm-6.343 0L17.172 8.485 18.586 9.9l9.9-9.9h-2.83zM.828 0l4.243 4.243L3.657 5.657 0 2v-2h.828zm58.344 0L55.93 3.242l1.414 1.415L60 2V0h-.828zM0 5.657L5.657 0H3.828L0 3.828v1.83zm60 0L54.343 0h1.829L60 3.828v1.83zM0 11.314l11.314-11.314h-2.83L0 8.486v2.828zm60 0L48.686 0h2.828L60 8.485v2.83zm-60 5.657l16.97-16.97h-2.827L0 14.143v2.828zm60 0L43.03 0h2.828L60 14.142v2.83zM0 22.627L22.627 0h-2.83L0 19.8v2.828zm60 0L37.373 0h2.828L60 19.8v2.83zM0 28.284L28.284 0h-2.83L0 25.456v2.828zm60 0L31.716 0h2.83L60 25.457v2.827zM0 33.941L33.941 0h-2.83L0 31.113v2.828zm60 0L26.059 0h2.83L60 31.114v2.827zM0 39.598L39.598 0h-2.83L0 36.77v2.828zm60 0L20.402 0h2.83L60 36.77v2.828z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}
*/

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

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.instrument-card,
.why-choose-item {
    animation: fadeInUp 0.6s ease-out backwards;
}

.instrument-card:nth-child(1) { animation-delay: 0.1s; }
.instrument-card:nth-child(2) { animation-delay: 0.15s; }
.instrument-card:nth-child(3) { animation-delay: 0.2s; }
.instrument-card:nth-child(4) { animation-delay: 0.25s; }
.instrument-card:nth-child(5) { animation-delay: 0.3s; }
.instrument-card:nth-child(6) { animation-delay: 0.35s; }

/* ===== Print Styles ===== */
@media print {
    .public-header,
    .public-footer,
    .mobile-drawer,
    .login-drawer {
        display: none !important;
    }
}
