/* ═══════════════════════════════════════════════════════════
   HOME PAGE — home.css
   Prefix: home-specific classes only.
   Global resets, navbar, footer → see nav.css / footer.css
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Variables (home-specific additions) ── */
:root {
    /* Font Size Scale */
    --fs-xs: clamp(0.625rem, 1.5vw, 0.75rem);
    --fs-sm: clamp(0.75rem, 2vw, 0.875rem);
    --fs-base: clamp(0.875rem, 2.2vw, 1rem);
    --fs-md: clamp(1rem, 2.5vw, 1.125rem);
    --fs-lg: clamp(1.1rem, 3vw, 1.3rem);
    --fs-xl: clamp(1.25rem, 3.5vw, 1.5rem);
    --fs-2xl: clamp(1.4rem, 4vw, 1.8rem);
    --fs-3xl: clamp(1.8rem, 5vw, 2.2rem);
    --fs-4xl: clamp(2.2rem, 6vw, 2.8rem);

    /* Spacing Scale */
    --sp-xs: clamp(0.25rem, 1vw, 0.5rem);
    --sp-sm: clamp(0.5rem, 1.5vw, 0.75rem);
    --sp-md: clamp(1rem, 2vw, 1.25rem);
    --sp-lg: clamp(1.5rem, 3vw, 2rem);
    --sp-xl: clamp(2rem, 4vw, 2.5rem);
    --sp-2xl: clamp(2.5rem, 5vw, 3.5rem);

    /* Colors */
    --bg-dark: #16211A;
    --bg-light: #F2F4F3;
    --accent-lime: #95B300;
    --accent-lime-hover: #a3c400;
    --text-light: #FFFFFF;
    --text-dark: #16211A;
    --text-muted: #888888;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {}

/* ── Overline Label ── */
.overline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-lime);
    display: block;
}

/* ── Icon utility: accent-lime color + spacing ── */
.meta-icon-lime {
    color: var(--accent-lime);
    margin-right: 5px;
}

/* ── Badge Star ── */
.badge-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-lime);
    color: var(--bg-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    vertical-align: middle;
    margin: 0 10px;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hero.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.sfx-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(22, 33, 26, 0.85);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    padding-bottom: 80px; /* Space for marquee banner */
}

.hero-main-column {
    flex: 1;
    min-width: 300px;
    max-width: 800px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
}

.hero-side-column {
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #fff;
}

.hero-desc {
    color: #ccc;
    max-width: 580px;
    margin-bottom: 36px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 40px;
    text-align: right;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.stat-item p {
    font-size: 0.9rem;
    color: #ccc;
    max-width: 150px;
}

.scroll-down {
    font-size: 2rem;
    color: #fff;
    font-weight: 300;
    animation: bounceDown 2s infinite;
}

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

/* ── Marquee Banner ── */
.marquee-section {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--accent-lime);
    color: var(--bg-dark);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;

    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 2px;
    z-index: 3;
    display: flex;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
}

