/* ================= GLOBAL ================= */
body {
    margin: 0;
    background-color: #111;
    background-image: url("backgrounds/page_texture.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #f2f2f2;
    font-family: "Segoe UI", Arial, sans-serif;
}

@font-face {
    font-family: 'Publico Banner';
    src: url('fonts/PublicoBanner-Bold.woff2') format('woff2'),
         url('fonts/PublicoBanner-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}


/* ================= HEADER ================= */
.header-banner {
    position: relative;
    height: 25vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
    border-bottom: 2px solid #222;
}

/* Background video */
.header-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.75;
}

/* Centered logo container */
.header-logo-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ONE LOGO – responsive */
.header-logo {
    max-height: 90%;     /* fills 75% of header height */
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(2px 4px 8px rgba(0,0,0,1));
}

/* ================= HEADER DIVIDER ================= */
.header-divider {
    width: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.28),
        rgba(255,255,255,0.18)
    );
    border-bottom: 1px solid rgba(255,255,255,0.15);
    box-shadow:
        0 2px 6px rgba(0,0,0,0.35),
        inset 0 -1px 0 rgba(0,0,0,0.4);

    /* NEW */
    display: flex;
    justify-content: center;
}


.header-divider::before {
    content: "";
    display: block;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        #cc0000,
        transparent
    );
    opacity: 0.6;
}


.subscribe-prompt {
    background: #cc0000;
    padding: 10px 18px;
    font-size: clamp(0.85rem, 2.4vw, 1.05rem);
    line-height: 1.4;

    /* CENTERING */
    text-align: center;

    /* SIZE CONTROL */
    max-width: 1200px;
    margin: 6px auto;

    letter-spacing: 0.2px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.6);
	border-radius: 8px;
}



.subscribe-link {
    position: relative;
    padding-bottom: 1px;
}

.subscribe-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 0.6;
}

.subscribe-link:hover {
    text-decoration: underline;
}
.subscribe-link,
.subscribe-link:visited,
.subscribe-link:hover,
.subscribe-link:active {
    color: #FFD100;
}

.subscribe-spacer {
    display: inline-block;
    width: 0.7rem; /* visually ≈ 4 spaces */
}
.social-text {
    margin-right: 8px;
    opacity: 0.9;
    white-space: nowrap;
}

.social-inline-icons {
    display: inline-flex;
    gap: 8px;
    vertical-align: middle;
}
.social-inline-icons a {
    width: 26px;
    height: 26px;
    background: rgba(0,0,0,0.85);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.social-inline-icons a:hover {
    background: #cc0000;
    transform: scale(1.1);
}
.social-inline-icons a {
    box-shadow:
        0 1px 3px rgba(0,0,0,0.6),
        inset 0 0 0 1px rgba(255,255,255,0.08);
}

.social-inline-icons a:hover {
    box-shadow:
        0 2px 6px rgba(0,0,0,0.6),
        inset 0 0 0 1px rgba(255,255,255,0.15);
}

.social-inline-icons a {
    width: 26px;
    height: 26px;
    background: rgba(0,0,0,0.85);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.social-inline-icons svg {
    width: 14px;
    height: 14px;
    fill: #ffffff;
    transition: fill 0.2s ease;
}

/* Hover scale */
.social-inline-icons a:hover {
    transform: scale(1.12);
}

/* Brand colors on hover ONLY */
.icon-facebook:hover svg {
    fill: #1877F2;
}

.icon-instagram:hover svg {
    fill: #E1306C;
}

.icon-tiktok:hover svg {
    fill: #69C9D0;
}
.icon-youtube:hover svg {
    fill: #FF0000;
}
.social-inline-icons a:active svg {
    opacity: 0.7;
}




/* ================= LOCATIONS BAR ================= */
.locations-bar {
    width: 100%;
    margin: 0 auto 0 auto;
    background: #1a1a1a;
    color: #000;
    border-radius: 0px;
    padding: 20px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.1);

    display: flex;
    flex-wrap: wrap;
    gap: 15px;

    justify-content: center;   /* CENTER THE CARDS */
}

.location-card {
    background: #f4f4f4;
    border-radius: 10px;
    padding: 12px 16px;
    flex: 1 1 calc(25% - 20px);
    min-width: 180px;
    max-width: 260px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.location-card a {
    color: #cc0000;
    font-weight: normal;
    text-decoration: none;
    align-items: center;
}

/* ================= STORE HOURS ================= */
.store-hours {
    width: 94%;
    margin: 12px auto 25px auto;
    text-align: center;
}

.store-hours-title {
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    color: #cc0000;
}

.store-hours-times {
		font-weight: bold;
	font-size: 1.3rem;
    color: #cc0000;
    opacity: 0.9;
}


/* /* ================= MAIN CONTENT ================= */
.main-container {
    display: grid;
    grid-template-columns: 1fr 3fr; /* 1/4 events, 3/4 ad */
    gap: 20px;

    /* top | right | bottom | left */
    padding: 0 25px 25px 25px;
}


/* ================= COLUMN BASE ================= */
.column {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
}

.column-title {
    font-family: 'Publico Banner', serif;
    font-weight: bold;
    font-size: 2.0rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
	text-align: center;
}

/* ================= EVENTS – CARD LAYOUT ================= */

.event-cards-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-card {
    background: #262626;
    padding: 12px 14px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.45);
    border-left: 3px solid #cc0000;
}

.event-store-title {
    margin: 0 0 6px 0;
    font-size: 1.05rem;
    font-weight: 600;
}

.next-event {
    margin: 0;
    font-size: 0.95rem;
}

.all-events {
    margin-top: 8px;
}

/* Override list styling inside event cards */
.event-card .event-list {
    list-style: none;
    margin: 6px 0 0 0;
    padding-left: 12px;
}

.event-card .event-list li {
    background: none;
    border: none;
    padding: 2px 0;
    margin: 0;
    font-size: 0.9rem;
}

/* Toggle button */
.toggle-events {
    margin-top: 8px;
    background: none;
    border: none;
    color: #cc0000;
    font-weight: bold;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

/* ================= LEGACY EVENTS (not used by cards anymore) ================= */
/* Leaving .event-list base styles here in case you reuse elsewhere */
.event-list {
    list-style: none;
    padding: 0;
}

.event-list li {
    /* base styling overridden inside .event-card */
}

/* ================= SALE AD ================= */
.sale-banner {
    background-color: #cc0000;
    color: #ffffff;
    text-align: center;
    font-weight: 800;
    font-size: 1.3rem;
    padding: 12px 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    letter-spacing: 1px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.4);
    font-family: 'Publico Banner', serif;
    font-weight: bold;
}

.sale-ad-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

/* ================= FOOTER ================= */
.footer-divider {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.25);
    box-shadow: 0 -4px 10px rgba(0,0,0,0.5);
    margin-top: 20px;
}

