@font-face {
    font-family: 'Smart Sans Std';
    src: url("/static/fonts/SmartSansStd-Light.5c0aa6fb56ac.otf") format('opentype');
    font-weight: 300;
}
@font-face {
    font-family: 'Smart Sans Std';
    src: url("/static/fonts/SmartSansStd-Bold.33446f8fd4f7.otf") format('opentype');
    font-weight: 700;
}
@font-face {
    font-family: 'Montserrat';
    src: url("/static/fonts/Montserrat-Regular.38712903602f.ttf") format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Montserrat';
    src: url("/static/fonts/Montserrat-Medium.ee130b491bf1.ttf") format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Montserrat';
    src: url("/static/fonts/Montserrat-Bold.354dc625a35b.ttf") format('truetype');
    font-weight: 700;
}

html, body {
    overflow: auto !important;
    overflow-x: hidden !important;
}

body {
  scrollbar-width: none; 
  -ms-overflow-style: none; 
}
html{
    scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}


:root {
    --clr-background: #000000;
    --clr-text: #FFFFFF;
    --clr-border: #FFFFFF;
    --clr-yellow: #F5A61F;
    --clr-pink: #EB92AA;
    --clr-purple: #B091C3;
    --font-primary: 'Smart Sans Std', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --page-max: 1440px;
    --page-gutter: clamp(1rem, 5vw, 5rem); 
}

*, *::before, *::after {
    box-sizing: border-box;
    font-family: inherit;
}

html {
    font-family: var(--font-primary);
}

body {
    margin: 0;
    background-color: var(--clr-background);
    color: var(--clr-text);
    font-weight: 300;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

a {
    color: inherit;
    text-decoration: none;
}

main {
    flex: 1;
}

.container {
    width: 100%;
    /* max-width: 1440px; */
    max-width : calc(var(--page-max) + 2 * var(--page-gutter));
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}


/* HEADER FOR ABOUT */
.simple-header {
    padding-block: 2rem; text-align: center;
}
.simple-header-logo {
    height: 40px; width: auto; margin-inline: auto;
}

/* --- HEADER --- */
/* .site-header-main {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container, .simple-header  {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    justify-self : center;
    height: 30px;
    width: auto;
    display: block;
    margin: 0 auto;
    padding-left : 3rem;
}

.get-listed-btn-mobile {
    border: 1px solid white;
    padding: 0.4em 0.8em;
    font-size: 0.8rem;
    color: black;
    font-weight: bold;
    white-space: nowrap;
    transition: background-color 0.3s, color 0.3s;
    cursor : pointer;
}

.get-listed-btn-mobile:hover {
    background: white;
    color: black;
}

.highlight-yellow{
    color: var(--clr-yellow);
}


#broadway-highlight .highlight-yellow{
    font-size: 7rem !important;
}

.nav-left, .nav-right, .hide-on-mobile {
    display: none;
} */



/* =================================================== */
/* --- HEADER (Corrected for Mobile Logo Centering) --- */
/* =================================================== */

/* .site-header-main {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding : 1rem 1rem;
} */

.site-header-main {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-inline: 5.56%;
    display: flex;
    justify-content: space-between;
    line-height: 0.04em;
    padding-block: 0.31%;
    font-family: var(--font-primary);
}

@media(max-width :768px){
    .site-header-main {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding : 1rem 1rem;
    } 
}


/* This is the key change: Using Grid for perfect centering */
.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* 3 columns: Left, Center, Right */
    align-items: center;
    gap: 1rem;
    padding : 0 0 !important;
} 
/* This rule is for your other header type, it remains unchanged */
.simple-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Position the logo in the center column */
.logo {
    grid-column: 2;
    justify-self: center;
}
.logo img {
    height: 30px;
    width: auto;
    display: block;
    margin: 0 auto;
    padding-left: 0; /* Removed the padding that pushed it off-center */
}

/* NEW: Position the side elements within their grid columns */
.mobile-nav-toggle {
    justify-self: start; /* Pushes hamburger to the far left */
}
.get-listed-btn-mobile {
    justify-self: end; /* Pushes button to the far right */
}

.get-listed-btn-mobile {
    border: 1px solid white;
    padding: 0.4em 0.8em;
    font-size: 0.8rem;
    color: black; /* Changed to white text to match desktop */
    background: white; /* Changed to transparent background */
    font-weight: bold;
    white-space: nowrap;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.get-listed-btn-mobile:hover {
    background: white;
    color: black;
}

.highlight-yellow {
    color: var(--clr-yellow);
}

#broadway-highlight .highlight-yellow {
    font-size: 7rem !important;
}

/* This rule remains the same, hiding desktop nav on mobile */
.nav-left, .nav-right, .hide-on-mobile {
    display: none;
}


/* --- MOBILE NAVIGATION & HAMBURGER --- */



