/* RESET & VARIABLE DEFINITIONS */
:root {
    /* Colors */
    --color-bg: #090909;
    --color-surface: #141414;
    --color-surface-alt: #1A1A1A;
    --color-primary: #FFFFFF;
    --color-secondary: #B7B7B7;
    --color-accent: #C4A46A;
    --color-border: #2B2B2B;

    --color-success: #2FA84F;
    --color-warning: #D28A00;
    --color-danger: #C33D3D;

    /* Fonts */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Dimensions */
    --width-content: 1180px;
    --width-text: 760px;
    --radius: 18px;
    --nav-height: 80px;

    /* Spacing */
    --padding-desktop: 160px;
    --padding-mobile: 90px;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg);
    color: var(--color-primary);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
}

/* Typography styling */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--color-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--width-content);
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: var(--width-text);
}

.section-padding {
    padding-top: var(--padding-desktop);
    padding-bottom: var(--padding-desktop);
}

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

/* Scroll Reveal Animations (Subtle Fade Up) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 700ms ease-out, transform 700ms ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn-primary {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--color-primary);
    border: 1px solid var(--color-accent);
    padding: 14px 28px;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease-out;
    background-color: transparent;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: none;
    /* uppercase: false */
}

.btn-primary:hover {
    background-color: var(--color-accent);
    color: var(--color-bg);
    box-shadow: 0 0 15px rgba(196, 164, 106, 0.4);
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: background-color 0.4s ease, border-bottom 0.4s ease, backdrop-filter 0.4s ease;
    border-bottom: 1px solid transparent;

}

.navbar.scrolled {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
}

.nav-container {
    max-width: var(--width-content);
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: none;
}

.site-logo {
    max-height: 55px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin-left: -30px
}

.nav-socials {
    display: none !important;
}

.nav-social-link {
    font-size: 0.9rem;
    color: var(--color-secondary);
    letter-spacing: 0.05em;
    font-weight: 500;
}

.nav-social-link:hover {
    color: var(--color-accent);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 98vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center 15%;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 9, 9, 0.50);
    /* 50% Overlay, no harsh gradients */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--width-text);
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    /* Spacings must be generous. Lots of breathing room */
}

.hero-logo {
    width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
    animation: fadeInDown 1.2s ease-out;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 1.15rem;
    color: #FFFFFF;
    letter-spacing: 0.08em;
    line-height: 1.6;
    max-width: 420px;
    animation: fadeInUp 1.4s ease-out;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    animation: fadeInUp 1.6s ease-out;
}

.hero-btn-primary {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: #000000;
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    padding: 14px 32px;
    border-radius: 30px;
    /* Rounded */
    transition: all 0.3s ease-in-out;
    text-transform: none;
    /* uppercase: false */
    display: inline-block;
}

.hero-btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.hero-btn-secondary {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: #FFFFFF;
    background-color: transparent;
    border: 1px solid #FFFFFF;
    /* White border */
    padding: 14px 32px;
    border-radius: 30px;
    /* Rounded */
    transition: all 0.3s ease-in-out;
    text-transform: none;
    /* uppercase: false */
    display: inline-block;
}

.hero-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Scroll indicator (Bottom Center ↓) */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.indicator-arrow {
    font-size: 1.5rem;
    font-weight: 300;
    animation: floatArrow 2s infinite ease-in-out;
    display: inline-block;
}

/* Sections */
.section-title {
    font-size: 2.25rem;
    letter-spacing: 0.1em;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: var(--color-accent);
}

/* Music Section (New Release) */
.release-container {
    max-width: var(--width-content);
    margin: 0 auto;
}

.release-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* Elegant vertical gap between components */
    width: 100%;
    max-width: 800px;
    /* Centered column, reading and player width */
    margin: 0 auto;
}

.release-header-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.release-song-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin: 0;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.release-song-desc {
    color: var(--color-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    max-width: 600px;
}

.embed-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    margin: 0;
}

.spotify-wrapper {
    background-color: #000000;
    width: 100%;
    height: 0;
    /* Large embed format height */
    border-radius: 12px;
    /* Rounded corners */
    margin-top: 50px;
    /* Reduce vertical spacing between description and Spotify player */
}