.footer {
    background: #0d0d0d;
    padding: 25px 30px;
    text-align: center;
    font-size: 0.65rem;
    opacity: 0.8;
}

.footer p {
    max-width: 900px;
    margin: 10px auto;
    line-height: 1.3rem;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 980px) {

    .header-banner {
        height: 20vh;
    }

    .header-logo {
        max-height: 70%;
    }

    .location-card {
        flex: 1 1 calc(50% - 10px);
    }
}

@media (max-width: 700px) {

    .header-banner {
        height: 18vh;
    }

    .header-logo {
        max-height: 65%;
    }

    .main-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }

    .ad-column { order: 1; }
    .left-column { order: 2; }

    .location-card { flex: 1 1 100%; }
}

@media (max-width: 500px) {

    .header-banner {
        height: 15vh;
    }

    .header-logo {
        max-height: 55%;
    }

    .sale-banner {
        font-size: 0.9rem;
        padding: 8px;
    }
}
@media (max-width: 500px) {
    .subscribe-prompt {
        padding: 8px 14px;
    }
}
@media (max-width: 500px) {
    .social-text {
        font-size: 0.85em;
    }
    .social-inline-icons a {
        width: 22px;
        height: 22px;
        font-size: 0.65rem;
    }
}



/* ================= SALE CALLOUT BANNER ================= */

.sale-callout {
    margin-top: 12px;
    height: 15%; /* visually ~1/5 of sale ad height */
    min-height: 90px;

    background-color: #ffd100; /* PMS 123 equivalent */
    border-radius: 10px;

    display: flex;
    align-items: center;

    box-shadow: 0 3px 8px rgba(0,0,0,0.35);
}

.sale-callout-text {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
}

.sale-callout-line {
    font-family: "Oswald", Arial, sans-serif;
	font-weight: 900;
	font-style: italic;
	letter-spacing: .5px;
    text-transform: uppercase;
    color: #cc0000; /* PMS 485 equivalent */
    line-height: 1.1;
	align-items: center;
}


.sale-callout-line:first-child {
    font-size: 3.0rem;
}

.sale-callout-line:last-child {
    font-size: 4.0rem;
}
/* ================= SALE CALLOUT LINK NOT USED ================= */

.sale-callout {
    justify-content: space-between;
}

.sale-callout-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 20px;
}

.sale-callout-link a {
    font-family: "Arial Black", Arial, sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;

    color: #cc0000; /* PMS 485 */
    text-decoration: none;

    font-size: 1.2rem;
    letter-spacing: 0.6px;

    border-bottom: 3px solid rgba(204,0,0,0.35);
    padding-bottom: 4px;
    transition: all 0.2s ease;
}

.sale-callout-link a:hover {
    color: #990000;
    border-bottom-color: #990000;
}
/* ================= ALT SALE BANNER (PDF LINK) ================= */

