/* Piano with Phoebe - Elegant Dark Theme */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Playfair+Display:wght@300;400;500;600;700;800&family=Cormorant+Garamond:wght@300;400;500;600;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

:root {
    --primary-dark: #1a1a1a;
    --secondary-dark: #2c2c2c;
    --accent-gold: #d4af37;
    --accent-rose: #b8860b;
    --text-light: #f5f5f5;
    --text-muted: #cccccc;
    --text-gold: #ffd700;
    --elegant-purple: #4a4a6a;
    --deep-navy: #1e2a3a;
    --luxury-gradient: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1e2a3a 100%);
}

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

body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.nav-link:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.student-login {
    background: var(--luxury-gradient);
    border-radius: 25px;
    padding: 0.7rem 1.5rem !important;
    border: 1px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.student-login:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), url('hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 2rem;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    margin-bottom: 4rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

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

.btn {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* Achievement Icons */
.achievement-icons {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    z-index: 2;
}

.achievement-item {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 200px;
}

.achievement-item:hover {
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.achievement-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.achievement-item:hover .achievement-icon {
    color: var(--text-gold);
    transform: scale(1.2);
}

.achievement-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
}

.achievement-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Sections */
section {
    padding: 6rem 0;
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-style: italic;
}

/* About Section */
.about {
    background: var(--luxury-gradient);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('piano-studio.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    background: rgba(26, 26, 26, 0.9);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

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

.credentials h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.credentials-list {
    list-style: none;
    margin-bottom: 2rem;
}

.credentials-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.credentials-list i {
    color: var(--accent-gold);
    width: 20px;
}

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

.about-image {
    text-align: center;
}

.studio-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--accent-gold);
}

/* Courses Section */
.courses {
    background: var(--secondary-dark);
}

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

.course-card {
    background: rgba(26, 26, 26, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.course-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.course-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    text-align: center;
}

.course-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.course-features {
    list-style: none;
}

.course-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-features li::before {
    content: '✓';
    color: var(--accent-gold);
    font-weight: bold;
}

/* Achievements Section */
.achievements {
    background: var(--luxury-gradient);
}

.achievements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.achievement-stats {
    display: grid;
    gap: 2rem;
}

.stat-item {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.recent-achievements {
    background: rgba(26, 26, 26, 0.8);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.recent-achievements h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.achievement-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.timeline-date {
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
}

.timeline-content h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
    background: var(--secondary-dark);
}

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

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.tab-content {
    display: none;
}

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

.digital-concert-hall {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.concert-placeholder i {
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.concert-placeholder h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 2rem;
}

/* Parent Hub Section */
.parent-hub {
    background: var(--luxury-gradient);
    position: relative;
}

.parent-hub::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('masterclass-1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.parent-hub-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hub-description {
    background: rgba(26, 26, 26, 0.9);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hub-description h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.hub-benefits {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: start;
}

.benefit-item i {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.benefit-item h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hub-signup {
    text-align: center;
    margin-top: 2rem;
}

.hub-note {
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.hub-testimonials {
    background: rgba(26, 26, 26, 0.9);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hub-testimonials h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.testimonial {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
}

.testimonial p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial cite {
    color: var(--accent-gold);
    font-weight: 600;
    font-style: normal;
}

/* Contact Section */
.contact {
    background: var(--secondary-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    background: rgba(26, 26, 26, 0.8);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: start;
}

.contact-item i {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-muted);
}

.waiting-list-info {
    background: rgba(212, 175, 55, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
    margin-top: 2rem;
}

.waiting-list-info h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.contact-forms {
    background: rgba(26, 26, 26, 0.8);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.form-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.form-tab {
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px 20px 0 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.form-tab.active,
.form-tab:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
}

.contact-form {
    display: none;
}

.contact-form.active {
    display: block;
}

.contact-form h4 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

/* Footer */
.footer {
    background: var(--primary-dark);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-section p,
.footer-links li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-muted);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--accent-gold);
    transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .achievement-icons {
        gap: 2rem;
    }
    
    .about-content,
    .achievements-content,
    .parent-hub-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-tabs {
        flex-direction: column;
    }
    
    .form-tab {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .achievement-icons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}
