@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Language Toggle System */
body.lang-id .lang-en {
    display: none !important;
}

body.lang-en .lang-id {
    display: none !important;
}

body.lang-id .lang-id {
    display: initial;
}

body.lang-en .lang-en {
    display: initial;
}

/* Flex/Grid specific overrides if needed */
body.lang-id .lang-id[style*="display: flex"] {
    display: flex !important;
}

body.lang-en .lang-en[style*="display: flex"] {
    display: flex !important;
}

/* Base Styles */
body {
    font-family: 'Space Grotesk', 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f9fa;
    color: #333;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
}

/* Grain noise texture overlay across entire page */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
    mix-blend-mode: overlay;
}

body.modal-open {
    overflow: hidden !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
}

/* --- Menu bar styling --- */
@property --menu-progress {
    syntax: "<number>";
    initial-value: 0;
    inherits: true;
}

@property --lang-progress {
    syntax: "<number>";
    initial-value: 0;
    inherits: true;
}

:root {
    --amplitude: 100px;
    --damping: 0.3;
    --frequency: 0.5;
    --circle-size: 50px;
    transition: --menu-progress 700ms, --lang-progress 700ms;
    transition-timing-function: linear;
}

:root:has(.menu-bar input:checked) {
    --menu-progress: 1;
}

:root:has(.lang-selector input:checked) {
    --lang-progress: 1;
}

.menu-bar {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: var(--circle-size);
    height: var(--circle-size);
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 200;
    overflow: visible;
}

.menu-bar>li {
    display: grid;
    place-items: center;
}

.menu-bar .circle {
    position: absolute;
    left: 0;
    top: calc((var(--circle-size) + 15px) * (var(--i) + 1));
    width: var(--circle-size);
    height: var(--circle-size);
    border-radius: 50%;
    /* Same color as navbar */
    cursor: pointer;
    opacity: calc(var(--menu-progress) * 2);

    --oscillation-x: calc((exp(-1 * var(--damping) * var(--menu-progress) * 25)) * var(--amplitude) * cos(var(--frequency) * (var(--menu-progress) * 25 + var(--i))));
    --oscillation-y: calc((exp(-1 * var(--damping) * var(--menu-progress) * 25)) * var(--amplitude) * sin(var(--frequency) * (var(--menu-progress) * 25 + var(--i))));

    transform: translateY(var(--oscillation-y)) translateX(var(--oscillation-x));
    transition: background-color 200ms, opacity 200ms;
    pointer-events: none;
}

.menu-bar:has(input:checked) .circle {
    pointer-events: auto;
}

.menu-bar .circle:hover {
    background-color: #b8c0ff;
}

.menu-bar .circle a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.menu-bar .circle img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    border-radius: 0;
}

.unfold {
    display: grid;
    place-items: center;
    position: relative;
    width: var(--circle-size);
    height: var(--circle-size);
    border-radius: 50%;
    background-color: black;
    /* Black background */
    transition: transform 100ms;
}

.unfold:has(:active) {
    transform: scale(1.025);
}

.unfold svg {
    width: 60%;
    fill: white;
    /* White icon to contrast with gray */
}

