* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    color: #e8e8e8;
    line-height: 1.6;
    overflow-x: hidden;
    background: #1a1a2e;
}

/* Floating Music Notes */
.music-notes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.note {
    position: absolute;
    font-size: 2rem;
    color: rgba(139, 71, 137, 0.3);
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    padding: 1.5rem 5%;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

nav.scrolled {
    padding: 1rem 5%;
    background: rgba(26, 26, 46, 1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #b47eb4;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 20px rgba(180, 126, 180, 0.5);
}

.logo:hover {
    color: #d4a5d4;
    text-shadow: 0 0 30px rgba(180, 126, 180, 0.8);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #e8e8e8;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #b47eb4;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(180, 126, 180, 0.5);
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-links a:hover {
    color: #b47eb4;
    text-shadow: 0 0 10px rgba(180, 126, 180, 0.5);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #e8e8e8;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: radial-gradient(ellipse at center, #5a3a5a 0%, #3d2a4d 50%, #2d1b3d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(180, 126, 180, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 71, 137, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(180, 126, 180, 0.08) 0%, transparent 40%);
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 0 0 40px rgba(180, 126, 180, 0.6);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(180, 126, 180, 0.6);
    }
    to {
        text-shadow: 0 0 40px rgba(180, 126, 180, 1), 0 0 60px rgba(180, 126, 180, 0.8);
    }
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #b47eb4 0%, #8b4789 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(180, 126, 180, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(180, 126, 180, 0.6);
}

/* Sections */
section {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #e8e8e8;
    position: relative;
    text-shadow: 0 0 20px rgba(180, 126, 180, 0.4);
}

section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b47eb4, transparent);
    margin: 1rem auto;
    box-shadow: 0 0 10px rgba(180, 126, 180, 0.5);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #4a2c4a 0%, #2d1b3d 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(180, 126, 180, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(180, 126, 180, 0.3);
}

.about-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0,0,0,0.6), 0 0 60px rgba(180, 126, 180, 0.5);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #c8c8c8;
}

/* Lessons Section */
.lessons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.lesson-card {
    background: linear-gradient(135deg, #2a2a3e 0%, #1f1f2e 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    border: 2px solid rgba(180, 126, 180, 0.2);
}

.lesson-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 30px rgba(180, 126, 180, 0.4);
    border-color: #b47eb4;
}

.lesson-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #b47eb4;
    text-shadow: 0 0 10px rgba(180, 126, 180, 0.3);
}

.lesson-card p {
    color: #c8c8c8;
    margin-bottom: 1rem;
}

.lesson-card ul {
    list-style: none;
    padding-left: 0;
}

.lesson-card li {
    padding: 0.5rem 0;
    color: #b8b8b8;
}

.lesson-card li:before {
    content: '♪ ';
    color: #b47eb4;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(180, 126, 180, 0.5);
}

/* Locations Section */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    background: linear-gradient(135deg, #4a2c4a 0%, #2d1b3d 100%);
    padding: 2rem;
    border-radius: 15px;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 2px solid rgba(180, 126, 180, 0.3);
}

.location-card:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.7), 0 0 40px rgba(180, 126, 180, 0.5);
}

.location-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(180, 126, 180, 0.5);
}

.location-card p {
    opacity: 0.9;
}

/* Contact Section */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #e8e8e8;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(180, 126, 180, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #2a2a3e;
    color: #e8e8e8;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b47eb4;
    box-shadow: 0 0 20px rgba(180, 126, 180, 0.4);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #b47eb4 0%, #8b4789 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(180, 126, 180, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 40px rgba(180, 126, 180, 0.6);
}

/* Footer */
footer {
    background: #16161e;
    color: #c8c8c8;
    text-align: center;
    padding: 3rem 5%;
    border-top: 1px solid rgba(180, 126, 180, 0.2);
}

footer p {
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a2e;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
    }

    section {
        padding: 4rem 5%;
    }
}