.marquee-content span {
    margin-right: 50px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

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

/* ═══════════════════════════════════════════════════════════
   SECTIONS GLOBAL
   ═══════════════════════════════════════════════════════════ */
.section {
    padding: 120px 0;
}

.section-light {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 50px;
}

/* ═══════════════════════════════════════════════════════════
   TICKETS / EVENTS SECTION
   ═══════════════════════════════════════════════════════════ */
.tickets-section-bg {
    background: linear-gradient(rgba(245, 246, 245, 0.95), rgba(245, 246, 245, 0.95)),
        url('../img/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.tickets-header-top {
    margin-bottom: 50px;
    text-align: center;
}

.tickets-desc-top {
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto;
}

/* Event meta: date/location row */
.event-meta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.event-meta-row .meta-sep {
    color: #bbb;
}

.event-desc-top {
    max-width: 560px;
    margin: 0 auto;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Empty state */
.tickets-empty {
    text-align: center;
    padding: 60px 0;
}

.tickets-empty i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: block;
}

.tickets-empty h3 {
    color: var(--text-dark);
    font-weight: 600;
}

.tickets-empty p {
    color: var(--text-muted);
    margin-top: 8px;
}

/* ── Event Layout (Poster + Ticket List) ── */
.ev-layout {
    display: grid;
    grid-template-columns: 38% 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 80px;
}

.ev-poster-col {
    position: sticky;
    top: 100px;
}

.ev-tickets-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── Poster ── */
.poster-container {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    aspect-ratio: 3 / 4;
    width: 100%;
}

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

.poster-container:hover .poster-img {
    transform: scale(1.03);
}

/* ── Sleek Ticket List ── */
.sleek-tickets-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sleek-ticket {
    display: flex;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sleek-ticket:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.sleek-ticket.sold-out {
    opacity: 0.6;
    filter: grayscale(1);
}

.sleek-ticket.featured {
    border-left: 5px solid var(--accent-lime);
}

.sleek-ticket-info {
    flex: 1;
    padding: 30px;
}

.sleek-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.sleek-badge.active {
    background: rgba(149, 179, 0, 0.15);
    color: #5c6e00;
}

.sleek-ticket-info h3 {
    font-size: 1.8rem;
    color: var(--bg-dark);
    margin-bottom: 8px;
}

.sleek-ticket-info p {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin: 0;
}

/* Terms & Conditions link button */
.trcrd-terms-link {
    color: var(--text-muted);
    font-size: 0.82rem;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    margin-top: 12px;
}

.trcrd-terms-link:hover {
    color: var(--accent-lime);
}

.sleek-ticket-action {
    width: 200px;
    background: rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    border-left: 1px dashed rgba(0, 0, 0, 0.1);
}

.sleek-price {

    font-size: 1.6rem;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 15px;
}

.sleek-price-strike {
    font-size: 0.82rem;
    color: #aaa;
    text-decoration: line-through;
    margin-bottom: -4px;
}

.sleek-ticket-action .btn-primary {
    width: 100%;
    padding: 10px 0;
    font-size: 0.9rem;
    text-align: center;
}

.btn-primary-full {
    text-align: center;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

.btn-disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

/* ═══════════════════════════════════════════════════════════
   EXPERIENCE / FEATURES SECTION
   ═══════════════════════════════════════════════════════════ */
.experience-header {
    margin-bottom: 50px;
    text-align: center;
}

.experience-title {
    color: var(--text-light);
    margin-bottom: 15px;
}

.experience-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.experience-ig-link {
    color: var(--accent-lime);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.experience-ig-link i {
    font-size: 1.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

/* ═══════════════════════════════════════════════════════════
   TERMS & CONDITIONS MODAL
   ═══════════════════════════════════════════════════════════ */
.trcrd-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.trcrd-modal.active {
    display: flex;
}

.trcrd-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.trcrd-modal-content {
    position: relative;
    z-index: 1001;
    width: 90%;
    max-width: 900px;
    height: 65vh;
    background: var(--bg-light, #F2F4F3);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;

    /* Override internal terms-conditions variables */
    --surface-2: #FFFFFF;
    --border: #E0E6ED;
    --gold: var(--accent-lime);
    --gold-light: var(--accent-lime);
    --gold-dim: rgba(149, 179, 0, 0.1);
    --border-gold: rgba(149, 179, 0, 0.25);
    --text-1: var(--text-dark);
    --text-2: #2D3748;
    --text-3: #4A5568;
}

.trcrd-modal-header {
    padding: var(--sp-md) var(--sp-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.trcrd-modal-header h2 {

    font-size: var(--fs-xl);
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

.trcrd-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1002;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color: var(--text-dark);
    font-size: var(--fs-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.trcrd-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

.trcrd-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: var(--sp-lg);
    display: flex;
    flex-direction: column;
    scrollbar-color: rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.05);
    scrollbar-width: thin;
}

.trcrd-modal-body::-webkit-scrollbar {
    width: 10px;
}

.trcrd-modal-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.trcrd-modal-body::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.trcrd-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.trcrd-modal-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-md);
    height: 100%;
    color: var(--accent-lime);
    font-size: var(--fs-base);
}

.trcrd-modal-loading i {
    font-size: clamp(1.5rem, 4vw, 2rem);
}

/* ═══════════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════════ */
.sv-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 18, 12, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    animation: lbFadeIn 0.25s ease;
}

.sv-lightbox.is-open {
    display: flex;
}

.sv-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10000;
}

.sv-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.sv-lightbox-inner {
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    cursor: default;
}

.sv-lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
    animation: lbScaleIn 0.25s ease;
}

.sv-lightbox-caption {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    letter-spacing: 0.05em;

}

@keyframes lbFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes lbScaleIn {
    from {
        transform: scale(0.92);
    }

    to {
        transform: scale(1);
    }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
    .hero-stats {
        position: static;
        margin-top: 50px;
        text-align: left;
        justify-content: flex-start;
    }

    .poster-container {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .sleek-ticket {
        flex-direction: column;
    }

    .sleek-ticket-action {
        width: 100%;
        border-left: none;
        border-top: 1px dashed rgba(0, 0, 0, 0.1);
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .ev-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ev-poster-col {
        position: static;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-top: 40px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 2.8rem;
    }
}

@media (max-width: 640px) {
    .trcrd-modal-content {
        width: 95%;
        height: 70vh;
    }

    .trcrd-modal-header {
        padding: var(--sp-md);
    }

    .trcrd-modal-body {
        padding: var(--sp-md);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 380px) {
    .trcrd-modal-content {
        width: 98%;
        height: 75vh;
    }

    .trcrd-modal-header h2 {
        font-size: var(--fs-lg);
    }
}