.unfold input {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

/* --- Language Selector --- */
.lang-selector {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: var(--circle-size);
    height: var(--circle-size);
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 200;
    overflow: visible;
}

.lang-selector>li {
    display: grid;
    place-items: center;
}

.lang-selector .lang-option {
    position: absolute;
    right: 0;
    top: calc((var(--circle-size) + 15px) * (var(--i) + 1));
    width: var(--circle-size);
    height: var(--circle-size);
    border-radius: 50%;
    background-color: rgba(10, 10, 20, 0.95);
    cursor: pointer;
    opacity: calc(var(--lang-progress) * 2);

    --oscillation-x: calc((exp(-1 * var(--damping) * var(--lang-progress) * 25)) * var(--amplitude) * cos(var(--frequency) * (var(--lang-progress) * 25 + var(--i))));
    --oscillation-y: calc((exp(-1 * var(--damping) * var(--lang-progress) * 25)) * var(--amplitude) * sin(var(--frequency) * (var(--lang-progress) * 25 + var(--i))));

    transform: translateY(var(--oscillation-y)) translateX(calc(-1 * var(--oscillation-x)));
    /* Mirror X oscillation */
    transition: background-color 200ms, opacity 200ms;
    pointer-events: none;
}

.lang-selector:has(input:checked) .lang-option {
    pointer-events: auto;
}

.lang-selector .lang-option a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.lang-selector .lang-option img {
    width: 75%;
    /* Slightly bigger for better visibility */
    height: 75%;
    object-fit: contain;
}

/* Specific zoom for US flag to match ID flag visual weight */
.lang-selector .lang-option a[href*="id"]~img {
    width: 90%;
    height: 90%;
}

.lang-selector .lang-option img[alt="US"] {
    width: 150%;
    height: 150%;
    max-width: none;
    /* Allow it to exceed parent if scaling up */
}

.lang-unfold {
    display: grid;
    place-items: center;
    position: relative;
    width: var(--circle-size);
    height: var(--circle-size);
    border-radius: 50%;
    background-color: black;
    transition: transform 100ms;
}

.lang-unfold .globe {
    font-size: 24px;
}

.lang-unfold input {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

/* --- Navbar styling --- */
header {
    width: 100%;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(10, 10, 20, 0.4);
    /* Glassmorphism base */
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 1000;
    padding: 0 40px;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    font-size: 60px;
    color: white;
    margin-left: 7vw;
    line-height: 0.8;
    transition: font-size 0.4s ease;
}

.strikethrough-c {
    position: relative;
    display: inline-block;
}

.strikethrough-c::after {
    content: "";
    position: absolute;
    top: 45%;
    left: -10%;
    width: 120%;
    border-top: 3px solid white;
    transform: rotate(-45deg);
    transform-origin: center;
}

ul.nav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 110px;
    /* Shifted left to make room for language selector */
}

.nav>li {
    margin-left: 15px;
}

.nav>li>a {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 24px;
}

.nav>li::after {
    content: '|';
    color: white;
    font-size: 24px;
    margin-left: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    display: none;
    /* Hide by default */
}

/* Show separator only after HOME (1st item) and KENZO (6th item) */
.nav>li:nth-child(1)::after,
.nav>li:nth-child(6)::after {
    display: inline-block;
}

.navbar.sticky-header {
    height: 60px;
    /* Slimmer on scroll */
    background: rgba(10, 10, 20, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
}

.navbar.sticky-header .brand {
    font-size: 40px;
}

.nav>li>a:hover {
    color: rgb(38, 47, 54);
    background-color: white;
    border-radius: 12px;
    transition: all ease 0.4s;
}

/* --- Section/Segment styling --- */
html {
    scroll-behavior: smooth;
}

body {
    scroll-snap-type: y mandatory;
    overflow-x: hidden;
}

.segment {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Parallax effect base */
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}

@keyframes bgPan {
    0% {
        background-position: 0% 50%;
        background-size: 120% auto;
    }

    100% {
        background-position: 100% 50%;
        background-size: 120% auto;
    }
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.video-background iframe {
    width: 100vw;
    height: 56.25vw;
    /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    /* 100 * 16 / 9 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.segment-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Base styles for content inside segments */
.segment-content {
    color: white;
    text-align: center;
    padding: 40px 60px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    /* Extremely subtle glass */
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border-radius: 20px;
}

.segment h1 {
    font-size: 6rem;
    font-weight: 100;
    margin: 0 0 30px 0;
    /* More space below ECLIPSE */
    letter-spacing: 20px;
    /* Slightly more air between letters */
}

.hero-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 10px;
    margin-bottom: 30px;
    color: rgba(212, 175, 55, 0.85);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: rgba(212, 175, 55, 0.6);
}

/* Custom non-flex layout for hero */
.segment.hero-segment {
    display: block;
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* Giant ghost watermark text*/
.hero-ghost-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', 'Cormorant Garamond', serif;
    font-size: clamp(18vw, 22vw, 30vw);
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
    letter-spacing: 0.05em;
    pointer-events: none;
    z-index: 1;
    user-select: none;
    white-space: nowrap;
}

/* Cinematic bottom fade */
.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to bottom, transparent 0%, #000 100%);
    pointer-events: none;
    z-index: 3;
}

/* Hero eyebrow label */
.hero-eyebrow {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 8px;
    color: rgba(212, 175, 55, 0.6);
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Hero brand with glow */
.hero-brand {
    font-size: clamp(5rem, 14vw, 14rem) !important;
    letter-spacing: 0.15em !important;
    margin: 0 0 20px 0 !important;
    animation: heroFadeIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards, brandPulse 6s ease-in-out 1.5s infinite;
    text-shadow: 0 0 80px rgba(212, 175, 55, 0.1);
}

@keyframes brandPulse {

    0%,
    100% {
        text-shadow: 0 0 60px rgba(212, 175, 55, 0.08);
    }

    50% {
        text-shadow: 0 0 120px rgba(212, 175, 55, 0.22), 0 0 200px rgba(212, 175, 55, 0.08);
    }
}

.segment.hero-segment .segment-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    text-align: center;
    background: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    z-index: 10;
    animation: heroFadeIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(calc(-50% + 30px));
    }

    100% {
        opacity: 1;
        transform: translateY(-50%);
    }
}

.segment p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.8rem;
    /* Slightly larger to match the premium jazz feel */
    max-width: 800px;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0 auto 50px auto;
    /* Centered horizontally with space */
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.2;
}

