/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* Screen reader only class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    padding-top: 120px; /* account for fixed header */
    background-color: #fff;
}

/* Layout helpers */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Header / Navigation */
#header {
    background: #fff;
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#logo {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.logo-text a {
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    color: #000;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.logo-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    transition: color 0.3s;
    white-space: nowrap;
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #000;
}

.nav-links li:nth-child(1) a::after {
    width: 100%;
    opacity: 0.3;
}

/* Language Toggle Button */
.language-toggle {
    background: transparent;
    border: 1px solid #000;
    color: #000;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    border-radius: 2px;
}

.language-toggle:hover {
    background: #000;
    color: #fff;
}

.social-links { display:flex; gap:25px; margin-left:40px; align-items:center; justify-content:flex-end; margin-right:-40px; }
.social-links a { color:#000; font-size:1.8rem; transition: all 0.3s ease; display:flex; align-items:center; justify-content:center; position:relative; padding-bottom:2px; }
.social-links a::after { content:''; position:absolute; width:0; height:1px; bottom:0; left:50%; transform:translateX(-50%); background-color:#000; transition:width 0.3s ease; }
.social-links a:hover::after { width:80%; }
.social-links a:hover { color:#666; transform: translateY(-1px); }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero-section {
    height: 80vh;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-slide.active { opacity: 1; }

.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.4); }

.hero-content { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    text-align: center; 
    color: #fff; 
    width: 90%; 
    max-width: 900px;
    z-index: 2;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-name {
    font-size: 8rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.9);
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    letter-spacing: 0.08em;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    font-weight: 300;
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    letter-spacing: 0.08em;
}

.hero-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    font-weight: 300;
    margin-bottom: 2rem;
}

.hero-quote-inline {
    margin-top: 2.5rem;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border-left: 3px solid rgba(255, 255, 255, 0.5);
}

.hero-quote-inline p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 10px 0;
    font-style: italic;
    font-weight: 300;
}

.hero-quote-inline cite {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.hero-title { font-size:3rem; font-weight:700; margin-bottom:1rem; }
.hero-subtitle { font-size:1.2rem; margin-bottom:2rem; }

.hero-dots { position:absolute; bottom:20px; left:50%; transform:translateX(-50%); display:flex; gap:10px; }
.hero-controls { position:absolute; bottom:20px; left:50%; transform:translateX(-50%); display:flex; gap:10px; z-index:2; }

.hero-quote {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 800px;
    width: 90%;
    text-align: center;
}

.hero-quote blockquote {
    margin: 0;
    padding: 30px 40px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 8px;
}

.hero-quote p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #fff;
    margin: 0 0 15px 0;
    font-style: italic;
    font-weight: 300;
}