.spotify-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.youtube-wrapper {
    background-color: #000000;
    width: 100%;
    position: relative;
    z-index: 1;
}

.youtube-wrapper iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: 0;
    display: block;
}

.release-cta-btn {
    margin-top: -20px;
}

.btn-release-primary {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: #000000;
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    padding: 14px 32px;
    border-radius: 30px;
    /* Rounded */
    transition: all 0.3s ease-in-out;
    text-transform: none;
    /* uppercase: false */
    display: inline-block;
}

.btn-release-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-release-secondary {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: #FFFFFF;
    background-color: transparent;
    border: 1px solid #FFFFFF;
    padding: 14px 32px;
    border-radius: 30px;
    /* Rounded */
    transition: all 0.3s ease-in-out;
    text-transform: none;
    /* uppercase: false */
    display: inline-block;
}

.btn-release-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Videos Section */
.videos-container {
    max-width: var(--width-content);
    margin: 0 auto;
}

.videos-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    /* whitespace, breathing room */
    max-width: 800px;
    /* Centered column, same width as players */
    margin: 0 auto;
}

.main-video-player-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: #000000;
    border: 1px solid var(--color-border);
}

.main-video-player-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.videos-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* Vertical list spacing */
}

.video-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: transparent;
}

.video-item:hover {
    background-color: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
}

.video-item.active {
    background-color: var(--color-surface);
    border-color: var(--color-accent);
}

.video-item-thumbnail-wrapper {
    width: 140px;
    height: 80px;
    border-radius: 8px;
    /* Rounded corners */
    overflow: hidden;
    flex-shrink: 0;
}

.video-item-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.video-item:hover .video-item-thumbnail {
    transform: scale(1.05);
    /* Small hover animation */
}

.video-item-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.video-item-title {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-primary);
    margin: 0;
}

.video-item-year {
    font-size: 0.9rem;
    color: var(--color-accent);
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

@media (max-width: 767px) {
    .video-item {
        gap: 16px;
        padding: 12px;
    }

    .video-item-thumbnail-wrapper {
        width: 110px;
        height: 64px;
    }

    .video-item-title {
        font-size: 1rem;
    }

    .video-item-year {
        font-size: 0.8rem;
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.about-image-container {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-gallery {
    width: 100%;
    aspect-ratio: 4 / 3;
    position: relative;
}

.about-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-gallery-image.active {
    opacity: 1;
}

.about-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-accent);
    margin-bottom: 30px;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid var(--color-accent);
}

.about-bio p {
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.about-bio p:last-child {
    margin-bottom: 0;
}

/* Concerts / Upcoming Shows Section */
.shows-container {
    max-width: 1100px;
    margin: 0 auto;
}

.shows-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
    /* Large vertical spacing between months */
}

.show-month-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.show-month-header {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: left;
}

.show-list {
    display: flex;
    flex-direction: column;
}

.show-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border);
    /* Thin separators only */
    gap: 40px;
    transition: all 0.3s ease;
}

.show-row:first-child {
    border-top: 1px solid var(--color-border);
}

.show-date-block {
    display: flex;
    align-items: baseline;
    gap: 10px;
    min-width: 120px;
}

.show-day {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1;
}

.show-month {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-secondary);
    text-transform: uppercase;
}

.show-details {
    display: flex;
    flex-grow: 1;
    align-items: baseline;
    justify-content: space-between;
    gap: 40px;
}

.show-venue-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.show-venue {
    font-size: 1.15rem;
    font-weight: 500;
}