.hero-btn {
    display: inline-block;
    padding: 16px 48px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #d4af37;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 6px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.hero-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #d4af37;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: -1;
}

.hero-btn:hover {
    color: black;
    border-color: #d4af37;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5), 0 0 60px rgba(212, 175, 55, 0.2);
}

.hero-btn:hover::before {
    transform: scaleX(1);
}

/* ============================================
   MARQUEE TICKER STRIP
   ============================================ */
.marquee-strip {
    background: #000;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
    white-space: nowrap;
    padding: 14px 0;
    position: relative;
    z-index: 10;
    scroll-snap-align: none;
    height: auto;
    min-height: unset;
    /* Override .segment if needed */
}

.marquee-strip::before,
.marquee-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.marquee-strip::before {
    left: 0;
    background: linear-gradient(to right, #000, transparent);
}

.marquee-strip::after {
    right: 0;
    background: linear-gradient(to left, #000, transparent);
}

.marquee-inner {
    display: inline-flex;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-inner span {
    font-family: 'Space Grotesk', 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 5px;
    color: rgba(212, 175, 55, 0.7);
    text-transform: uppercase;
    padding-right: 0;
    white-space: nowrap;
}

.marquee-inner span:nth-child(odd) {
    color: rgba(255, 255, 255, 0.3);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Member Profile Hero Layout */
.member-hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.member-portrait-frame {
    width: 450px;
    height: 600px;
    border-radius: 30px;
    border: 3px solid #d4af37;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3), inset 0 0 30px rgba(212, 175, 55, 0.1);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.member-portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- Advanced Asymmetric Bio Layout --- */
.bio-advanced-section {
    max-width: 1600px;
    margin: 150px auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 30px;
    align-items: center;
}

.bio-main-story {
    grid-column: 1 / 8;
    background: rgba(15, 15, 25, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 80px;
    border-radius: 60px;
    position: relative;
    z-index: 2;
    box-shadow: 40px 40px 100px rgba(0, 0, 0, 0.6);
}

.bio-main-story::after {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 60px;
    z-index: -1;
    pointer-events: none;
}

.bio-header-group {
    margin-bottom: 50px;
}

.bio-artistic-nickname {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 300;
    line-height: 0.8;
    margin: 0;
    color: white;
    letter-spacing: -2px;
}

.bio-accent-line {
    width: 100px;
    height: 2px;
    background: #d4af37;
    margin: 30px 0;
}

.bio-prose {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.7);
    max-width: 90%;
}

.bio-side-elements {
    grid-column: 7 / 13;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    z-index: 3;
    margin-left: -50px;
    /* Force significant overlap */
}

.bio-feature-card {
    background: #0a0a0f;
    border: 2px solid #d4af37;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bio-feature-card:hover {
    transform: translateY(-15px) rotate(2deg);
}

.bio-feature-card.tall {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bio-feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #d4af37;
    margin-bottom: 30px;
}

.bio-data-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.data-point {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.data-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 5px;
}

.data-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: white;
    font-style: italic;
}

.milestones-strip {
    grid-column: 1 / 13;
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    margin-top: 80px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
}

.milestones-strip::-webkit-scrollbar {
    display: none;
}

.milestone-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(212, 175, 55, 0.8);
    background: rgba(212, 175, 55, 0.05);
    padding: 15px 30px;
    border-radius: 100px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.milestone-icon {
    font-size: 1.2rem;
}

@media (max-width: 1200px) {
    .bio-advanced-section {
        display: flex;
        flex-direction: column;
        padding: 0 30px;
    }

    .bio-main-story,
    .bio-side-elements {
        grid-column: auto;
        width: 100%;
        margin-left: 0;
    }

    .bio-artistic-nickname {
        font-size: 4rem;
    }
}

.member-role {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #d4af37;
    margin-bottom: 15px;
}

.member-fullname {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
}

.member-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .member-hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .member-portrait-frame {
        width: 300px;
        height: 400px;
    }

    .member-fullname {
        font-size: 2.5rem;
    }
}

.hero-btn:active {
    transform: scale(0.98);
}

/* --- About Us Section Styling --- */
.about-segment {
    padding: 100px 40px;
}

.about-container {
    max-width: 1300px;
    width: 90%;
    margin: 0 auto;
    position: relative;
}



.about-title {
    position: relative;
    z-index: 1;
    text-align: center;
    font-family: 'Bebas Neue', 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 8vw, 7rem);
    letter-spacing: 0.1em;
    margin-bottom: 70px;
    color: #fff;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
}

.about-split {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.about-text {
    flex: 1.5;
    /* Give more space for the diagonal layout */
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding: 40px 0;
}

.para-container {
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 2px;
    padding: 40px 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    width: 90%;
    position: relative;
    z-index: 10;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.para-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.para-container:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.para-left {
    align-self: flex-start;
    transform: translateX(-3vw);
}

.para-right {
    align-self: flex-end;
    margin-top: 20px;
    transform: translateX(3vw);
    z-index: 11;
}


.para-container p {
    font-family: 'Cormorant Garamond', serif !important;
    font-style: italic !important;
    font-size: 2.1rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    max-width: none !important;
    letter-spacing: 0.5px !important;
}

.about-image-wrapper {
    flex: 1.5;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 26, 0.8) 0%, transparent 50%);
    pointer-events: none;
}

.about-image-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9), 0 0 40px rgba(212, 175, 55, 0.15);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 992px) {
    .about-split {
        flex-direction: column;
        gap: 40px;
    }

    .about-text {
        text-align: center;
    }

    .about-title {
        font-size: 3.5rem;
        letter-spacing: 10px;
    }

    .about-image-wrapper {
        max-width: 500px;
    }
}