.hero-quote cite {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.hero-dot { width:12px; height:12px; border-radius:50%; background-color: rgba(255,255,255,0.5); cursor:pointer; transition:background-color 0.3s ease; }
.hero-dot:hover { background-color: rgba(255,255,255,0.8); }
.hero-dot.active { background-color: #fff; }

/* Bio Section */
.bio-section { padding: 60px 0; }
.bio-grid { display:grid; grid-template-columns: 1fr 1fr; gap:50px; align-items:center; }
.bio-content h2 { font-size:2rem; margin-bottom:20px; }
.bio-content p { margin-bottom:15px; font-size:1.1rem; color:#666; }

.learn-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #000;
    text-decoration: none;
    border: 1px solid #000;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #000;
    color: #fff;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #fff;
    background-color: #000;
    text-decoration: none;
    border: 1px solid #000;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background-color: #fff;
    color: #000;
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

.bio-image {
    width: 100%;
    height: 400px;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f5f5f5;
    background-size: cover;
    background-position: center;
}

.bio-image img.profile-image { width:100%; height:100%; object-fit:cover; object-position: 50% 60%; display:block; }

/* Music Section */
.music-section { padding: 60px 0; background-color:#f9f9f9; }
.music-section h2 { text-align:center; margin-bottom:40px; font-size:2rem; }
.tracks-grid { display:grid; grid-template-columns: repeat(2,1fr); gap:30px; margin-bottom:40px; }
.track-embed { width:100%; height:152px; background:#fff; border:1px solid #eee; border-radius:8px; }

/* Repertoire Preview Section */
.repertoire-preview-section {
    padding: 60px 0;
    background-color: #fff;
}

.repertoire-preview-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
}

.repertoire-preview-section .section-intro {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.repertoire-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.repertoire-preview-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.repertoire-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: #000;
}

.repertoire-preview-image {
    width: 100%;
    height: 200px;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.repertoire-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.repertoire-preview-content {
    padding: 20px;
}

.repertoire-preview-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.repertoire-preview-content .instrumentation {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.repertoire-preview-content .duration {
    color: #999;
    font-size: 0.85rem;
}

.view-all-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 15px 40px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Facebook Feed Section */
.facebook-feed-section {
    padding: 60px 0;
    background-color: #fff;
}

.facebook-feed-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #000;
}

.facebook-feed-section .section-intro {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.facebook-feed-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.facebook-feed-container .fb-page {
    width: 100%;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.testimonial {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial p {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #fff;
    margin: 0 0 25px 0;
    font-style: italic;
    font-weight: 300;
}

.testimonial cite {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.contact-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.thank-you-message {
    background: #f0f9f4;
    border: 2px solid #4CAF50;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 30px;
    animation: slideIn 0.5s ease;
}

.thank-you-message .success-icon {
    width: 60px;
    height: 60px;
    background: #4CAF50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease;
}

.thank-you-message h3 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 10px;
}

.thank-you-message p {
    font-size: 1.1rem;
    color: #666;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Footer */
footer { padding:40px 0; background-color:#333; color:#fff; text-align:center; position:relative; }
footer p { margin:5px 0; }
.back-to-welcome { display:inline-block; padding:8px 20px; border:1px solid rgba(255,255,255,0.3); color:#fff; text-decoration:none; font-size:0.8rem; letter-spacing:0.1em; transition: all 0.3s ease; position:absolute; right:40px; bottom:40px; }
.back-to-welcome:hover { background: rgba(255,255,255,0.1); transform: translateY(-1px); }

/* Responsive */
@media (max-width: 1024px) {
    body {
        padding-top: 80px;
    }

    #header {
        padding: 15px 20px;
    }

    .wrapper {
        padding: 0 20px;
    }

    .logo-text a {
        font-size: 1.5rem;
    }

    .logo-subtitle {
        font-size: 0.7rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 30px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-right.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .nav-links a {
        font-size: 1rem;
        display: block;
        padding: 10px 0;
    }

    .social-links {
        margin-left: 0;
        margin-right: 0;
        justify-content: center;
        gap: 20px;
        padding-top: 20px;
        border-top: 1px solid #eee;
        width: 100%;
    }

    .social-links a {
        font-size: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .hero-name {
        font-size: 5rem;
        letter-spacing: 0.1em;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    #header {
        padding: 15px 20px;
    }

    .wrapper {
        padding: 0 20px;
    }

    .logo-text a {
        font-size: 1.5rem;
    }

    .logo-subtitle {
        font-size: 0.7rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 30px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-right.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .nav-links a {
        font-size: 1rem;
        display: block;
        padding: 10px 0;
    }

    .social-links {
        margin-left: 0;
        margin-right: 0;
        justify-content: center;
        gap: 20px;
        padding-top: 20px;
        border-top: 1px solid #eee;
        width: 100%;
    }

    .social-links a {
        font-size: 1.5rem;
    }

    .hero-section {
        height: 70vh;
        margin-bottom: 40px;
    }

    .hero-name {
        font-size: 3rem;
        letter-spacing: 0.08em;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-quote {
        width: 90%;
        max-width: 90%;
    }

    .hero-quote blockquote {
        padding: 20px 25px;
    }

    .hero-quote p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .hero-quote cite {
        font-size: 0.85rem;
    }

    .bio-section {
        padding: 40px 0;
    }

    .bio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bio-image {
        height: 300px;
    }

    .bio-image img.profile-image {
        object-position: 50% 70%;
    }

    .bio-content h2 {
        font-size: 1.5rem;
    }

    .bio-content p {
        font-size: 0.95rem;
    }

    .music-section {
        padding: 40px 0;
    }

    .music-section h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .tracks-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .repertoire-preview-section {
        padding: 40px 0;
    }

    .repertoire-preview-section h2 {
        font-size: 1.5rem;
    }

    .repertoire-preview-section p {
        font-size: 0.95rem;
    }

    .preview-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-section h2 {
        font-size: 1.5rem;
    }

    .contact-intro {
        font-size: 1rem;
        padding: 0 10px;
    }

    .contact-form {
        padding: 0 10px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
    }

    footer {
        padding: 30px 20px;
    }

    .back-to-welcome {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .logo-text a {
        font-size: 1.1rem;
    }

    .logo-subtitle {
        font-size: 0.6rem;
    }

    .hero-section {
        height: 65vh;
    }

    .hero-name {
        font-size: 1.4rem;
        letter-spacing: 0.03em;
        margin-bottom: 0.6rem;
    }

    .hero-title {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .hero-description {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }

    .hero-content h1 {
        font-size: 1.4rem;
    }

    .hero-quote-inline {
        padding: 15px 20px;
        margin-top: 1.5rem;
    }

    .hero-quote-inline p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .hero-quote-inline cite {
        font-size: 0.8rem;
    }

    .testimonial-section {
        padding: 50px 0;
    }

    .testimonial {
        padding: 25px;
    }

    .testimonial p {
        font-size: 1.2rem;
        line-height: 1.6;
    }

    .testimonial cite {
        font-size: 0.9rem;
    }

    .bio-content h2,
    .music-section h2,
    .repertoire-preview-section h2,
    .facebook-feed-section h2,
    .contact-section h2 {
        font-size: 1.3rem;
    }

    .facebook-feed-container {
        max-width: 100%;
        padding: 0 10px;
    }

    .tracks-grid,
    .preview-grid {
        gap: 10px;
    }
}

@media (max-width: 360px) {
    .hero-name {
        font-size: 1.2rem;
        letter-spacing: 0.02em;
    }

    .hero-title {
        font-size: 0.85rem;
    }

    .hero-description {
        font-size: 0.7rem;
    }

    .hero-quote-inline p {
        font-size: 0.8rem;
    }

    .hero-quote-inline cite {
        font-size: 0.7rem;
    }
}