/* =========================
   TWNTY7 - "THE HYPE EXPERIENCE"
   High-energy youth club for 18-30 crowd
   Typography: Impact/Oswald Black (display) + DM Sans/Inter (body)
   Brand Guidelines 2026
========================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=DM+Sans:wght@400;500;600&family=Inter:wght@400;500&display=swap');

.coco-venue-page--twnty7 {
    /* Primary Colours */
    --coco-accent: #FF3D00;            /* Electric Red - signature accent */
    --coco-bg: #111111;                /* Pitch Black */
    --coco-bg-secondary: #1E1E1E;      /* Dark Grey */
    --coco-text: #FFFFFF;              /* Pure White */
    
    /* Accent Colours */
    --coco-accent-secondary: #FF006E;  /* Neon Pink */
    --coco-accent-tertiary: #6B21A8;   /* Vivid Purple */
    
    /* Accent variations */
    --coco-accent-dim: rgba(255, 61, 0, 0.3);
    --coco-accent-border: rgba(255, 61, 0, 0.5);
    --coco-card-bg: #111111;
    
    /* Typography */
    --coco-font-primary: 'DM Sans', 'Inter', sans-serif;
    --coco-font-display: 'Oswald', Impact, sans-serif;
    
    /* Brand Gradients (Electric Red to Neon Pink, or to Vivid Purple) */
    --coco-gradient: linear-gradient(135deg, #FF3D00 0%, #FF006E 100%);
    --coco-gradient-alt: linear-gradient(135deg, #FF3D00 0%, #6B21A8 100%);
}

/* =========================
   TYPE HIERARCHY (Brand Guidelines)
   H1: Impact/Oswald Black, uppercase, 40-64pt, white or Electric Red
   H2: Oswald Bold, uppercase, 28-36pt
   H3: DM Sans SemiBold, uppercase, 14-20pt, letter-spacing +3%
   Body: DM Sans Regular, 12-16pt
========================== */

/* H1 - Event Titles / Hero - Heavy, condensed, impossible to ignore */
.coco-venue-page--twnty7 .coco-venue-title {
    font-family: var(--coco-font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: clamp(40px, 10vw, 64px);
}

.coco-venue-page--twnty7 .coco-venue-title--gradient {
    background: var(--coco-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* H2 - Section Headers */
.coco-venue-page--twnty7 .coco-venue-section-title {
    font-family: var(--coco-font-display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(28px, 5vw, 36px);
    letter-spacing: 0.04em;
}

/* H3 - Details */
.coco-venue-page--twnty7 h3,
.coco-venue-page--twnty7 .squad-content h2 {
    font-family: var(--coco-font-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: clamp(14px, 2vw, 20px);
    letter-spacing: 0.03em;
}

/* Body text */
.coco-venue-page--twnty7 p,
.coco-venue-page--twnty7 .coco-venue-sub {
    font-family: var(--coco-font-primary);
    font-weight: 400;
    font-size: clamp(12px, 1.5vw, 16px);
}

/* Pulsing dot animation - Electric Red with neon glow */
.coco-venue-page--twnty7 .coco-venue-hero-tag .dot-pulse {
    background: var(--coco-accent);
    animation: pulse-neon 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px #FF3D00;
}

@keyframes pulse-neon {
    0%, 100% { 
        opacity: 1; 
        box-shadow: 0 0 10px #FF3D00;
    }
    50% { 
        opacity: 0.6; 
        box-shadow: 0 0 20px #FF3D00, 0 0 40px #FF3D00;
    }
}

/* Hero gradient overlay - Electric Red and Neon Pink accents */
.coco-venue-page--twnty7 .coco-venue-hero::before {
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(255, 61, 0, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 0, 110, 0.1) 0%, transparent 40%),
        radial-gradient(circle at top, rgba(0,0,0,.2) 0, rgba(0,0,0,.8) 50%, #111111 100%);
}

/* =========================
   VIBE CHECK SECTION
========================== */
.coco-venue-vibe-check {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 50px 40px;
    background: linear-gradient(180deg, var(--coco-bg) 0%, var(--coco-bg-secondary) 100%);
    border-bottom: 1px solid rgba(255, 61, 0, 0.1);
}

.vibe-stat {
    text-align: center;
}

.vibe-stat .vibe-number {
    display: block;
    font-family: var(--coco-font-display);
    font-size: 36px;
    font-weight: 700;
    background: var(--coco-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vibe-stat .vibe-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.6;
    margin-top: 4px;
    display: block;
}

/* =========================
   SQUAD SECTION
========================== */
.coco-venue-squad {
    display: flex;
    padding: 100px 80px;
    gap: 60px;
    align-items: center;
    background: var(--coco-bg-secondary);
}

.squad-content {
    flex: 1;
}

.squad-tag {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--coco-accent);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.squad-content h2 {
    font-family: var(--coco-font-display);
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--coco-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.squad-content p {
    font-size: 17px;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 30px;
}

.squad-features {
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
}

.squad-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 10px 16px;
    background: rgba(255, 61, 0, 0.1);
    border-radius: 999px;
    border: 1px solid rgba(255, 61, 0, 0.2);
}

.squad-image {
    width: 45%;
    min-height: 400px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 80px rgba(255, 61, 0, 0.15);
    position: relative;
}

.squad-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 1px solid rgba(255, 61, 0, 0.3);
}

/* =========================
   CONTENT WALL
========================== */
.coco-venue-content-wall {
    padding: 80px;
    background: var(--coco-bg);
    text-align: center;
}

.content-wall-subtitle {
    font-size: 14px;
    opacity: 0.6;
    margin-bottom: 40px;
}

.content-wall-subtitle strong {
    color: #FF3D00;
    opacity: 1;
}

/* TikTok embed grid - no plugin dependency */
.coco-tiktok-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.coco-tiktok-embed {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    aspect-ratio: 9 / 16;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.coco-tiktok-embed:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 61, 0, 0.3);
}

.coco-tiktok-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

.content-wall-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link.tiktok {
    background: linear-gradient(135deg, #ff0050 0%, #00f2ea 100%);
    color: #000;
}

.social-link.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.social-link:hover {
    transform: scale(1.05);
}

/* =========================
   DJ SECTION
========================== */
.coco-venue-dj-section {
    padding: 80px;
    background: var(--coco-bg-secondary);
    text-align: center;
}

.dj-subtitle {
    font-size: 16px;
    opacity: 0.7;
    margin-bottom: 30px;
}

.dj-genres {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.genre-tag {
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 61, 0, 0.15) 0%, rgba(255, 0, 110, 0.15) 100%);
    border: 1px solid rgba(255, 61, 0, 0.3);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.genre-tag:hover {
    background: linear-gradient(135deg, rgba(255, 61, 0, 0.3) 0%, rgba(255, 0, 110, 0.3) 100%);
    transform: translateY(-2px);
}

/* =========================
   EVENT BADGES
========================== */
.coco-venue-page--twnty7 .event-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--coco-accent);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 2;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 61, 0, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(255, 61, 0, 0); }
}

.event-actions {
    display: flex;
    gap: 8px;
}

.event-actions button {
    flex: 1;
}

.event-actions .btn-secondary {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

/* Button styling - Electric Red to Neon Pink gradient */
.coco-venue-page--twnty7 .coco-venue-btn-primary {
    background: var(--coco-gradient);
    color: #FFFFFF;
    font-family: var(--coco-font-primary);
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.coco-venue-page--twnty7 .coco-venue-btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.coco-venue-page--twnty7 .coco-venue-btn-primary:hover::before {
    left: 100%;
}

.coco-venue-page--twnty7 .coco-venue-btn-primary:hover {
    box-shadow: 0 10px 40px rgba(255, 61, 0, 0.4);
}

.coco-venue-page--twnty7 .coco-venue-btn-outline {
    border-color: var(--coco-accent-border);
    font-family: var(--coco-font-primary);
}

.coco-venue-page--twnty7 .coco-venue-btn-outline:hover {
    background: rgba(255, 61, 0, 0.15);
    border-color: var(--coco-accent);
}

/* Event cards */
.coco-venue-page--twnty7 .coco-venue-event-card {
    border: 1px solid rgba(255, 61, 0, 0.1);
    background: var(--coco-bg);
    transition: all 0.4s ease;
}

.coco-venue-page--twnty7 .coco-venue-event-card:hover {
    border-color: rgba(255, 61, 0, 0.4);
    box-shadow: 0 25px 70px rgba(255, 61, 0, 0.2);
}

.coco-venue-page--twnty7 .coco-venue-event-card h3 {
    font-family: var(--coco-font-display);
    font-weight: 700;
    text-transform: uppercase;
}

.coco-venue-page--twnty7 .coco-venue-event-card button {
    background: var(--coco-gradient);
    color: #FFFFFF;
}

/* Nav pill */
.coco-venue-page--twnty7 .coco-venue-nav .pill:hover {
    background: var(--coco-accent);
    border-color: var(--coco-accent);
    color: #FFFFFF;
}

/* Menu drawer */
.coco-venue-page--twnty7 .coco-menu-drawer {
    border-left-color: rgba(255, 61, 0, 0.3);
}

.coco-venue-page--twnty7 .coco-menu-item {
    border-bottom-color: rgba(255, 61, 0, 0.2);
}

.coco-venue-page--twnty7 .coco-menu-bullet {
    border-color: rgba(255, 61, 0, 0.5);
}

.coco-venue-page--twnty7 .coco-menu-bullet::before {
    background: var(--coco-accent);
}

/* FAQ styling */
.coco-venue-page--twnty7 .coco-venue-faq-item {
    border-bottom-color: rgba(255, 61, 0, 0.1);
}

.coco-venue-page--twnty7 .coco-venue-faq-item strong {
    font-family: var(--coco-font-primary);
    font-weight: 600;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .coco-venue-vibe-check {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .vibe-stat {
        width: calc(50% - 15px);
    }
    
    .coco-venue-squad {
        flex-direction: column;
        padding: 60px 20px;
    }
    
    .squad-image {
        width: 100%;
        min-height: 300px;
    }
    
    .squad-features {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .coco-venue-content-wall,
    .coco-venue-dj-section {
        padding: 40px 20px;
    }

    .coco-tiktok-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .coco-tiktok-embed--hide-tablet {
        display: none;
    }

    .content-wall-cta {
        flex-direction: column;
    }
    
    .social-link {
        justify-content: center;
    }
}

/* Small phones - stack to single column */
@media (max-width: 480px) {
    .coco-tiktok-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .coco-tiktok-embed {
        aspect-ratio: 9 / 16;
    }
}