/* --- Footer Styling --- */
footer {
    background-color: rgba(10, 10, 20, 0.98);
    color: white;
    padding: 80px 30px 100px;
    /* Increased bottom padding to extend footer */
    border-top: 1px solid rgba(212, 175, 55, 0.6);
    scroll-snap-align: end;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    flex: 1;
    min-width: 300px;
}

.footer-left .brand {
    margin-left: -5px;
    /* Shift a tad bit more to the left */
    margin-bottom: 25px;
    font-size: 68px;
    /* 1.5x bigger (from 45px) */
}

.footer-left .slogan {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 30px;
    /* 1.5x bigger (from 20px) */
    opacity: 0.9;
    line-height: 1.1;
}

.footer-right {
    display: grid;
    grid-template-columns: auto;
    gap: 20px;
}

.footer-right h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: white;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    transition: all 0.3s ease;
    padding: 5px 10px;
    display: inline-block;
}

.footer-links li a:hover {
    color: rgb(38, 47, 54);
    background-color: white;
    border-radius: 8px;
}

/* --- Copyright Styling (Integrated in Footer) --- */
.footer-copyright-wrapper {
    margin-top: 150px;
    /* More spacing between buttons and golden line */
    text-align: center;
    width: 100%;
}

.copyright-divider {
    width: 75%;
    /* 3/4 of the line long */
    height: 1px;
    margin: 0 auto 30px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(212, 175, 55, 0.6) 50%,
            transparent 100%);
}

