/* ============================================================================
   WOWTixs Events Theme  (events.wowtixs.com)
   Aesthetic: "stage-lights electric" - venue-dark hero swept by the brand's
   electric cyan beam, white ticket-stub event cards with perforated edges.
   Brand tokens lifted from www.wowtixs.com: cyan #06b5ca CTAs (4px radius,
   white text), charcoal #1d2023 titles, Sofia Pro body (Sofia Sans here).
   Copyright 2005-Present, ITS MY SEAT INC.
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans:ital,wght@0,400;0,600;0,800;0,900;1,400&display=swap');

:root {
    --wt-cyan:        #06b5ca;
    --wt-cyan-bright: #07d9f2;
    --wt-cyan-deep:   #0592a3;
    --wt-ink:         #1d2023;
    --wt-ink-soft:    #50555c;
    --wt-body:        #494949;
    --wt-paper:       #ffffff;
    --wt-haze:        #f2f5f6;
    --wt-line:        #e2ebf2;
    --wt-amber:       #ffa64d;
    --wt-red:         #ff4d4d;
    --wt-radius:      4px;
    --wt-font:        'Sofia Sans', 'Sofia Pro', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--wt-font);
    color: var(--wt-body);
    background: var(--wt-paper);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================ Navigation ============================ */

.wt-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 5vw;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--wt-line);
}

.wt-nav-logo img {
    height: 46px;
    width: auto;
}

.wt-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.wt-nav-links a {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--wt-ink-soft);
    padding: 6px 2px;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.wt-nav-links a:hover { color: var(--wt-ink); }

.wt-nav-links a.active {
    color: var(--wt-ink);
    border-bottom-color: var(--wt-cyan);
}

.wt-nav-links a.wt-nav-cta {
    background: var(--wt-cyan);
    color: #fff;
    padding: 10px 22px;
    border-radius: var(--wt-radius);
    border-bottom: none;
    transition: background 0.15s ease, transform 0.15s ease;
}

.wt-nav-links a.wt-nav-cta:hover {
    background: var(--wt-cyan-bright);
    transform: translateY(-1px);
}

/* Hamburger - mobile only */
.wt-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.wt-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--wt-ink);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.wt-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.wt-hamburger.open span:nth-child(2) { opacity: 0; }
.wt-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================ Hero ============================ */

.wt-hero {
    position: relative;
    background: var(--wt-ink);
    color: #fff;
    padding: clamp(80px, 12vw, 150px) 5vw clamp(90px, 13vw, 170px);
    text-align: center;
    overflow: hidden;
}

/* the cyan stage beam - a diagonal sweep of light */
.wt-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    width: 130vw;
    height: 180%;
    transform: translateX(-50%) rotate(-14deg);
    background:
        radial-gradient(ellipse 46% 34% at 30% 42%, rgba(6, 181, 202, 0.34), transparent 70%),
        radial-gradient(ellipse 34% 26% at 72% 30%, rgba(7, 217, 242, 0.18), transparent 70%);
    pointer-events: none;
}

/* faint crowd-noise grain */
.wt-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

.wt-hero > * { position: relative; z-index: 1; }

.wt-hero-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--wt-cyan-bright);
    margin-bottom: 26px;
    animation: wt-rise 0.7s ease both;
}

.wt-hero h1 {
    font-size: clamp(44px, 7.5vw, 92px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.015em;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: wt-rise 0.7s 0.1s ease both;
}

.wt-hero h1 .wt-glow {
    color: var(--wt-cyan-bright);
    text-shadow: 0 0 34px rgba(7, 217, 242, 0.55);
}

.wt-hero-tagline {
    max-width: 560px;
    margin: 0 auto 40px;
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    animation: wt-rise 0.7s 0.2s ease both;
}

.wt-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--wt-cyan);
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 17px 38px;
    border-radius: var(--wt-radius);
    box-shadow: 0 8px 30px rgba(6, 181, 202, 0.45);
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    animation: wt-rise 0.7s 0.3s ease both;
}

.wt-hero-cta:hover {
    background: var(--wt-cyan-bright);
    transform: translateY(-2px);
    box-shadow: 0 12px 38px rgba(7, 217, 242, 0.55);
}

.wt-hero-cta .arrow { transition: transform 0.2s ease; }
.wt-hero-cta:hover .arrow { transform: translateY(3px); }

