:root {
    --ivory: #f8f6f1;
    --cream: #fffef9;
    --burgundy: #6b2737;
    --navy: #2c3e50;
    --gold: #c9a961;
    --charcoal: #3a3a3a;
    --light-gray: #e8e6e0;
    --text-dark: #2a2a2a;
    --text-medium: #666666;
}

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

body {
    font-family: 'Lato', 'Helvetica Neue', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Navigation */
.navbar {
    background: var(--ivory);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--light-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

.site-title {
    font-size: 1.8rem;
    color: var(--burgundy);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.site-title:hover {
    color: var(--navy);
}

.site-subtitle {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--text-medium);
    margin-top: -5px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--burgundy);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--burgundy);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--burgundy);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--burgundy);
    cursor: pointer;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--ivory);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-slide.active {
    opacity: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(248, 246, 241, 0.3), rgba(248, 246, 241, 0.6));
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
    padding: 100px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.page-header h1 {
    font-size: 3rem;
    color: var(--burgundy);
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease-out;
}

.page-header .subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--text-medium);
    text-transform: uppercase;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Content Section */
.content-section {
    padding: 80px 0;
}

.content-section.alt {
    background: var(--ivory);
}

/* Profile/Bio Styling */
.bio-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.bio-content p {
    margin-bottom: 20px;
}

/* Repertoire Lists */
.repertoire-category {
    margin-bottom: 50px;
}

.repertoire-category h3 {
    font-size: 1.8rem;
    color: var(--burgundy);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.repertoire-composer {
    margin-bottom: 30px;
}

.repertoire-composer h4 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 600;
}

.repertoire-list {
    list-style: none;
    padding-left: 20px;
}

.repertoire-list li {
    margin-bottom: 8px;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
}

.repertoire-list li::before {
    content: '♪';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.1rem;
}

/* Lessons & Fees */
.lessons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.lesson-card {
    background: var(--ivory);
    padding: 40px 35px;
    border-radius: 2px;
    border-left: 4px solid var(--burgundy);
    transition: all 0.3s ease;
}

.lesson-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.lesson-card h3 {
    font-size: 1.6rem;
    color: var(--burgundy);
    margin-bottom: 20px;
}

.lesson-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.lesson-card .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-top: 20px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--ivory);
    padding: 50px 40px;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    background: var(--cream);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
    border-radius: 2px;
}

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

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

.submit-btn {
    background: var(--burgundy);
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 2px;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.submit-btn:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 39, 55, 0.3);
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--ivory);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border-top: 1px solid var(--light-gray);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero {
        height: 60vh;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .site-title {
        font-size: 1.4rem;
    }
    
    .lessons-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .content-section {
        padding: 50px 0;
    }
}