.copyright-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    font-weight: 300;
}

/* --- Modal/Popup Styling --- */
/* Duplicate .navbar removed */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-content {
    background: rgba(20, 20, 30, 0.7);
    /* Darker glass for modals */
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 50px;
    border-radius: 24px;
    width: 90%;
    max-width: 600px;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-content h2 {
    color: #d4af37;
    /* Golden color */
    margin-bottom: 30px;
}

.modal-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.modal-btn {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 15px;
    border-radius: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
}

.modal-btn:hover {
    background-color: white;
    color: rgb(38, 47, 54);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.7;
}

.close-modal:hover {
    opacity: 1;
}

/* --- Premium Animations --- */

/* Scroll Reveal Initial State */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Page Load Slide In */
@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.load-reveal {
    animation: fadeSlideIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    /* Handled by animation */
}

/* Brand (Flex) slide */
@keyframes brandFlexSlide {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.brand-load {
    animation: brandFlexSlide 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Navigation (Flex) slide */
@keyframes navFlexSlide {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-load {
    animation: navFlexSlide 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Menu (Absolute) slide */
@keyframes menuAbsSlide {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.menu-load {
    animation: menuAbsSlide 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Language (Absolute) slide */
@keyframes langAbsSlide {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.lang-load {
    animation: langAbsSlide 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Delay Utilites */
.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* --- Lightbox / Image Popup Styling --- */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.5s;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(50px) scale(0.95);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lightbox-overlay.active .lightbox-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover {
    color: #d4af37;
    transform: scale(1.1) rotate(90deg);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: -50px;
        right: 0;
    }
}

/* Make images clickable if they are not UI icons */
img {
    cursor: pointer;
}

.menu-bar img,
.lang-selector img,
.unfold img,
.lang-unfold img,
.album-cover-wrapper img,
.now-playing-thumb {
    cursor: inherit;
}

/* Album Preview Section */
.album-preview-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    min-height: 100vh;
}

.album-preview-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
}

.album-header {
    text-align: center;
    margin-bottom: 50px;
}

.album-small-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 5px;
    color: #d4af37;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.album-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: #d4af37;
    margin: 0;
    font-weight: 300;
    letter-spacing: 10px;
}

.album-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 900px;
}

.album-cover-wrapper {
    width: 400px;
    height: 400px;
    border: 2px solid rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    overflow: hidden;
}

.album-cover-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.audio-player-container {
    background: rgba(20, 20, 25, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 25px 35px;
    width: 100%;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.player-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.now-playing-info {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 30%;
}

.now-playing-thumb {
    width: 45px;
    height: 45px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid #d4af37;
    pointer-events: none;
}

.now-playing-text {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 40%;
    justify-content: center;
}

.control-btn {
    background: none;
    border: none;
    color: #a0a0a0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
}

.control-btn:hover {
    color: #d4af37;
    transform: scale(1.1);
}

.play-btn {
    width: 44px;
    height: 44px;
    background: #d4af37;
    color: black;
    border-radius: 50%;
}

.play-btn:hover {
    color: black;
    background: white;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.time-info {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: #888;
    width: 30%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.time-display {
    min-width: 70px;
    text-align: right;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-container {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d4af37;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.8);
    transition: transform 0.1s;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}

.progress-slider {
    background: linear-gradient(to right, #d4af37 0%, rgba(255, 255, 255, 0.1) 0%);
}

.volume-slider {
    width: 70px;
    background: linear-gradient(to right, #d4af37 100%, rgba(255, 255, 255, 0.1) 100%);
}

.playlist {
    margin-top: 5px;
}

#playlist-ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.playlist-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    justify-content: space-between;
}

.playlist-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.playlist-item.active {
    background: rgba(212, 175, 55, 0.1);
    border-left: 2px solid #d4af37;
}

.playlist-item-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.play-item-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
}

.playlist-item:hover .play-item-btn {
    color: #a0a0a0;
}

.playlist-item.active .play-item-btn {
    color: #d4af37;
}

.song-name {
    font-family: 'Montserrat', sans-serif;
    color: #bbb;
    font-size: 0.9rem;
}

.playlist-item.active .song-name {
    color: #d4af37;
    font-weight: 500;
}

.song-duration {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .album-title {
        font-size: 3rem;
    }

    .album-cover-wrapper {
        width: 100%;
        max-width: 300px;
        height: 300px;
    }

    .player-header {
        flex-direction: column;
        gap: 20px;
    }

    .now-playing-info,
    .player-controls,
    .time-info {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   TOUR SECTION
   ========================================== */

.tour-segment {
    background-color: #08080f;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(90, 50, 10, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 50%, rgba(120, 70, 10, 0.12) 0%, transparent 55%),
        linear-gradient(180deg, #08080f 0%, #0d0a05 50%, #08080f 100%);
    position: relative;
    overflow: hidden;
}

.tour-segment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 80px,
            rgba(212, 175, 55, 0.025) 80px,
            rgba(212, 175, 55, 0.025) 81px);
    pointer-events: none;
    z-index: 0;
}

.tour-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.tour-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}

/* Left column: header + list */
.tour-left {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-width: 0;
}

/* Right column: poster image */
.tour-poster-wrapper {
    flex: 0 0 auto;
    width: 340px;
    position: relative;
}

.tour-poster-img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow:
        0 0 40px rgba(212, 175, 55, 0.15),
        0 30px 60px rgba(0, 0, 0, 0.7);
    display: block;
    cursor: default;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.tour-poster-img:hover {
    transform: translateY(-8px) rotate(1deg) scale(1.02);
    box-shadow:
        0 0 60px rgba(212, 175, 55, 0.3),
        0 40px 80px rgba(0, 0, 0, 0.8);
}

/* Header */
.tour-header {
    text-align: center;
}

.tour-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 8px;
    color: rgba(212, 175, 55, 0.7);
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.tour-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 300;
    color: #fff;
    letter-spacing: 12px;
    margin: 0;
    text-transform: uppercase;
    line-height: 1;
}

.tour-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 6px;
    color: #d4af37;
    margin: 18px 0 0 0;
}

/* Divider line */
.tour-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
}

/* Each row */
.tour-row {
    display: grid;
    grid-template-columns: 80px 1fr auto auto;
    align-items: center;
    gap: 30px;
    padding: 26px 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    transition: background 0.3s ease, padding-left 0.3s ease;
    cursor: default;
}

.tour-row:hover {
    background: rgba(212, 175, 55, 0.04);
    padding-left: 20px;
}

/* Date block */
.tour-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 60px;
}

.tour-month {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: #d4af37;
    text-transform: uppercase;
}

.tour-day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 300;
    color: white;
    line-height: 1;
}

/* Venue + city */
.tour-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tour-venue {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: white;
    letter-spacing: 1px;
    line-height: 1.1;
}

.tour-city {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
}

/* Tag (SOLD OUT / FEW LEFT) */
.tour-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    min-width: 80px;
    text-align: center;
    color: rgba(212, 175, 55, 0.8);
}

/* Ticket button */
.tour-btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 12px 24px;
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    background: transparent;
}

.tour-btn:hover {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5), 0 0 60px rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

.sold-out-btn {
    opacity: 0.35;
    pointer-events: none;
    cursor: default;
}

@media (max-width: 900px) {
    .tour-container {
        flex-direction: column;
        gap: 40px;
    }

    .tour-poster-wrapper {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .tour-row {
        grid-template-columns: 60px 1fr;
        grid-template-rows: auto auto;
        gap: 12px 20px;
        padding: 20px 10px;
    }

    .tour-tag {
        display: none;
    }

    .tour-btn {
        grid-column: 2;
        align-self: start;
        width: fit-content;
        padding: 10px 18px;
    }

    .tour-day {
        font-size: 1.8rem;
    }

    .tour-venue {
        font-size: 1.2rem;
    }
}

/* ==========================================
   MERCH SECTION
   ========================================== */

.merch-segment {
    background-color: #060608;
    background-image:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212, 175, 55, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 20% 80%, rgba(80, 40, 10, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 80% 80%, rgba(80, 40, 10, 0.10) 0%, transparent 60%);
    position: relative;
    overflow: hidden;
}

.merch-bg-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(90deg,
            transparent,
            transparent 120px,
            rgba(212, 175, 55, 0.018) 120px,
            rgba(212, 175, 55, 0.018) 121px);
}

.merch-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

/* Header */
.merch-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 8px;
    color: rgba(212, 175, 55, 0.65);
    margin: 0 0 14px 0;
}