.show-location {
    color: var(--color-secondary);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.show-action {
    display: flex;
    justify-content: flex-end;
}

/* Status Buttons */
.btn-show-status {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 10px 24px;
    border-radius: 30px;
    /* Rounded */
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    text-transform: none;
    /* uppercase: false */
    display: inline-block;
}

/* Buy Tickets (Primary: Solid white, black text) */
.btn-show-status.buy-tickets {
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #FFFFFF;
}

.btn-show-status.buy-tickets:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Free Entry (Accent: transparent, gold border) */
.btn-show-status.free-entry {
    background-color: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.btn-show-status.free-entry:hover {
    background-color: rgba(196, 164, 106, 0.1);
    transform: translateY(-1px);
}

/* Coming Soon (Muted: transparent, border secondary) */
.btn-show-status.coming-soon {
    background-color: transparent;
    color: var(--color-secondary);
    border: 1px solid var(--color-border);
    cursor: default;
}

/* Sold Out (Red: transparent, border danger, muted) */
.btn-show-status.sold-out {
    background-color: transparent;
    color: var(--color-danger);
    border: 1px solid var(--color-danger);
    opacity: 0.6;
    cursor: default;
}

@media (max-width: 991px) {
    .show-details {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .show-action {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .show-row {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 20px 0;
    }

    .show-date-block {
        min-width: auto;
    }

    .show-details {
        gap: 12px;
    }

    .btn-show-status {
        width: 100%;
        max-width: 280px;
    }
}

/* Press Section */
.press-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.press-item {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 30px;
}

.press-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.press-quote {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    margin-bottom: 12px;
    color: var(--color-primary);
    line-height: 1.6;
}

.press-author {
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Footer Section */
.main-footer {
    padding: 120px 0 80px 0;
    /* Generous vertical spacing */
    border-top: 1px solid var(--color-border);
    background-color: var(--color-bg);
    text-align: center;
}

.footer-container {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.footer-booking {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.booking-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
}

.booking-email {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.booking-phone {
    font-size: 0.95rem;
    color: var(--color-secondary);
    letter-spacing: 0.05em;
}

.footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    /* Outlined circle */
    color: var(--color-secondary);
    transition: all 0.3s ease;
    background-color: transparent;
}

.social-btn-outline:hover {
    color: var(--color-primary);
    border-color: #FFFFFF;
    /* White outline on hover */
    transform: translateY(-2px);
}

.copyright {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    margin-top: 12px;
}

@media (max-width: 767px) {
    .main-footer {
        padding: 80px 0 60px 0;
    }

    .booking-email {
        font-size: 1.35rem;
    }
}

/* KEYFRAMES & ANIMATIONS */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatArrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
    :root {
        --padding-desktop: 120px;
    }

    .hero-logo {
        font-size: 2.75rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-container {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    :root {
        --padding-desktop: var(--padding-mobile);
    }

    .container {
        padding: 0 24px;
    }

    .hero-content {
        gap: 30px;
        padding: 0 20px;
    }

    .hero-logo {
        font-size: 2.25rem;
    }

    .hero-tagline {
        font-size: 0.95rem;
        max-width: 300px;
        line-height: 1.3;
        text-align: center;
        letter-spacing: 0.04em;
    }

    .hero-buttons {
        flex-direction: column;
        /* Stacked vertically on mobile */
        width: 100%;
        max-width: 280px;
        gap: 14px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 40px;
    }

    .site-logo {
        max-height: 32px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        background-size: 230% auto;
        background-position: center top;
        background-repeat: no-repeat;
    }
}

.hero-social-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    position: absolute !important;
    bottom: 100px !important;
    left: 0 !important;
    z-index: 9999 !important;
    color: white !important;
}

.hero-social-title {
    display: block !important;
    color: white !important;
    font-size: 24px !important;
    font-family: Arial, sans-serif !important;
    margin-bottom: 18px !important;
}

.hero-social-icons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 25px !important;
    width: 100% !important;
}

.hero-social-icons a {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    color: white !important;
    font-size: 28px !important;
    width: 35px !important;
    height: 35px !important;
}

.hero-social-icons i {
    display: inline-block !important;
    color: white !important;
    font-size: 28px !important;
}

.hero-social-icons a {
    color: white !important;
    font-size: 24px !important;
    display: inline-flex !important;
}

.hero-social-title {
    display: block !important;
    color: #ffffff !important;
    font-size: 21px !important;
    font-family: Arial, sans-serif !important;
    margin-bottom: 25px !important;
}

.hero-social-icons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 35px !important;
}

.hero-social-icons a {
    display: block !important;
    color: white !important;
    font-size: 32px !important;
}

.release-presave {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
}

.release-presave img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.release-presave a {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #111;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
}

#music {
    padding-top: 0 !important;
}

.showcase-title {
    align-self: flex-start;
    text-align: left;
}