.primary-navigation[data-visible="true"] {
    transform: translateX(0%);
    visibility: visible;
}

.primary-navigation .nav-icon-link img {
    width: 28px;
    gap : 0.6rem !important;
}

.mobile-nav-divider {
    height: 1px;
    width: 80%;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0.5rem 0;
}

/* Default size (for desktop) */
.store-icon-img {
  all: unset;
  width: 12px !important;
  height: 12px !important;
  object-fit: contain;
  display: inline-block;
}


/* Mobile fix */
@media (max-width: 768px) {
  .store-icon-img {
    width: 12px !important;
    height: 12px !important;
    object-fit: contain;
    max-width: none;
    max-height: none;
    display: inline-block;
  }
}





/* 3rd sept header styles */

.body-no-scroll {
    overflow: hidden !important;
}



/* The main button container */
.mobile-nav-toggle {
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    width: 2.5em; 
    height: 2.5em;
    position: relative;
    z-index: 9999;
    transition: opacity 0.3s ease-in-out;
    /* Use flexbox to easily position and space the bars */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Aligns bars to the left */
    gap: 0.4em; /* This creates the even space between bars */
}

/* This rule hides the hamburger icon when the menu is open */
.mobile-nav-toggle[aria-expanded="true"] {
    opacity: 0;
    pointer-events: none;
}

/* This is a screen-reader-only text, it should remain hidden */
.mobile-nav-toggle .sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}

/* --- The 3 Bars --- */

/* Shared styles for all three bars */
.mobile-nav-toggle::before,
.mobile-nav-toggle .hamburger-bar,
.mobile-nav-toggle::after {
    content: ''; /* Required for ::before and ::after pseudo-elements */
    display: block;
    height: 4px; /* Thickness of each bar */
    background: white;
    border-radius: 2px; /* Gives the bars slightly rounded ends */
    transition: width 0.3s ease-in-out;
}

/* Individual widths for each bar */
.mobile-nav-toggle::before {
    width: 2em; /* Top bar (full width) */
}
.mobile-nav-toggle .hamburger-bar {
    width: 1.5em; /* Middle bar (shorter) */
}
.mobile-nav-toggle::after {
    width: 2em; /* Bottom bar (full width) */
}

/* Reset positioning since flexbox is handling it now */
.mobile-nav-toggle::before,
.mobile-nav-toggle::after {
    position: static;
    transform: none;
}
/* =================================================== */
/* --- Mobile Menu Social Icon Styles --- */
/* =================================================== */

.primary-navigation .mobile-socials-group {
    display: flex;
    flex-direction: column; /* CHANGED: This stacks the icons vertically */
    align-items: center;
    gap: 2rem;           /* Adjust the vertical space between icons */
}

/* Control the size of the icon images themselves */
.primary-navigation .mobile-socials-group .nav-icon-link img {
    width: 28px;
    height: 28px;
}


.primary-navigation {
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    transform: translateX(100%);
    transition: transform 350ms ease-out, visibility 350ms;
    visibility: hidden;
}

/* "CLOSE" button inside the menu */
.mobile-nav-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
}

/* List of links */
.primary-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4rem;
}

.primary-navigation a {
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Special style for the "GET LISTED" button in the mobile menu */
.primary-navigation .mobile-get-listed-item a {
    font-size: 1rem;
    border: 1px solid white;
    padding: 0.8em 1.5em;
    transition: background-color 0.2s, color 0.2s;
}

.primary-navigation .mobile-get-listed-item a:hover {
    background-color: white;
    color: black;
}

.location-icon {
    width: 17px;
    height: 25px;
    object-fit: contain;
    display: inline-block;
    margin-right: 5px;
}

/* FOOTER STYLES */


.site-footer {
    background: #000;
    color: #fff;
    padding-top: 1.5rem;
    border-top: 1px solid white;
    font-family: var(--font-secondary);
}

.footer-top {
    display: flex;
    flex-direction: column; /* Mobile: Stack logo and links */
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem; /* Padding for mobile */
}

.footer-logo img {
    max-width: 295px; /* Smaller logo on mobile */
    height: auto;
    margin: 0 auto 1rem auto; /* Center the logo on mobile */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns for links/contact */
    gap: 1.5rem 2rem; /* Row and column gap */
    text-align: left;
}



/* --- MOBILE-FIRST Typography --- */
/* Smaller font sizes for all text on mobile by default */
.footer-links h4, 
.footer-contact h4, 
.footer-socials h4 {
    margin-bottom: 0.75rem;
    font-size: 0.8rem; /* Smaller heading font on mobile */
    font-weight: bold;
}

.footer-links ul,
.footer-socials ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    /* gap: 0.6rem; */
    gap : 1rem;
}

