﻿
:root {
    --ink: #06231b;
    --ink-2: #0b3226;
    --panel: #0e3a2c;
    --coral: #ff6b4a;
    --gold: #ffc857;
    --cream: #f4efe2;
    --sage: #8fb8a3;
    --line: rgba(244,239,226,0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--cream);
    
    font-weight: 400;
    overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

a {
    color: inherit;
}

.wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------------- HERO / TICKET ---------------- */
.hero-pad {
    padding: 156px 16px 50px;
}

.ticket {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    /* background: linear-gradient(160deg, var(--panel), var(--ink-2)); */
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 20px 40px 20px;
    text-align: center;
    box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
}

    .ticket::before, .ticket::after {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 34px;
        height: 34px;
        background: var(--ink);
        border-radius: 50%;
        box-shadow: inset 0 0 0 1px var(--line);
        background: url(../../images/bg/gold.png);
        background-repeat: no-repeat;
        background-size: cover;
    }

    .ticket::before {
        left: -17px;
    }

    .ticket::after {
        right: -17px;
    }

.perf {
    position: absolute;
    top: 74%;
    left: 34px;
    right: 34px;
    border-top: 2px dashed rgba(244,239,226,0.22);
}

.eyebrow-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    padding: 6px 14px;
    border: 1px solid rgba(255,200,87,0.35);
    border-radius: 999px;
    margin-bottom: 5px;
}
    .eyebrow-tag .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--coral);
    }

h1.title {
    font-weight: 600;
    font-size: 61px;
    line-height: 70px;
    letter-spacing: 0.01em;
    margin: 0 0 18px;
    background: linear-gradient(180deg, var(--cream), var(--sage) 130%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.title .accent {
    background: linear-gradient(90deg, var(--coral), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitle {
    font-size: 15px;
    color: #ffffff;
    max-width: 440px;
    margin: 0 auto 6px;
    line-height: 1.6;
}

.stub-row {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 0;
    padding-top: 0px;
}

.stub-item {
    text-align: left;
    flex: 1;
    min-width: 140px;
}

    .stub-item .k {
        
        font-size: 10px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--sage);
        margin-bottom: -10px;
        margin-top: 16px;
        display: block;
    }

    .stub-item .v {
        font-size: 15px;
        font-weight: 600;
        color: var(--cream);
    }

/* ---------------- MARQUEE ---------------- */
.marquee-band {
    margin-top: 0px;
    /* background: var(--coral); */
    color: #ffffff;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(0,0,0,0.15);
    transform: rotate(-1.2deg);
}

.marquee-track {
    display: inline-flex;
    animation: scroll 32s linear infinite;
    padding: 12px 0;
}

    .marquee-track span {
        
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        padding: 0 22px;
        display: inline-flex;
        align-items: center;
        gap: 22px;
    }

        .marquee-track span::after {
            content: "✦";
            opacity: 0.55;
            font-size: 12px;
        }

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ---------------- LINEUP GRID ---------------- */
.lineup {
    padding: 30px 0 30px;
}

.lineup-head {
    text-align: center;
    margin-bottom: 44px;
}

    .lineup-head .eyebrow {
        
        font-size: 12px;
        letter-spacing: 0.28em;
        text-transform: uppercase;
        color: var(--coral);
        font-weight: 600;
        margin-bottom: 10px;
    }

    .lineup-head h2 {
        
        font-weight: 400;
        font-size: clamp(30px, 5vw, 46px);
        margin: 0;
        letter-spacing: 0.01em;
    }

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width:860px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    h1.title {
        font-weight: 600;
        font-size: 30px;
        line-height: 35px;
        margin: 0 0 10px;
    }
}

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

.card {
    position: relative;
    background: rgba(244,239,226,0.03);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px 20px 22px;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    background-image: url('../../images/bg/red.png');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

    .card:hover {
        transform: translateY(-5px);
        border-color: rgba(255,200,87,0.4);
        background: rgba(244,239,226,0.05);
        background-image: url('../../images/bg/gold.png');
        background-size: cover;
        background-repeat: no-repeat;
    }

    .card .idx {
        
        font-size: 11px;
        letter-spacing: 0.15em;
        color: #ffffff;
        display: block;
    }

    .card .icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .card .icon svg {
            width: 19px;
            height: 19px;
        }

    .card h3 {
        
        font-size: 16.5px;
        font-weight: 600;
        line-height: 1.35;
        margin: 0;
        color: var(--cream);
    }

.c-coral {
    background: rgb(255 255 255);
    color: #000000;
}

.c-gold {
    background: rgb(255 255 255);
    color: #000000;
}

.c-sage {
    background: rgb(255 255 255);
    color: #000000;
}

/* ---------------- FOOTER ---------------- */
footer {
    text-align: center;
    padding: 56px 20px 60px;
    border-top: 1px solid var(--line);
    margin-top: 0px;
}

    footer .mark {
        
        font-size: 22px;
        letter-spacing: 0.05em;
        color: var(--gold);
        margin-bottom: 8px;
    }

    footer p {
        font-size: 13px;
        color: var(--sage);
        margin: 0;
    }