.sale-banner-alt {
    display: block;
    background-color: #ffd100; /* PMS 123 */
    color: #cc0000; /* PMS 485 */

    text-align: center;
    text-decoration: none;

    font-family: "Arial Black", Arial, sans-serif;
	font-style: italic;
    font-weight: bold;
    font-size: 1.4rem;

    padding: 12px 10px;
    margin-top: 12px;

    border-radius: 8px;
    letter-spacing: 0.4px;

    box-shadow: 0 3px 8px rgba(0,0,0,0.35);
    transition: all 0.2s ease;
}

.sale-banner-alt:hover {
    background-color: #ffde3b;
    color: #990000;
}

/* ================= AGE CONFIRMATION MODAL ================= */

#ageModalBackdrop {
    position: fixed;
    inset: 0;
    background: rgba(120, 120, 120, 0.65);
    backdrop-filter: blur(2px);
    z-index: 9000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

#ageModal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 420px;   /* ≈ 1/3 page on desktop */
    background: #111;
    color: #fff;
    padding: 32px 28px;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.8);
    text-align: center;
    z-index: 9100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

#ageModal img {
    max-width: 260px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 4px 8px rgba(0,0,0,1));
}

.age-question {
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.age-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.age-actions button {
    padding: 12px 30px;
    font-size: 1.05rem;
    font-weight: bold;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

#ageConfirmYes {
    background: #cc0000;
    color: #fff;
}

#ageConfirmYes:hover {
    background: #990000;
}

#ageConfirmNo {
    background: #444;
    color: #fff;
}

#ageConfirmNo:hover {
    background: #666;
}

.age-note {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* ACTIVE STATE */
.age-modal-active #ageModalBackdrop {
    opacity: 1;
    pointer-events: auto;
}

.age-modal-active #ageModal {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

/* Prevent scroll while modal is open */
body.age-modal-active {
    overflow: hidden;
    height: 100vh;
}

/* Optional: helps prevent iOS “rubber band” scroll */
body.age-modal-active {
    touch-action: none;
}

/* ================= SIPS PROGRAM CARD ================= */

.sips-card {
    background: #2b1a1a;
    padding: 18px 22px 22px 22px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #cc0000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
	border-top: 5px solid #cc0000;
	background: linear-gradient(145deg, #2a1414, #3a1c1c);
}

.sips-title {
    font-family: 'Publico Banner', serif;
    font-size: 2.4rem;
    margin: 4px 0 8px 0;
    padding-bottom: 4px;
    letter-spacing: 0.5px;
    text-align: center;
}

/* ===== FORM INPUTS ===== */	
.sips-card form {
    margin-top: 10px;
}
.sips-card input:not([type="checkbox"]),

.sips-card select {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: none;
    font-size: 0.95rem;
    box-sizing: border-box;
}

.sips-card select {
    background: #fff;
    color: #000;
}

/* ===== BUTTON ===== */

.sips-card button {
    width: 100%;
    padding: 12px;
    background: #ffd100;
    border: none;
    color: #2;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 6px;
	letter-spacing: 0.5px
}

.sips-card button:hover {
    background: #9E820B;
}

/* ===== AGREEMENT LINE (FIXED) ===== */

.sips-agree {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    margin: 10px 0 14px 0;
    text-align: left;
}

.sips-agree input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.1);
    cursor: pointer;
}

.sips-agree label {
    cursor: pointer;
    line-height: 1.4;
}

.sips-agree a {
    color: #cc0000;
    text-decoration: underline;
}

/* ===== PRIVACY LINE (FIXED + CENTERED) ===== */

.sips-privacy {
    margin-top: 14px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.75);
    text-align: center;
    line-height: 1.4;
}

.sips-privacy .lock-icon {
    color: #cc0000;
    margin-right: 6px;
}

/* ===== FORM ROW LAYOUT ===== */

.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
}

.sips-tagline {
    text-align: center;
    font-size: 0.75rem;
    margin: 6px 0 14px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

.sips-benefits {
    text-align: center;
    font-size: 0.9rem;
    margin: 14px 0 18px 0;
}
.sips-benefits span {
    margin: 0 6px;
    opacity: 0.6;
}
.sips-benefits div {
    opacity: 0.9;
}

.sips-free {
    background: #cc0000;
    color: white;
    text-align: center;
    font-size: 0.75rem;
    padding: 6px;
    border-radius: 6px;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.sips-micro {
    text-align: center;
    font-size: 0.75rem;
    margin: 4px 0 10px 0;
    color: rgba(255,255,255,0.6);
}

/* ===== TOM SELECT CUSTOM STYLING ===== */

.ts-control {
    border-radius: 6px;
    border: none;
    padding: 10px;
    font-size: 0.95rem;
}

.ts-dropdown {
    border-radius: 6px;
    font-size: 0.95rem;
}

.sips-subtle-note {
    text-align: center;
    font-size: 1.0rem;
    margin-bottom: 12px;
    color: #cc0000;
}