/* Set base font size for links and contact info on mobile */
.footer-links a, 
.footer-contact p, 
.footer-socials a {
    font-size: 0.85rem; /* Smaller body font on mobile */
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-socials {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-socials a:hover {
    color: var(--clr-yellow);
}

/* .footer-bottom {
    background-color: #FFFFFF;
    color: #000000;
    text-align: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem; 
    margin-top: 3rem;
} */

.footer-bottom{
    background-color: #FFFFFF;
    color: #000000;
    text-align: center;
    padding: 0.01rem 1.5rem;
    font-size: 0.75rem; 
    margin-top: 1.2rem;
}

/* --- DESKTOP Overrides (for screens 768px and wider) --- */
@media (min-width: 768px) {
    .footer-top {
        flex-direction: row; /* Side-by-side on desktop */
        align-items: center;
        gap: 4rem; /* More space on desktop */
        padding: 0 2rem;
    }

    .footer-logo {
        flex: 1.5; /* Logo takes up proportional space */
        margin: 0;
    }

    .footer-logo img {
        max-width: 250px; /* Larger logo on desktop */
        margin: 0;
    }

    .footer-grid {
        flex: 2; /* Links/contact takes up more space */
        display: flex;
        align-items: flex-start;
        gap: 5rem;
    }

    .footer-links,
    .footer-contact-socials {
        flex-basis: 50%;
    }
    
    /* --- DESKTOP Typography --- */
    /* Increase font sizes for desktop view */
    .footer-links h4,
    .footer-contact h4,
    .footer-socials h4 {
        font-size: 1.1rem;
    }

    .footer-links a,
    .footer-contact p,
    .footer-socials a {
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        font-size: 0.875rem; /* Slightly larger copyright text */
        padding : 0.05rem 1.5rem;
    }
}

@media(max-width: 470px){
    .footer-bottom{
        font-size : 0.5rem;
    }
}

/* RESPONSIVE STYLES */

    @media (min-width: 768px) {
    .primary-navigation .mobile-store-icon img{
        width: 12px !important;
        height: 12px !important;
        max-width: none;
        max-height: none;
        display: inline-block;
    }
    
    .footer-top {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        justify-content: space-between;
        max-width: 100%;
        padding-inline: 5.56%;
    }

    .footer-logo {
        /* flex: 2 ; */
        flex : 3;
        /* max-width: 450px; */
    }

    .footer-grid {
        flex: 3;
        display: flex;
        align-items: flex-start;
        gap: 5rem;
    }

    .footer-logo img {
        margin-left: 0;
        margin-right: 0;
        /* height : auto; */
        max-height : 220px;
        max-width : 400px;
    }

    .footer-links {
        flex-basis: 50%;
    }

    .footer-contact-socials {
        flex-basis: 50%;
    }
    
    .footer-links h4,
    .footer-contact h4,
    .footer-socials h4 {
        font-size: 1.1rem;
    }

    .footer-links ul,
    .footer-contact p,
    .footer-socials ul {
        font-size: 0.85rem;
    }

    .get-listed-btn{
        padding : 0.5em 1em;
    }
}

@media (min-width: 900px) {
    
    /* --- Main Layout: Distribute space evenly --- */
    .header-container {
        display: grid;
        grid-template-columns: 1fr auto 1fr; /* Left, Center, Right */
        align-items: center;
    }

    /* --- Hide Mobile Elements --- */
    .mobile-nav-toggle,
    .get-listed-btn-mobile,
    .primary-navigation {
        display: none !important;
    }

    /* --- Show and Style Desktop Elements --- */
    .nav-left,
    .nav-right,
    .get-listed-btn {
        display: flex;
        align-items: center;
    }
    
    .nav-left {
        justify-content: flex-start; /* Align links to the left */
        gap: 2.5rem; /* Space between left-side links */
    }
    .nav-right {
        justify-content: flex-end; /* Align links to the right */
        gap: 1.5rem; /* Tighter space between right-side items */
    }

    /* --- Logo Centering --- */
    .logo {
        justify-self: center; /* Center the logo in its grid area */
    }
    .logo img {
        height: 50px;
        padding-left: 0; /* Reset mobile padding */
    }

    /* --- Text Link Styling --- */
    .nav-left a, .nav-right > a {
        font-size: 1rem;
        letter-spacing: 1px;
        font-weight: bold;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        white-space: nowrap;
    }

    .nav-icons{
        display : flex;
        flex-direction : row;
    }

    /* --- Social Icon Styling (with colored borders) --- */
    

    /* --- Divider and Store Locator --- */
    .divider {
        display: block;
        width: 1px;
        height: 24px; /* Set a fixed height */
        background-color: rgba(255, 255, 255, 0.5);
    }

    /* --- "GET LISTED" Button Styling (to match image) --- */
    .get-listed-btn {
        background: #fff; /* Solid white background */
        color: #000; /* Black text */
        border: 1px solid #fff; /* White border */
        padding: 0.7em 1.5em;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.2s;
    }
    .get-listed-btn:hover {
        background: #ccc;
        border-color: #ccc;
    }
    
    /* --- Active Link Styling --- */
    .nav-left a.active, .nav-right a.active {
       color: var(--clr-yellow);
    }
}

/* --- Reservation Modal --- */


.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;

    /* Hide by default */
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.is-visible {
    visibility: visible;
    opacity: 1;
}

.modal-content {
    background-color: #fff;
    color: #111;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    font-family: var(--font-secondary);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.modal-overlay.is-visible .modal-content {
    transform: translateY(0);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}
.modal-header h2 {
    font-family: var(--font-primary);
    margin-bottom: 0.5rem;
}
.modal-header p {
    color: #555;
    font-size: 0.9rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


@media (max-width: 768px) {

    /* 1. Stack the main columns vertically */
    #reserve-spot-modal .event-detail-modal-content {
        flex-direction: column;
        height: 90vh; /* Adjust height for mobile */
        overflow-y: auto; /* Make the whole modal scrollable */
    }

    /* 2. Make both columns full-width */
    #reserve-spot-modal .event-gallery-column,
    #reserve-spot-modal .event-info-column {
        flex: none; /* Reset the desktop flex sizing */
        width: 100%;
        overflow-y: visible; /* Prevent double scrollbars */
    }
    
    /* 3. Create the 2x2 Image Grid */
    #reserve-spot-modal .event-gallery-column {
        display: grid;
        gap: 0.75rem; 
    }

    /* 4. Make all four images square and equal-sized */
    #reserve-spot-modal .main-event-image,
    #reserve-spot-modal .thumbnail {
        width: 100%;
        max-width: none; /* Override desktop max-width */
        aspect-ratio: 1 / 1; /* Force all images to be square */
    }
    #reserve-spot-modal .main-event-image{
        display: none;
    }

    /* 5. Adjust padding for a better mobile feel */
    #reserve-spot-modal .slot-chooser,
    #reserve-spot-modal .modal-slot-options {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
    }
    #reserve-spot-modal .modal-slot-options label {
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 768px) {
  #reserve-spot-modal .event-header-mobile {
    display: block;
    padding: 1rem 0 0.5rem 0.9rem;
    background: #fff;
    position: relative;
    z-index: 2;
    text-align: left;
    color: black;
  }
  #reserve-spot-modal .event-info-column .event-title,
  #reserve-spot-modal .event-info-column .modal-close-btn,
  #reserve-spot-modal .event-info-column .event-meta {
    display: none !important;
  }
}
@media (min-width: 769px) {
  #reserve-spot-modal .event-header-mobile {
    display: none;
  }
}


