/*
Theme Name: Big Fuss Band Theme
Theme URI: https://example.com/
Author: Your Matt Harabin
Author URI: https://example.com/
Description: Dark band/artist theme modeled on The Big Fuss NJ, built to work with Modern Events Calendar.
Version: 1.4
Text Domain: big-fuss-band
*/

/* CHANGELOG - Feb 2026
- Unified Interior Header styles to match Shows page branding (3.5rem H1).
- Forced Global Customizer Image as header background for brand consistency.
- Standardized header height to 210px-250px window via padding and min-height.
- Fixed background-position conflicts to ensure subject-centering.
*/

html, body {
    margin: 0;
    padding: 0;
}

body {
    background: #121212;
    color: #fff;
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #4DABFF;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0;
}

/** * INTERIOR PAGE SPECIFIC H2s
 * Targets generic pages while excluding the home page template 
 */
.page:not(.home) .site-content h2 {
    color: #ffffff;
    font-family: 'Oswald', sans-serif; /* Ensuring brand font consistency */
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 50px 0 25px;
    border-bottom: 2px solid #4DABFF; /* The accent underline from /shows/ */
    display: inline-block; /* Crucial: makes the border only as wide as the text */
}

/**
 * Allowing WordPress Editor Alignment to override our default inline-block behavior
 */