.merch-header {
    text-align: center;
}

.merch-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    letter-spacing: 14px;
    color: white;
    margin: 0;
    text-transform: uppercase;
    line-height: 1;
}

/* ---- Carousel ---- */
.merch-carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.merch-track {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    position: relative;
    width: 100%;
    height: 500px;
}

/* === Card base === */
.merch-card {
    position: absolute;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: all 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    user-select: none;
}

.merch-card-img-wrap {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    transition: box-shadow 0.55s ease;
    aspect-ratio: 4/5;
    background: #0d0d14;
}

.merch-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: default;
    transition: transform 0.55s ease;
}

.merch-card-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 4px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.merch-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: white;
    letter-spacing: 1px;
}

.merch-card-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #d4af37;
    letter-spacing: 2px;
}

/* === Carousel states applied by JS === */

/* CENTER card */
.merch-card.pos-center {
    transform: translateX(0) scale(1) rotateY(0deg);
    z-index: 10;
    filter: none;
}

.merch-card.pos-center .merch-card-img-wrap {
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.25), 0 30px 80px rgba(0, 0, 0, 0.85);
    border-color: rgba(212, 175, 55, 0.5);
}

.merch-card.pos-center .merch-card-info {
    opacity: 1;
    transform: translateY(0);
}

.merch-card.pos-center .merch-card-img-wrap img {
    transform: scale(1.03);
}