@media(max-width : 371px){
  .footer-contact p a{
    word-break: break-all;
  }
}

.get-listed-btn span{
    vertical-align: sub;
}


/* Reduce gap between footer-contact and footer-socials */
.footer-contact-socials {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Reduced from 1.5rem */
}

/* New wrapper for policy links */
.footer-policy-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* UPDATED - tighter gap */
}

/* Policy section styling to match other sections */
.footer-policy h4 {
    margin-bottom: 0.5rem; /* UPDATED - reduced */
    font-size: 0.8rem;
    font-weight: bold;
}

.footer-policy p {
    font-size: 0.85rem;
    margin: 0 0 0.5rem 0; /* UPDATED - reduced */
}

.footer-policy a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-policy a:hover {
    color: var(--clr-yellow);
}

/* Tighten spacing within each section */
.footer-contact h4,
.footer-socials h4 {
    margin-bottom: 0.5rem; /* NEW - reduced */
}

/* Reduce gap between contact items */
.footer-contact p {
    margin: 0 0 0.5rem 0; /* NEW - reduced */
}

/* Reduce gap between social links */
.footer-socials ul {
    gap: 0.5rem; /* NEW - reduced from 1rem */
}

/* Reduce social icon size */
.footer-socials a img {
    width: 16px; /* NEW */
    height: 16px;
    object-fit: contain;
}

/* Desktop adjustments */
@media (min-width: 768px) {
    .footer-contact-socials {
        gap: 0.75rem; /* Even tighter on desktop */
    }
    
    .footer-policy-links {
        gap: 0.5rem; /* UPDATED */
    }
    
    .footer-policy h4,
    .footer-contact h4,
    .footer-socials h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem; /* UPDATED */
    }
    
    .footer-policy p,
    .footer-contact p {
        font-size: 0.85rem;
        margin: 0 0 0.5rem 0; /* UPDATED */
    }
    
    .footer-socials ul {
        gap: 0.5rem; /* NEW */
    }
    
    .footer-socials a img {
        width: 18px; /* NEW */
        height: 18px;
    }
}