.page:not(.home) .site-content h2.has-text-align-center {
    display: table; /* Works like inline-block for the border but allows centering */
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Clearfix to ensure content follows below the inline-block heading */
.page:not(.home) .site-content h2::after {
    content: "";
    display: block;
}

/** * MOBILE OVERRIDES 
 */
@media (max-width: 768px) {
    .page:not(.home) .site-content h2 {
        font-size: 1.5rem;
        margin: 30px 0 5px;
    }
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header / Nav */

.site-header {
    border-bottom: 1px solid #222;
    padding: 16px 0;
    background: #121212;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-branding {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.site-description {
    font-size: 0.75rem;
    opacity: 0.7;
}

.primary-nav {
    flex: 1;
}

.primary-menu {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu li a {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}

.primary-menu li.current-menu-item a,
.primary-menu li a:hover,
.primary-menu li a:focus {
    text-decoration: none !important;
    border-bottom-color: #4DABFF;
    color: #4DABFF;
}

.primary-menu-container .current-menu-item > a,
#primary-menu .current-menu-item > a, .primary-menu li.current-menu-item a {
    font-weight: 800 !important; /* Adjust weight as needed */
    text-decoration: none !important; /* Ensures no double underline on active */
}

/* ==========================================================================
   THE BIG FUSS - UPDATED TOP BAR & HEADER STYLING
   ========================================================================== */
   
/* 1. TOP BAR SECTION - "Floating Box" Style */
.site-top-bar {
    background-color: #121212; /* Brand Background */
    border-bottom: 1px solid #333;    /* Subtle border for the boxed look */
    border-radius: 4px;        /* Matches theme UI element radius */
}

.top-bar-inner {
    display: flex;
    justify-content: flex-end; /* Pushes Book Us + Socials to the far right */
    align-items: center;
    padding: 8px 15px;         /* Internal spacing */
}

/* 2. SOCIAL BAR & BUTTON GROUPING */
.social-bar-top {
    display: flex;
    align-items: center;       /* Perfectly centers button and icons vertically */
    gap: 15px;                 /* Consistent spacing between all items */
}

/* 3. REFINED BOOK US BUTTON */
.top-bar-btn {
    background-color: #4DABFF; /* Primary Accent Blue */
    color: #121212 !important; /* High contrast for accessibility */
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 0.6rem !important;         /* Requested smaller font size */
    font-weight: 800;          /* Extra bold for legibility at small scale */
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    line-height: 1.2;
    display: inline-block;
}

.top-bar-btn:hover {
    background-color: #FFFFFF;
    color: #4DABFF !important;
    box-shadow: 0 0 10px rgba(77, 171, 255, 0.5);
}

/* 4. SOCIAL ICON STYLING */
.social-bar-top a {
    color: #FFFFFF;
    font-size: 1rem;           /* Scaled to match the 0.6rem button */
    transition: color 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.social-bar-top a:hover {
    color: #4DABFF;            /* Electric Blue glow on hover */
}

/* 5. MAIN HEADER ALIGNMENT */
.site-header-inner {
    display: flex;
    justify-content: space-between; /* Logo Left | Nav Right */
    align-items: center;
    padding: 10px 20px;            /* Provides breathing room below the top bar */
}

/* 6. MOBILE HANDLING */
@media (max-width: 768px) {
    /* Hide top bar on mobile to prioritize Hero/Logo space */
    .site-top-bar {
        display: none;
    }

    /* Ensure main header maintains spacing on small screens */
    .site-header-inner {
        padding: 10px 15px;
    }
}

/* 2. MAIN HEADER ALIGNMENT */
.site-header-inner {
    display: flex;
    justify-content: space-between; /* Keeps Logo Left and Nav Right */
    align-items: center;
    padding: 0;
}

    /* Mobile handling: Hide top bar to save vertical space, move to menu if needed */
    @media (max-width: 768px) {
        .site-top-bar {
            display: none;
        }
    }
/* Desktop Logo */
.site-branding img.custom-logo {
    height: 60px !important; /* Your new preferred height */
    width: auto;
    display: block;
    transition: height 0.3s ease; /* Smooth transition if window is resized */
}

/* Mobile Logo Ratio */
@media (max-width: 768px) {
    .site-branding img.custom-logo {
        height: 48px !important; /* Approx 80% of desktop size */
    }
    
    /* Ensure the hamburger icon aligns vertically with the 48px logo */
    .menu-toggle {
        top: 50%;
        transform: translateY(-50%);
        margin-top: 0; /* Clear previous fixed top spacing */
    }
}

/* Optional: Ensure the branding container doesn't add extra padding */
.site-branding {
    line-height: 0;
}

/* Layout */

/* .site-content {
    padding-bottom: 60px;
} */

.home-section,
.page-section {
    padding: 60px 0;
}

.section-title {
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 24px;
}


/* Home: Hero / Jumbotron */

.home-hero {
    position: relative;
    background: #121212;
    border-bottom: 1px solid #222;
    /* Bootstrap-like best practice: full-width, responsive height */
    min-height: clamp(380px, 70vh, 820px);
    /* Prefer small viewport unit on mobile where supported (prevents address bar jump) */
    min-height: clamp(380px, 70svh, 820px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.home-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.home-hero__media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.home-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
}

.home-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, var(--hero-overlay, 0.45));
}

.home-hero__content {
    position: relative;
    z-index: 2;
    padding: clamp(56px, 8vh, 120px) 0;
    text-align: center;
    max-width: 900px;
}

.home-hero__content > *:last-child {
    margin-bottom: 0;
}

.home-hero__content h1,
.home-hero__content h2 {
    font-size: clamp(2.0rem, 4vw, 3.2rem);
    line-height: 1.05;
}

.home-hero__content p {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    opacity: 0.95;
}

/* Optional utility classes you can use in the Customizer hero HTML */

.home-hero__content .hero-card {
    display: inline-block;
    padding: 22px 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(2px);
}

.home-hero__content a.hero-btn {
    display: inline-block;
    padding: 10px 26px;
    background: #ffffff;
    color: #121212;
    border: none;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
}

.home-hero__content a.hero-btn:hover,
.home-hero__content a.hero-btn:focus {
    background: #f0f0f0;
    text-decoration: none;
}

@media (max-width: 768px) {
    .home-hero {
        min-height: clamp(320px, 70vh, 640px);
        min-height: clamp(320px, 70svh, 640px);
    }

    .home-hero__content {
        padding: 56px 0;
        text-align: left;
    }

    .home-hero__content .hero-card {
        width: 100%;
    }
}

/* Home: Coming Up Events */

.home-events {
    border-bottom: 1px solid #222;
}

.home-events .section-title {
    margin-bottom: 8px;
}

.home-events .home-events-inner {
    margin-top: 16px;
}

.home-events .home-events-more {
    margin-top: 12px;
    text-align: right;
}

.home-events .home-events-more a {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
}

/* MEC wrappers – scoped to home events so other views can use defaults */

.home-events .mec-wrap {
    font-size: 0.95rem;
}

/* Generic list/card layout for MEC list-style shortcodes */

.home-events .mec-wrap .mec-event-article {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) auto;
    column-gap: 24px;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid #222;
}

.home-events .mec-wrap .mec-event-article:first-child {
    border-top: none;
}

/* Date block */

.home-events .mec-wrap .mec-event-date {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.9rem;
    line-height: 1.2;
}

/* Some skins split date into pieces like .event-f (month) and .event-da (day) */
.home-events .mec-wrap .mec-event-date .event-f,
.home-events .mec-wrap .mec-event-date .event-da {
    display: block;
}

/* Time & details */

.home-events .mec-wrap .mec-time-details {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-top: 6px;
}

.home-events .mec-wrap .mec-event-detail {
    font-size: 0.9rem;
}

/* Title + venue */

.home-events .mec-wrap .mec-event-title a,
.home-events .mec-wrap .mec-event-title {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.9rem;
}

.home-events .mec-wrap .mec-event-loc-place {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 4px;
}

/* View Detail / buttons */

.home-events .mec-wrap .mec-event-footer {
    text-align: right;
}

.home-events .mec-wrap .mec-more-info,
.home-events .mec-wrap .mec-booking-button,
.home-events .mec-wrap a.mec-more-info {
    display: inline-block;
    padding: 6px 18px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 0;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.home-events .mec-wrap .mec-more-info:hover,
.home-events .mec-wrap .mec-booking-button:hover,
.home-events .mec-wrap a.mec-more-info:hover {
    background: #fff;
    color: #121212;
}

/* "No event found!" message */

.home-events .mec-wrap *[class*="no-event"],
.home-events .mec-wrap *[class*="no_event"],
.home-events .mec-wrap *[class*="not-found"] {
    padding: 16px 0;
    font-size: 0.85rem;
    opacity: 0.7;
}

.view-event-btn {
    background: #4DABFF; color: #1A202C; padding: 12px 24px; border-radius: 4px;
    text-decoration: none !important; font-weight: bold; text-transform: uppercase; font-size: 0.8rem;
    transition: 0.3s;

}
 .view-event-btn:hover { 
    background: #fff; color: #1A202C; 
}

/* Home: Gallery */

.home-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}

.home-gallery .gallery-item {
    overflow: hidden;
    border-radius: 4px;
}

.home-gallery .gallery-item img {
    display: block;
    transition: transform 0.3s ease;
}

.home-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

/* Home: Booking */

.home-booking {
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.home-booking .booking-inner {
    max-width: 700px;
}

/* Simple styling for generic form fields (for plugin forms too) */

.home-booking input[type="text"],
.home-booking input[type="email"],
.home-booking input[type="tel"],
.home-booking textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 12px;
    border-radius: 0;
    border: 1px solid #444;
    background: #050505;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
}

.home-booking button,
.home-booking input[type="submit"],
.home-booking .wpcf7-submit {
    display: inline-block;
    background: #4DABFF; 
    color: #1A202C; 
    padding: 12px 24px; 
    border-radius: 4px;
    text-decoration: none !important; 
    font-weight: bold; 
    font-size: 0.8rem;
    transition: 0.3s;
    text-transform: uppercase;
    cursor: pointer;
}

.home-booking button:hover,
.home-booking input[type="submit"]:hover,
.home-booking .wpcf7-submit:hover {
    background: #f0f0f0;
}

/* Dark overlay to make the white text "pop" against the image */
.page-header-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 50% black overlay */
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2; /* Sits above the overlay */
}

