/* ============================================
   NEXUS BY AC — Summer Camp Tickets (ON SCREEN)
   Cinema-themed overrides for summer-camp-tickets.html
   Builds on summer-camp.css
   ============================================ */

:root {
    --tk-red: #c0392b;
    --tk-red-dark: #8b1f1a;
    --tk-red-glow: rgba(192, 57, 43, 0.45);
}

/* ============================================
   HERO
   ============================================ */
.tk-hero {
    background: radial-gradient(
        ellipse at center,
        var(--tk-red-dark) 0%,
        var(--sc-dark) 70%,
        var(--sc-dark) 100%
    );
}

.tk-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 60px,
            rgba(0, 0, 0, 0.18) 60px,
            rgba(0, 0, 0, 0.18) 64px
        ),
        linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

.tk-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--sc-white);
    padding: 6rem 2rem 4rem;
    max-width: 720px;
    margin: 0 auto;
}

.tk-hero-title {
    font-family: var(--sc-font-display);
    font-size: 5.5rem;
    line-height: 1;
    letter-spacing: 8px;
    color: var(--sc-yellow);
    text-shadow:
        0 0 24px var(--tk-red-glow),
        2px 2px 0 var(--tk-red-dark);
    margin: 0.5rem 0 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tk-hero-title-emoji {
    font-size: 3.5rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.tk-hero-tagline {
    font-family: var(--sc-font-display);
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: var(--sc-cream);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    opacity: 0.95;
}

.tk-hero-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
    margin-bottom: 2rem;
    color: var(--sc-cream);
    font-size: 0.95rem;
    font-weight: 500;
}

.tk-hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.85rem;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

.tk-hero-poster-wrap {
    margin: 0 auto 2rem;
    max-width: 360px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    cursor: zoom-in;
    transition: var(--sc-transition);
}

.tk-hero-poster-wrap:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 60px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}

.tk-hero-poster {
    width: 100%;
    height: auto;
    display: block;
}

.tk-hero-cta {
    background: var(--sc-yellow);
    color: var(--sc-dark);
    font-size: 1.4rem;
    padding: 1.1rem 2.75rem;
    box-shadow: 0 8px 24px var(--tk-red-glow);
}

.tk-hero-cta:hover {
    background: var(--sc-white);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--tk-red-glow);
}

/* ============================================
   ABOUT
   ============================================ */
.tk-about {
    background: linear-gradient(180deg, var(--sc-dark) 0%, var(--sc-dark-mid) 100%);
}

.tk-about-text {
    color: var(--sc-cream);
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    opacity: 0.92;
}

.tk-about-text strong {
    color: var(--sc-yellow);
    font-weight: 700;
}

/* ============================================
   PRICING
   ============================================ */
.tk-pricing {
    background: linear-gradient(180deg, var(--sc-dark-mid) 0%, var(--sc-dark) 100%);
}

.tk-price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 720px;
    margin: 0 auto;
}

.tk-price-card {
    position: relative;
    background: var(--sc-dark-mid);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    color: var(--sc-cream);
    transition: var(--sc-transition);
}

.tk-price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sc-shadow-lg);
}

.tk-price-card--featured {
    border-color: var(--sc-yellow);
    background:
        linear-gradient(180deg, rgba(244, 208, 63, 0.08) 0%, transparent 100%),
        var(--sc-dark-mid);
    box-shadow: 0 8px 24px var(--tk-red-glow);
}

.tk-price-badge {
    display: inline-block;
    background: var(--sc-yellow);
    color: var(--sc-dark);
    font-family: var(--sc-font-display);
    font-size: 0.95rem;
    letter-spacing: 2px;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.tk-price-badge--muted {
    background: rgba(255, 255, 255, 0.15);
    color: var(--sc-cream);
}

.tk-price-amount {
    font-family: var(--sc-font-display);
    font-size: 4.5rem;
    line-height: 1;
    color: var(--sc-white);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.tk-price-currency {
    font-size: 2.25rem;
    vertical-align: super;
    margin-right: 0.15rem;
    color: var(--sc-yellow);
}

.tk-price-window {
    font-size: 0.95rem;
    color: rgba(245, 243, 240, 0.7);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.tk-price-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
}

.tk-price-list li {
    font-size: 0.9rem;
    color: rgba(245, 243, 240, 0.85);
    padding: 0.35rem 0 0.35rem 1.4rem;
    position: relative;
}

.tk-price-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--sc-yellow);
    font-weight: 700;
}

.tk-deadline {
    text-align: center;
    margin-top: 1.75rem;
    color: var(--sc-yellow);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* ============================================
   HOW TO PAY
   ============================================ */
.tk-pay {
    background: linear-gradient(180deg, var(--sc-dark) 0%, var(--sc-dark-mid) 100%);
}

.tk-pay .sc-payment-options {
    max-width: 720px;
    margin: 0 auto 1rem;
}

.tk-pay .sc-qr-section img {
    cursor: zoom-in;
    transition: var(--sc-transition);
}

.tk-pay .sc-qr-section img:hover {
    transform: scale(1.03);
    box-shadow: var(--sc-shadow-md);
}

.tk-pay-note {
    text-align: center;
    color: rgba(245, 243, 240, 0.7);
    font-size: 0.9rem;
    margin-top: 1.25rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   HOW TO BUY
   ============================================ */
.tk-buy {
    background: linear-gradient(180deg, var(--sc-dark-mid) 0%, #1a0a0a 100%);
}

.tk-buy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 720px;
    margin: 0 auto;
}

.tk-buy-card {
    background: var(--sc-white);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--sc-shadow-md);
    transition: var(--sc-transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tk-buy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sc-shadow-lg);
}

.tk-buy-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tk-red) 0%, var(--tk-red-dark) 100%);
    color: var(--sc-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.tk-buy-title {
    font-family: var(--sc-font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--sc-teal-dark);
    margin-bottom: 0.5rem;
}

.tk-buy-desc {
    color: var(--sc-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.tk-buy-btn {
    width: 100%;
    font-size: 1rem;
    padding: 0.85rem 1.5rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .tk-hero-title {
        font-size: 3.75rem;
        letter-spacing: 5px;
    }

    .tk-hero-title-emoji {
        font-size: 2.5rem;
    }

    .tk-hero-tagline {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }

    .tk-price-grid,
    .tk-buy-grid {
        grid-template-columns: 1fr;
    }

    .tk-price-amount {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .tk-hero-content {
        padding: 5rem 1.25rem 3rem;
    }

    .tk-hero-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .tk-hero-poster-wrap {
        max-width: 280px;
    }

    .tk-hero-meta {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
}
