/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0d0d0d;
    --bg-secondary: #1a1a1a;
    --bg-card: #242424;
    --bg-input: #1a1a1a;
    --text-primary: #f5f5f5;
    --text-secondary: #b0b0b0;
    --text-muted: #888888;
    --border-color: #333333;
    --border-light: #444444;
    --accent: #6b8c7c;
    --accent-light: #8aab9a;
    --accent-dark: #4a6b5a;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== TYPOGRAPHY ========== */
.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
    border-left: 2px solid var(--accent);
    padding-left: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title span {
    font-weight: 600;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    font-weight: 300;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 14px 38px;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 10px 28px;
    font-size: 0.8rem;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-small {
    padding: 8px 22px;
    font-size: 0.75rem;
}

.btn-nav {
    background: transparent;
    color: var(--text-primary);
    padding: 8px 20px;
    border: 1px solid var(--border-color);
    font-weight: 500;
    font-size: 0.8rem;
    transition: var(--transition);
}

.btn-nav:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(107, 140, 124, 0.08);
}

.btn-gallery {
    padding: 6px 16px;
    font-size: 0.7rem;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0;
}

.btn-gallery:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ========== HEADER / NAV ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.logo img {
    height: 44px;
    width: auto;
    border-radius: 4px;
}

.logo span {
    color: var(--text-primary);
    font-weight: 300;
}

.logo span strong {
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    position: relative;
}

.nav-links a:not(.btn-nav):hover {
    color: var(--text-primary);
}

.nav-links a.active:not(.btn-nav) {
    color: var(--text-primary);
}

.nav-links a.active:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 1px;
    background: var(--text-primary);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(13, 13, 13, 0.85) 0%, 
        rgba(13, 13, 13, 0.3) 60%,
        rgba(13, 13, 13, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 6.5rem);
    font-weight: 200;
    letter-spacing: 4px;
    line-height: 1;
    margin-bottom: 16px;
}

.hero-title strong {
    font-weight: 600;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 36px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-indicators span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.hero-indicators span.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* ========== BIO TEASER ========== */
.bio-teaser {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.bio-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bio-teaser-image {
    position: relative;
}

.bio-teaser-image img {
    border-radius: 4px;
    object-fit: cover;
    height: 480px;
    width: 100%;
    filter: grayscale(10%);
}

.bio-teaser-image::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    z-index: -1;
}

.bio-teaser-content h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 4px;
}

.bio-teaser-content h2 strong {
    font-weight: 600;
}

.bio-teaser-content .stage-name {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.bio-teaser-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 300;
}

.bio-teaser-content p strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* ========== MUSIC PREVIEW ========== */
.music-preview {
    padding: 80px 0;
    background: var(--bg-primary);
}

.music-preview .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.music-preview .section-header p {
    color: var(--text-secondary);
    font-weight: 300;
}

.music-card-single {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 32px 40px;
    border-radius: 4px;
}

.music-card-single .music-artwork {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}

.music-card-single .music-artwork .placeholder-art {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.music-card-single .music-artwork .track-info h3 {
    font-weight: 500;
    font-size: 1.2rem;
}

.music-card-single .music-artwork .track-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.music-card-single .music-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.music-card-single .music-links a {
    color: var(--text-secondary);
    font-size: 0.8rem;
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    transition: var(--transition);
}

.music-card-single .music-links a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.music-note {
    text-align: center;
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
}

/* ========== GALLERY PREVIEW ========== */
.gallery-preview {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.gallery-preview .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.gallery-grid .gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(20%);
}

.gallery-grid .gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.gallery-grid .gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-grid .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-grid .gallery-item .gallery-overlay span {
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

/* ========== GIGS PREVIEW ========== */
.gigs-preview {
    padding: 80px 0;
    background: var(--bg-primary);
}

.gigs-preview .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.gigs-message {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.gigs-message .icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.gigs-message h3 {
    font-weight: 400;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.gigs-message p {
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 4px;
}

.gigs-message .email-link {
    color: var(--accent);
    font-weight: 400;
}

.gigs-message .email-link:hover {
    color: var(--accent-light);
}

.gigs-social {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.gigs-social p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

/* ========== SOCIAL CONNECT ========== */
.social-connect {
    padding: 50px 0;
    background: var(--bg-secondary);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.social-connect h2 {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 4px;
}

.social-connect p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icons a:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--bg-primary);
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand .footer-logo {
    height: 44px;
    width: auto;
    border-radius: 4px;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 300;
}

.footer-links h4,
.footer-contact h4 {
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.footer-links ul li {
    margin-bottom: 6px;
}

.footer-links ul li a {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 300;
}

.footer-links ul li a:hover {
    color: var(--accent);
}

.footer-contact p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 300;
    margin-bottom: 4px;
}

.footer-contact p i {
    width: 18px;
    color: var(--text-muted);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer-bottom a {
    color: var(--accent);
}

.footer-bottom a:hover {
    color: var(--accent-light);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .bio-teaser-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bio-teaser-image img {
        height: 360px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 24px 20px 32px;
        gap: 14px;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a:not(.btn-nav) {
        font-size: 0.95rem;
    }

    .hero-title {
        font-size: clamp(2.8rem, 10vw, 4rem);
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .music-card-single {
        padding: 24px;
    }

    .music-card-single .music-artwork {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact p {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }

    .gigs-message {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2.4rem;
        letter-spacing: 2px;
    }

    .bio-teaser-content h2 {
        font-size: 1.6rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2px;
    }

    .social-icons a {
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
    }

    .bio-teaser-image img {
        height: 280px;
    }
}