/* style.css */
:root {
    --bg-main: #0e0e0e;
    --surface-dark: #161616;
    --surface-card: #1c1c1c;
    --accent-primary: #EF9F27;
    --accent-secondary: #D85A30;
    --text-primary: #F5F0E8;
    --text-muted: #888780;
    --border-subtle: #2a2a2a;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background-color: var(--accent-primary);
    color: var(--bg-main);
}

/* Typography */
h1, h2, h3, h4, .pull-quote {
    font-family: var(--font-heading);
}

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

.section {
    padding: 8rem 0;
}

.dark-surface {
    background-color: var(--surface-dark);
}

.section-label {
    display: inline-block;
    color: var(--accent-primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background-color: rgba(14, 14, 14, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 0;
}

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

.nav-logo {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.nav-logo:hover {
    color: var(--accent-primary);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--accent-primary);
    transition: width var(--transition-smooth);
}

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

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-toggle {
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    padding: 0.4rem 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.lang-toggle:hover {
    border-color: var(--accent-primary);
}

.lang-option {
    transition: color var(--transition-fast);
}

.lang-option.active {
    color: var(--accent-primary);
}

.lang-divider {
    color: var(--border-subtle);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 101;
}

.mobile-menu-btn .bar {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

.mobile-menu-btn .bar:nth-child(1) { top: 0; }
.mobile-menu-btn .bar:nth-child(2) { top: 9px; }
.mobile-menu-btn .bar:nth-child(3) { top: 18px; }

/* Mobile Nav Overlay */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-main);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
        z-index: 99;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-btn.active .bar:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }

    .mobile-menu-btn.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active .bar:nth-child(3) {
        transform: rotate(-45deg);
        top: 9px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    filter: brightness(0.75);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #8A5A19; /* dark amber */
    mix-blend-mode: multiply;
    opacity: 0.7;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 14, 14, 0.60);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    padding: 0 5%;
    animation: fadeInUp 1.2s var(--transition-smooth);
}

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

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-alias {
    font-size: 1.1rem;
    color: var(--accent-primary);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-family: var(--font-body);
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.3rem;
    color: #D6C2A9; /* Slightly warmer color */
    margin-bottom: 3rem;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background-color: transparent;
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
    box-shadow: 0 0 15px rgba(239, 159, 39, 0.1);
}

.btn-primary:hover {
    background-color: var(--accent-primary);
    color: var(--bg-main);
    box-shadow: 0 0 25px rgba(239, 159, 39, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background-color: rgba(245, 240, 232, 0.05);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.arrow {
    width: 14px;
    height: 14px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.bio-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.genre-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.pill {
    padding: 0.5rem 1rem;
    background-color: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Sierra Quote Animation */
.about-sierra {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.sierra-svg {
    width: 100%;
    height: 150px;
    margin-bottom: 2rem;
}

.sierra-path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
}

.about-sierra.is-visible .path-1 { animation: drawPath 0.3s ease-in-out forwards 0s; }
.about-sierra.is-visible .path-2 { animation: drawPath 0.35s ease-in-out forwards 0.25s; }
.about-sierra.is-visible .path-3 { animation: drawPath 0.3s ease-in-out forwards 0.55s; }
.about-sierra.is-visible .path-4 { animation: drawPath 0.5s ease-in-out forwards 0.8s; }
.about-sierra.is-visible .path-5 { animation: drawPath 0.3s ease-in-out forwards 1.25s; }
.about-sierra.is-visible .path-6 { animation: drawPath 0.25s ease-in-out forwards 1.5s; }

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

.sierra-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0;
}

.sierra-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: #F5F0E8;
    text-align: center;
    max-width: 100%;
    opacity: 0;
}

.about-sierra.is-visible .sierra-text {
    animation: textFadeIn 0.8s ease-in-out forwards 1.95s;
}

.sierra-attr {
    color: #888780;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    opacity: 0;
}

.about-sierra.is-visible .sierra-attr {
    animation: textFadeIn 1s ease-in-out forwards 3.05s;
}

@keyframes textFadeIn {
    to {
        opacity: 1;
    }
}

/* Live Set Section */
.live-set-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .live-set-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.live-set-text {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.synth-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.synth-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.synth-path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
}

#synth-illustration.is-visible .synth-panel { animation: drawPath 0.6s linear forwards 0s; }

#synth-illustration.is-visible .synth-knob-1 { animation: drawPath 0.15s linear forwards 0.6s; }
#synth-illustration.is-visible .synth-knob-2 { animation: drawPath 0.15s linear forwards 0.75s; }
#synth-illustration.is-visible .synth-knob-3 { animation: drawPath 0.15s linear forwards 0.9s; }
#synth-illustration.is-visible .synth-knob-4 { animation: drawPath 0.15s linear forwards 1.05s; }
#synth-illustration.is-visible .synth-knob-5 { animation: drawPath 0.15s linear forwards 1.2s; }
#synth-illustration.is-visible .synth-knob-6 { animation: drawPath 0.15s linear forwards 1.35s; }

#synth-illustration.is-visible .synth-screen { animation: drawPath 0.3s linear forwards 1.5s; }
#synth-illustration.is-visible .synth-wave { animation: drawPath 0.4s linear forwards 1.8s; }

#synth-illustration.is-visible .synth-patch-1 { animation: drawPath 0.1s linear forwards 2.2s; }
#synth-illustration.is-visible .synth-patch-2 { animation: drawPath 0.1s linear forwards 2.3s; }
#synth-illustration.is-visible .synth-patch-3 { animation: drawPath 0.1s linear forwards 2.4s; }
#synth-illustration.is-visible .synth-patch-4 { animation: drawPath 0.1s linear forwards 2.5s; }
#synth-illustration.is-visible .synth-patch-5 { animation: drawPath 0.1s linear forwards 2.6s; }
#synth-illustration.is-visible .synth-patch-6 { animation: drawPath 0.1s linear forwards 2.7s; }
#synth-illustration.is-visible .synth-patch-7 { animation: drawPath 0.1s linear forwards 2.8s; }
#synth-illustration.is-visible .synth-patch-8 { animation: drawPath 0.1s linear forwards 2.9s; }

#synth-illustration.is-visible .synth-cable-1 { animation: drawPath 0.5s ease-in-out forwards 3.0s; }
#synth-illustration.is-visible .synth-cable-2 { animation: drawPath 0.5s ease-in-out forwards 3.5s; }
#synth-illustration.is-visible .synth-cable-3 { animation: drawPath 0.5s ease-in-out forwards 4.0s; }

#synth-illustration.is-visible .synth-keys { animation: drawPath 0.4s linear forwards 4.5s; }

/* Hybrid Section Background */
.hybrid-section {
    position: relative;
    overflow: hidden;
}

.hybrid-content-wrapper {
    position: relative;
    z-index: 1;
}

.hybrid-live-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-cables-svg {
    width: 100%;
    height: 100%;
}

.bg-cable, .bg-figure {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
}

#live-set.is-visible .bg-cable-1 { animation: drawPath 4.0s ease-in-out forwards 0.0s; }
#live-set.is-visible .bg-cable-2 { animation: drawPath 4.0s ease-in-out forwards 0.2s; }
#live-set.is-visible .bg-cable-3 { animation: drawPath 4.0s ease-in-out forwards 0.4s; }
#live-set.is-visible .bg-cable-4 { animation: drawPath 4.0s ease-in-out forwards 0.6s; }
#live-set.is-visible .bg-cable-5 { animation: drawPath 4.0s ease-in-out forwards 0.8s; }
#live-set.is-visible .bg-cable-6 { animation: drawPath 4.0s ease-in-out forwards 1.0s; }
#live-set.is-visible .bg-cable-7 { animation: drawPath 4.0s ease-in-out forwards 1.2s; }

#live-set.is-visible .bg-fig-1 { animation: drawPath 1.0s ease-in-out forwards 4.6s; }
#live-set.is-visible .bg-fig-2 { animation: drawPath 1.0s ease-in-out forwards 4.8s; }
#live-set.is-visible .bg-fig-3 { animation: drawPath 1.0s ease-in-out forwards 5.0s; }
#live-set.is-visible .bg-fig-4 { animation: drawPath 1.0s ease-in-out forwards 5.2s; }

/* Music Section */
.music-content {
    max-width: 900px;
    margin: 0 auto;
}

.soundcloud-embeds {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.embed-label {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.sc-player {
    background: #1c1c1c;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.sc-player iframe {
    display: block;
}

/* Hide SoundCloud attribution div if present */
.sc-player > div {
    display: none !important;
}

.video-embed {
    margin-bottom: 4rem;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #1c1c1c;
    margin-top: 2rem;
}

.video-preview-link {
    display: block;
    background-image: url('https://img.youtube.com/vi/PWnvvFX0TXU/maxresdefault.jpg');
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.video-preview-link::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
    z-index: 1;
}

.video-preview-link:hover::before {
    background-color: rgba(0, 0, 0, 0.3);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.3s ease;
}

.video-preview-link:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-icon {
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 30px solid #0e0e0e;
    margin-left: 8px;
}

.platform-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.platform-btn {
    padding: 0.6rem 1.5rem;
    background-color: var(--surface-card);
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid var(--accent-primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.platform-btn:hover {
    background-color: var(--accent-primary);
    color: var(--bg-main);
}

/* Gallery Section */
#gallery {
    width: 100%;
    padding: 80px 5%;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 2;
    clear: both;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 16px;
    width: 100%;
    overflow: hidden;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
    cursor: pointer;
    display: block;
    width: 100%;
    height: 100%;
    transition: background-color 0.5s ease;
}

.gallery-item:nth-child(odd) {
    background-color: #EF9F27;
}

.gallery-item:nth-child(even) {
    background-color: #D85A30;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.gallery-item:hover {
    background-color: transparent;
}

.gallery-item:hover img {
    opacity: 1;
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        grid-auto-rows: 350px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Booking Section */
#booking {
    position: relative;
    z-index: 3;
    margin-top: 0;
    clear: both;
    width: 100%;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.press-card {
    background-color: var(--surface-card);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
}

.card-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.press-bio {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.booking-email {
    display: block;
    margin-top: 1.5rem;
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.booking-email:hover {
    color: var(--text-primary);
}

.press-kit-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-family: var(--font-body);
}

.contact-form-wrapper {
    background-color: transparent;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

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

.form-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: 0.2s ease all;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--accent-primary);
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

@media (max-width: 768px) {
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Footer */
.footer {
    border-top: 1px solid var(--accent-primary);
    padding: 3rem 0;
    background-color: var(--bg-main);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.footer-center {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-center a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-center a:hover {
    color: var(--text-primary);
}

.footer-right p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}