/* LEFT card */
.merch-card.pos-left {
    transform: translateX(-260px) scale(0.75) rotateY(25deg);
    z-index: 5;
    filter: brightness(0.45) saturate(0.4);
}

/* RIGHT card */
.merch-card.pos-right {
    transform: translateX(260px) scale(0.75) rotateY(-25deg);
    z-index: 5;
    filter: brightness(0.45) saturate(0.4);
}

/* HIDDEN (extra cards if added later) */
.merch-card.pos-hidden {
    transform: translateX(0) scale(0.5);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

/* === Arrows === */
.merch-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(20, 20, 28, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.merch-arrow:hover {
    background: #d4af37;
    color: black;
    border-color: #d4af37;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

.merch-arrow-left {
    left: calc(50% - 260px);
}

.merch-arrow-right {
    right: calc(50% - 260px);
}

/* === Dots === */
.merch-dots {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.merch-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.merch-dot.active {
    background: #d4af37;
    border-color: #d4af37;
    width: 22px;
    border-radius: 4px;
}

/* === Shop button === */
.merch-shop-btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 14px 36px;
    border-radius: 50px;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.merch-shop-btn:hover {
    background: #d4af37;
    color: black;
    border-color: #d4af37;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .merch-track {
        height: 380px;
    }

    .merch-card {
        width: 220px;
    }

    .merch-card.pos-left {
        transform: translateX(-175px) scale(0.72) rotateY(25deg);
    }

    .merch-card.pos-right {
        transform: translateX(175px) scale(0.72) rotateY(-25deg);
    }

    .merch-arrow-left {
        left: 4px;
    }

    .merch-arrow-right {
        right: 4px;
    }

    .merch-arrow {
        width: 40px;
        height: 40px;
    }
}