/* angled cut between hero and events section */
.wt-hero-slice {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: clamp(38px, 5vw, 70px);
    background: var(--wt-haze);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
    z-index: 1;
}

/* ============================ Events ============================ */

.wt-events {
    background: var(--wt-haze);
    padding: clamp(56px, 7vw, 96px) 5vw clamp(80px, 9vw, 130px);
}

.wt-events-header {
    max-width: 1180px;
    margin: 0 auto clamp(36px, 4.5vw, 60px);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.wt-events-header h2 {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--wt-ink);
}

.wt-events-header h2::after {
    content: '';
    display: block;
    width: 64px;
    height: 5px;
    margin-top: 10px;
    background: var(--wt-cyan);
    border-radius: 3px;
}

.wt-events-header p {
    font-size: 16px;
    color: var(--wt-ink-soft);
}

.wt-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* ------------- Ticket-stub card ------------- */

.wt-card {
    display: flex;
    flex-direction: column;
    background: var(--wt-paper);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(29, 32, 35, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    animation: wt-rise 0.6s ease both;
}

.wt-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(6, 181, 202, 0.22);
}

.wt-card-img {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--wt-ink);
    overflow: hidden;
}

.wt-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wt-card:hover .wt-card-img img { transform: scale(1.05); }

.wt-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    padding: 6px 12px;
    border-radius: var(--wt-radius);
}

.wt-badge-sold    { background: var(--wt-ink); }
.wt-badge-urgent  { background: var(--wt-red); }
.wt-badge-limited { background: var(--wt-amber); }

.wt-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 24px 18px;
}

.wt-card-date {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wt-cyan-deep);
    margin-bottom: 10px;
}

.wt-card-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--wt-ink);
    margin-bottom: 6px;
}

.wt-card-subtitle {
    font-size: 15px;
    color: var(--wt-ink-soft);
    margin-bottom: 6px;
}

.wt-card-venue {
    font-size: 14px;
    color: var(--wt-ink-soft);
    margin-top: auto;
    padding-top: 12px;
}

/* perforated tear-line between body and stub */
.wt-card-stub {
    position: relative;
    padding: 16px 24px 20px;
    border-top: 2px dashed var(--wt-line);
}

.wt-card-stub::before,
.wt-card-stub::after {
    content: '';
    position: absolute;
    top: -9px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--wt-haze);
    box-shadow: inset 0 1px 3px rgba(29, 32, 35, 0.09);
}

.wt-card-stub::before { left: -8px; }
.wt-card-stub::after  { right: -8px; }

.wt-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--wt-cyan);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 13px 18px;
    border-radius: var(--wt-radius);
    transition: background 0.15s ease;
}

.wt-card:hover .wt-card-cta { background: var(--wt-cyan-bright); }

.wt-card-cta-arrow { transition: transform 0.2s ease; }
.wt-card:hover .wt-card-cta-arrow { transform: translateX(4px); }

/* ------------- Empty state ------------- */

.wt-empty {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    background: var(--wt-paper);
    border: 2px dashed var(--wt-line);
    border-radius: 10px;
    padding: 70px 40px;
    font-size: 18px;
    color: var(--wt-ink-soft);
}

/* ============================ Footer ============================ */

.wt-footer {
    background: var(--wt-ink);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 56px 5vw 44px;
}

.wt-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 30px;
    list-style: none;
    margin-bottom: 26px;
}

.wt-footer-links a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.15s ease;
}

.wt-footer-links a:hover { color: var(--wt-cyan-bright); }

.wt-footer-copy {
    font-size: 13px;
    line-height: 1.7;
}

.wt-footer-copy .wt-division {
    color: rgba(255, 255, 255, 0.42);
}

.wt-footer-powered {
    margin-top: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.wt-footer-powered a { color: rgba(255, 255, 255, 0.55); }

/* ============================ Motion ============================ */

@keyframes wt-rise {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ============================ Mobile ============================ */

@media (max-width: 820px) {
    .wt-hamburger { display: flex; }

    .wt-nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        border-bottom: 1px solid var(--wt-line);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .wt-nav-links.open { max-height: 400px; }

    .wt-nav-links li { border-top: 1px solid var(--wt-line); }

    .wt-nav-links a {
        display: block;
        padding: 15px 5vw;
        border-bottom: none;
    }

    .wt-nav-links a.wt-nav-cta {
        margin: 12px 5vw 16px;
        text-align: center;
    }

    .wt-grid { grid-template-columns: 1fr; }
}