/* --- CONFLICT 1 H1 DISABLED --- */
/*
.page-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2px;
}
*/

/* Mobile Tweaks */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }
    .page-title {
        font-size: 2.5rem;
    }
}

/* --- Hamburger Icon --- */
.menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    position: absolute;
    right: 20px;
    top: 20px;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: #4DABFF; /* Your Blue */
    transition: 0.3s;
}

/* --- Slide-out Mobile Menu --- */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    /* Target your existing menu container */
    .primary-menu-container {
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen to the right */
        width: 80%; /* Width of the slide-out */
        height: 100vh;
        background: #121212;
        z-index: 1000;
        transition: right 0.4s ease-in-out;
        display: flex;
        flex-direction: column;
        padding: 100px 40px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    /* When menu is active */
    .primary-menu-container.is-active {
        right: 0;
    }

    .primary-menu-container ul {
        flex-direction: column;
        gap: 30px;
        list-style: none;
        padding: 0;
    }

    .primary-menu-container ul li a {
        font-size: 1.5rem;
        text-transform: uppercase;
        color: #fff;
        text-decoration: none;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open { overflow: hidden; }
}

/* Morph Hamburger into an X */
.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Ensure the header container allows for absolute positioning of toggle */
.site-header-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Page header / interior layout */
.page-intro {
    margin-top: 12px;
    opacity: 0.9;
}

.page-content,
.interior-content,
.shows-calendar,
.gallery-main {
    padding: 40px 0;
}

.interior-content .container,
.shows-calendar .container,
.gallery-main .container {
    max-width: 800px;
}

/* --- FINAL GLOBAL INTERIOR PAGE HEADERS --- */

.page-header {
    position: relative;
    padding: 70px 0 !important; /* Adjusts height to your 210-250px preference */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 230px !important;
    width: 100%;
    overflow: hidden;

    /* CRITICAL ALIGNMENT FIXES */
    text-align: center !important;
    background-color: #1a1a1a !important;
    background-size: cover !important;
    background-position: top center !important; /* Forces the subject to the middle */
    background-repeat: no-repeat !important;
}

.page-header.no-bg {
    background: linear-gradient(to bottom, #1a1a1a, #121212);
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.page-header .page-title { 
    position: relative;
    z-index: 2;
    font-size: 3.5rem !important; /* MATCH SHOWS H1 SIZE */
    text-transform: uppercase; 
    letter-spacing: 4px; 
    color: #ffffff; 
    margin: 0;
    font-weight: 700;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.7);
}

/* Main content area */
.interior-content {
    padding: 40px 0;
    line-height: 1.8;
    color: #cccccc;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header .page-title { 
        font-size: 2.2rem; 
        letter-spacing: 2px; 
    }
    .page-header { 
        padding: 80px 0; 
        min-height: 200px; 
    }
}

/* Gallery Template */

.gallery-main .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.gallery-main .gallery-item {
    overflow: hidden;
    border-radius: 4px;
}

/* Footer */

.site-footer {
    border-top: 1px solid #222;
    padding: 24px 0;
    font-size: 0.8rem;
    opacity: 0.7;
    text-align: center;
}

/* Responsive tweaks */

@media (max-width: 768px) {
    .site-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .primary-menu {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 12px;
    }

    .page-header {
        padding-top: 40px;
    }

    .home-section,
    .page-section {
        padding: 40px 0;
    }

    .home-events .mec-wrap .mec-event-article {
        grid-template-columns: 1fr;
        row-gap: 6px;
    }

    .home-events .mec-wrap .mec-event-footer {
        text-align: left;
    }
}

/* 1. Hide these by default on Desktop */
.mobile-only-socials {
    display: none;
}

/* 2. Mobile Specific Styling */
@media (max-width: 768px) {
    .mobile-only-socials {
        display: flex;
        justify-content: center;
        gap: 30px;
        padding: 30px 20px;
        margin-top: 20px;
        border-top: 1px solid #333; /* Separates menu links from icons */
    }

    .mobile-only-socials a {
        color: #4DABFF; /* Use the signature blue for mobile impact */
        font-size: 1.6rem; /* Larger touch targets for thumbs */
        text-decoration: none;
    }
}

/* GLOBAL CONTACT FORM 7 STYLING - THE BIG FUSS BRAND */

/* Center all CF7 forms and restrict width to match event containers */
.wpcf7 {
    max-width: 700px;
    margin: 0 auto;
}

/* Input & Textarea Styling */
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-textarea,
.wpcf7-form-control.wpcf7-select,
.wpcf7-form-control.wpcf7-date {
    background-color: rgba(26, 26, 26, 0.85) !important;
    color: #FFFFFF !important;
    border: 1px solid #333 !important;
    border-left: 5px solid #4DABFF !important;
    padding: 12px 15px !important;
    width: 100%;
    border-radius: 4px;
    font-family: inherit;
    margin-bottom: 15px;
}

/* Focus State */
.wpcf7-form-control:focus {
    outline: none;
    border-color: #4DABFF !important;
    background-color: #1a1a1a !important;
}

/* Submit Button Styling (Global Centering) */
.wpcf7-submit {
    background-color: #4DABFF !important;
    color: #121212 !important;
    padding: 15px 35px !important;
    border: none !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    /* Centering logic */
    display: block !important;
    margin: 20px auto !important;
    min-width: 200px;
}

.wpcf7-submit:hover {
    background-color: #FFFFFF !important;
    color: #4DABFF !important;
    box-shadow: 0 4px 15px rgba(77, 171, 255, 0.4);
}

/* Center the Turnstile Widget globally to match the button */
.wpcf7-form-control-wrap[data-name="turnstile"] {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 20px auto !important;
}

/* Label Styling */
.wpcf7-form label {
    display: block;
    color: #FFFFFF;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Error/Validation Messages */
.wpcf7-not-valid-tip {
    color: #ff4d4d !important;
    font-size: 0.85rem;
}

.wpcf7-response-output {
    border: 2px solid #4DABFF !important;
    color: #fff !important;
    margin-top: 20px !important;
    padding: 10px !important;
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .wpcf7-submit {
        width: 100%;
    }
}

/* ==========================================================================
   MEC CUSTOM CALENDAR PAGE
   ========================================================================== */

   /* PAGE-SPECIFIC SCOPED STYLES */
    .single-event-hero {
        position: relative; height: 450px; width: 100%;
        background-image: url('<?php echo esc_url( $hero_bg ); ?>');
        background-size: cover; background-position: top center; background-repeat: no-repeat;
    }
    .single-event-hero-overlay {
        position: absolute; top: 0; left: 0; width: 100%; height: 100%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.3) 40%, #121212 100%); z-index: 1;
    }

    .event-card-wrap {
        position: relative; z-index: 20; margin-top: -160px; padding-bottom: 80px;
    }

    /* THE EVENT CARD */
    .gig-card {
        background: #1a1a1a;
        border-left: 5px solid #4DABFF;
        border-radius: 8px;
        padding: 50px;
        box-shadow: 0 25px 50px rgba(0,0,0,0.8);
        max-width: 850px;
        margin: 0 auto;
        text-align: center;
    }

    .gig-card-title {
        color: #fff; font-size: 2.8rem; text-transform: uppercase; letter-spacing: 3px; margin: 0;
    }

    .gig-divider { border: 0; border-bottom: 1px solid #333; margin: 30px 0; }

    /* 2x2 INFO GRID */
    .gig-info-grid {
        display: grid; grid-template-columns: 1fr 1fr; gap: 25px 40px; text-align: left;
    }
    
    .gig-info-item {
        display: flex; align-items: flex-start; gap: 15px; color: #ccc; font-size: 1.1rem; line-height: 1.4;
    }
    .gig-icon { font-size: 1.4rem; line-height: 1; }
    
    .gig-ticket-link {
        color: #4DABFF; font-weight: bold; text-decoration: none; text-transform: uppercase; font-size: 0.9rem; margin-left: 10px;
    }
    .gig-ticket-link:hover { color: #fff; }

    /* PRIMARY CTA */
    .gig-main-cta {
        display: inline-block; width: 100%; max-width: 400px; font-size: 1.1rem; letter-spacing: 2px; padding: 18px 30px;
    }

    /* OPTIONAL DESCRIPTION */
    .gig-description {
        max-width: 850px; margin: 60px auto 0; color: #ccc; font-size: 1.1rem; line-height: 1.8;
    }
    .gig-description h3 {
        color: #4DABFF; text-transform: uppercase; letter-spacing: 2px; border-bottom: 1px solid #333; padding-bottom: 10px; margin-bottom: 20px;
    }

    /* MOBILE RESPONSIVE */
    @media (max-width: 768px) {
        .single-event-hero { height: 350px; }
        .event-card-wrap { margin-top: -100px; }
        .gig-card { padding: 30px 20px; }
        .gig-card-title { font-size: 2rem; }
        .gig-info-grid { grid-template-columns: 1fr; gap: 20px; }
    }