/*
Theme Name: The Skagit
Theme URI: https://www.theskagit.com/
Description: Purpose-built theme for The Skagit Valley Casino Resort. Runs the
             promotions, entertainment listings, jackpot boards, hotel rooms,
             restaurant menus and the resort calendar, plus the contact, sales
             and self-barring forms. Staff edit the pages that change often -
             opening hours, daily rates, page headers, calendar banners - from
             one Website Content menu instead of a page builder. Standalone
             since August 2026, when it was flattened out of a Hello Elementor
             child theme; there is no parent and Elementor is not installed.
Author: Morkus G
Author URI: https://www.usit.com/
Version: 1.0.0
Requires at least: 6.5
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: theskagit
*/

/*
 * Built by Morkus G, CTO, USIT — 2026.
 *
 * Written for one property rather than for distribution, which is why the
 * decisions in these files are argued rather than just stated: the comments
 * record what broke, what was measured and what was ruled out, because the
 * next person to read them will not have been in the room.
 */

/*
 * >>> THERE IS DELIBERATELY NO `Template:` LINE. <<<
 * That line is the only thing that makes WordPress treat a theme as a child.
 * Re-adding it would make this theme depend on a parent that has been deleted,
 * and every template here would be shadowed by one that no longer exists.
 */


/* =========================================
   1. GLOBAL COLOR OVERRIDES & TYPOGRAPHY
   ========================================= */
:root {
    --skagit-blue-dark: #0b3d68;
    --skagit-blue-med:  #004e82;
    --skagit-blue-light:#00a9eb;
    --skagit-gold:      #D4AF37;
    --skagit-gold-dark: #b5952f;
    --skagit-text:      #2c2c2c; /* Softer black for cleaner read */
    --skagit-bg:        #ffffff;

    --e-global-color-primary: var(--skagit-blue-dark) !important;
    --e-global-color-secondary: var(--skagit-blue-med) !important;
    --e-global-color-text: var(--skagit-text) !important;
    --e-global-color-accent: var(--skagit-gold) !important;
}

/* --- BASE TYPOGRAPHY -----------------------------------------------------
   This used to hard-code the Open Sans stack with `!important`, which meant the
   design system's `--sk-font-body` token could not govern body copy at all: the
   token was switched to Montserrat and the page carried on rendering Open Sans,
   because an `!important` literal here outranks a plain declaration anywhere.

   It now points AT the token, so there is one place to change the body face.
   `!important` is kept only because this rule has to keep outranking the parent
   theme's own body declaration, which is what it was here for originally --
   removing it entirely hands the cascade back to Hello Elementor. */
body { 
    color: var(--skagit-text);
    font-family: var(--sk-font-body) !important;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400; /* Regular weight for clean look */
}

a { color: var(--skagit-blue-med); transition: color 0.3s ease; text-decoration: none; }
a:hover, a:focus { color: var(--skagit-gold); }

/* --- HEADINGS ------------------------------------------------------------
   Same problem as body above: `"Open Sans", sans-serif !important` here fought
   the display token. It happened to LOOK fixed because
   skagit-design-system.css also declares the heading face with `!important`
   later in the cascade and won on order -- so the two rules were in an
   importance tie decided by load order, which is exactly the kind of thing that
   breaks the next time a stylesheet is re-ordered or combined differently.
   Pointing at the token removes the tie. */
h1, h2, h3, h4, h5, h6 { 
    color: #1a1a1a;
    font-family: var(--sk-font-display) !important;
    /* 600, not 400. Only Playfair Display 600 and 700 are downloaded (see the
       Google Fonts request in inc/enqueue.php), so a 400 declaration left the
       browser to pick the nearest available weight -- which worked by luck, and
       would have started synthesising a fake light weight the moment a 400 face
       was added. State the weight that is actually loaded. */
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
    letter-spacing: -0.02em; /* Slight tightening for modern feel */
    text-transform: none; /* Removed UPPERCASE to match reference */
}

/* Specific H2 tweak */
h2 { font-size: 2.4rem; }

/* Paragraphs */
p {
    color: #555; /* Softer grey for readability */
    margin-bottom: 20px;
    font-size: 1.05rem; /* Slightly larger for modern feel */
}

/* Buttons & Inputs */
button, input, select, textarea, .elementor-button {
    font-family: inherit !important; 
}

/* Utility Class for "Cool" Smaller Headers (Use class="modern-header-small") */
.modern-header-small {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--skagit-blue-dark);
    margin-bottom: 15px;
}

/* Buttons & Inputs (Inherit new font) */
button, input, select, textarea, .elementor-button {
    font-family: inherit; 
}

/* Standard Elementor/Theme Overrides */
button, input[type="button"], input[type="submit"], .elementor-button {
    background-color: var(--skagit-blue-dark) !important;
    color: #fff !important;
    border-color: var(--skagit-blue-dark) !important;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
button:hover, input[type="button"]:hover, input[type="submit"]:hover, .elementor-button:hover {
    background-color: var(--skagit-gold) !important;
    border-color: var(--skagit-gold) !important;
    color: #000 !important;
}
input:focus, textarea:focus, select:focus {
    border-color: var(--skagit-gold) !important;
    outline: none; box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

::selection { background: var(--skagit-gold); color: #000; }
.site-header { background-color: var(--skagit-blue-dark); }
.page-numbers.current, .elementor-pagination .page-numbers.current {
    background-color: var(--skagit-blue-dark) !important; color: #fff !important;
}
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--skagit-blue-med); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--skagit-gold); }


/* =========================================
   2. HEADER STYLES
   ========================================= */
.site-header.modern-header {
    position: relative;
    background: linear-gradient(135deg, #0b3d68 0%, #1e5799 50%, #15467d 100%) !important;
    color: #fff !important;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    z-index: 9999;
    border-bottom: none !important;
}

.header-pattern {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px; opacity: 0.3; pointer-events: none;
}

.header-top-bar {
    position: relative; z-index: 2; padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-top-bar .container-fluid {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1400px; margin: 0 auto; padding: 0 20px;
}

.contact-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 15px; border-radius: 30px;
    background: rgba(255,255,255,0.05); color: #fff !important;
    text-decoration: none; font-size: 0.85rem; font-weight: 600;
    margin-right: 10px; transition: all 0.3s ease;
}
.contact-pill:hover { background: rgba(212, 175, 55, 0.2); border: 1px solid #D4AF37; }
.contact-pill i { color: #D4AF37; } 

.header-logo { height: 65px; width: auto; transition: transform 0.3s; }
.header-logo:hover { transform: scale(1.05); }

.header-utilities { display: flex; align-items: center; gap: 15px; }

.header-socials a {
    width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1); border-radius: 50%; color: white !important;
    transition: 0.3s; margin-left: 5px;
}
.header-socials a:hover { background: #D4AF37; color: #000 !important; }

/* Desktop Navigation */
.main-navigation { position: relative; z-index: 2; background: rgba(0,0,0,0.2); }
.nav-wrapper { max-width: 1400px; margin: 0 auto; display: flex; justify-content: center; }
.header-menu { display: flex; list-style: none; margin: 0; padding: 0; }

.header-menu > li > a {
    display: block; padding: 18px 25px; color: #fff !important;
    text-decoration: none; text-transform: uppercase; font-weight: 700;
    font-size: 0.9rem; letter-spacing: 1px; position: relative;
}
.header-menu > li > a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 3px;
    background: #D4AF37; transition: width 0.3s ease;
}
.header-menu > li:hover > a::after { width: 100%; }

/* Desktop Submenu */
.header-menu li { position: relative; }
.header-menu .sub-menu {
    display: none; position: absolute; top: 100%; left: 0;
    background: #0b3d68; min-width: 220px; list-style: none;
    padding: 10px 0; box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-top: 3px solid #D4AF37; z-index: 10000;
}
.header-menu li:hover > .sub-menu { display: block; animation: fadeIn 0.3s ease; }
.header-menu .sub-menu li a {
    display: block; padding: 10px 20px; color: #fff !important;
    text-decoration: none; font-size: 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-menu .sub-menu li a:hover { background: rgba(255,255,255,0.1); color: #D4AF37 !important; }


/* =========================================
   3. FOOTER STYLES
   ========================================= */
.skagit-footer-interactive {
    position: relative; color: #fff;
    /* Was a hard-coded system stack, which left the footer as the one region of
       the site not using the body token. */
    font-family: var(--sk-font-body);
    overflow: hidden; padding-top: 60px;
}
.footer-background {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #0e2a47 0%, #004e82 50%, #00a9eb 100%);
    background-size: 200% 200%; z-index: 1; transition: background-position 0.8s ease-out;
}
.skagit-footer-interactive:hover .footer-background { background-position: 100% 100%; }
.footer-pattern {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2;
    opacity: 0.1; pointer-events: none;
    background-image: radial-gradient(#ffffff 1.5px, transparent 1.5px);
    background-size: 30px 30px;
}
.footer-content-wrap {
    position: relative; z-index: 3; max-width: 1400px; margin: 0 auto; padding: 0 40px 20px;
}
.footer-logo-row { margin-bottom: 50px; }
.footer-links-row {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 60px;
}
.footer-col { flex: 1; min-width: 160px; }
.footer-col h3 {
    color: rgba(255,255,255,0.6); font-size: 1.1rem; font-weight: 700;
    margin-bottom: 25px; text-transform: uppercase; letter-spacing: 0.5px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    color: #fff; text-decoration: none; font-size: 0.95rem; transition: all 0.2s; display: inline-block;
}
.footer-col ul li a:hover { color: #00a9eb; transform: translateX(5px); }

.footer-connect-bar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 30px 40px; margin-bottom: 40px;
    border: 1px solid rgba(255,255,255,0.15); border-radius: 50px; 
    background: rgba(255,255,255,0.05); backdrop-filter: blur(5px);
}
.connect-left { display: flex; align-items: center; gap: 30px; }
.connect-title { font-size: 1.4rem; font-weight: 800; color: rgba(255,255,255,0.5); margin: 0; }
.social-icons { display: flex; gap: 20px; }
.social-icons a { color: #fff; font-size: 1.3rem; transition: 0.2s; }
.social-icons a:hover { color: #00a9eb; transform: scale(1.1); }
.connect-right { display: flex; align-items: center; gap: 20px; }
.subscribe-btn {
    background-color: #00a9eb; color: #fff; padding: 12px 30px;
    border-radius: 50px; text-decoration: none; font-weight: 700; transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 169, 235, 0.3);
}
.subscribe-btn:hover { background-color: #fff; color: #00a9eb; box-shadow: 0 6px 20px rgba(0,0,0,0.3); }

/* Footer Info Bar */
.footer-info-bar {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    flex-wrap: wrap; 
    gap: 20px;
    padding-bottom: 40px; 
    border-bottom: 1px solid rgba(255,255,255,0.1); 
    margin-bottom: 20px;
}
.info-tribe { display: flex; align-items: center; gap: 15px; font-weight: 600; white-space: nowrap; }
.info-contact { 
    display: flex; align-items: center; gap: 15px; 
    font-weight: 600; flex-wrap: wrap; justify-content: center;
}
.get-directions-btn {
    border: 1px solid rgba(255,255,255,0.3); padding: 6px 18px; border-radius: 20px;
    color: #fff; text-decoration: none; font-size: 0.85rem; transition: 0.3s; white-space: nowrap;
}
.get-directions-btn:hover { background: #fff; color: #000; }
.info-awards { display: flex; gap: 10px; }
.award-circle {
    width: 45px; height: 45px; border-radius: 50%; background: #fff; color: #00162b;
    display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 900;
}
.footer-copyright { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.copyright-row { display: flex; gap: 30px; flex-wrap: wrap; }
.copyright-row a { color: inherit; text-decoration: none; }
.responsible-gaming { margin-left: auto; }


/* =========================================
   4. SUBNAV & BREADCRUMBS
   ========================================= */
/* Sticky Subnav */
.scroll-container { overflow-x: auto; white-space: nowrap; }

/* Breadcrumbs */
.sno-breadcrumbs { width: 100%; background: #fafafa; border-top: 1px solid #eee; padding: 20px 0; }
.sno-breadcrumb-container {
    max-width: 1400px; margin: 0 auto; padding: 0 40px; color: #777; font-size: 0.85rem; font-weight: 600;
}
.sno-breadcrumb-container a { text-decoration: none; color: #333; transition: 0.2s; }
.sno-breadcrumb-container a:hover { color: #009FE3; }
.sno-breadcrumb-container i { margin: 0 10px; font-size: 0.7rem; color: #ccc; }


/* =========================================
   5. SHARED PAGE HEADER
   ========================================= */
.promo-text-header {
    background: #fff; text-align: center; padding: 60px 0 40px;
    background: linear-gradient(to bottom, #fff, #f9f9f9);
}

/* Main Page Title (Large) */
.promo-page-title {
    color: #222;
    font-size: 3rem;
    font-weight: 300; /* Light weight for clean look */
    text-transform: none;
    margin-bottom: 25px;
    letter-spacing: normal;
}

/* NEW: Smaller Section Title (Requested) */
.section-title {
    color: #222;
    font-size: 2.2rem; /* Smaller than main title */
    font-weight: 300;  /* Matches clean aesthetic */
    text-transform: none;
    margin-bottom: 20px;
    letter-spacing: normal;
    text-align: center; /* Center by default */
}

.promo-header-content {
    max-width: 800px; margin: 0 auto; color: #555; font-size: 1.1rem; line-height: 1.6; font-weight: 300;
}
.header-gold-divider {
    width: 80px; height: 4px; background: #D4AF37; margin: 30px auto 0; border-radius: 2px;
}


/* =========================================
   6. SINGLE PROMOTION PAGE STYLES
   ========================================= */
.sno-single-wrapper { background: #fff; padding: 60px 0; }
.sno-container { width: 90%; max-width: 1400px; margin: 0 auto; padding: 0 15px; }
.narrow-container { max-width: 800px; text-align: center; margin: 0 auto; }

.sno-h1 { 
    font-size: 2.8rem; color: #0b3d68; margin-bottom: 40px; 
    font-weight: 800; text-transform: uppercase; line-height: 1.1; 
}
.sno-featured-img img { 
    width: 100%; height: auto; border-radius: 8px; margin-bottom: 40px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); 
}

.sno-single-meta span { 
    display: block; font-size: 1.3rem; color: #222; margin-bottom: 5px; 
    font-weight: 700; text-transform: uppercase; 
}
.sno-single-meta .sub-meta { 
    font-size: 1.1rem; color: #666; font-weight: 400; text-transform: none; 
}
.sno-divider { width: 100%; height: 1px; background: #eee; margin: 40px 0; }

.sno-content-body { text-align: left; font-size: 1.1rem; line-height: 1.8; color: #333; margin-bottom: 40px; }
.sno-action-row { margin-top: 30px; margin-bottom: 30px; }

.sno-btn-solid {
    background: #0b3d68; color: #fff; padding: 12px 35px; border-radius: 30px;
    text-decoration: none; font-weight: 700; transition: 0.3s; display: inline-flex; align-items: center;
}
.sno-btn-solid:hover { background: #D4AF37; color: #000; transform: translateY(-2px); }


/* =========================================
   7. RELATED PROMOTIONS (Clean Slider - Light)
   ========================================= */
.single-related-section { background: #f7f7f7; padding: 80px 0; border-top: 1px solid #e0e0e0; }
.related-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.related-title { color: #0b3d68; font-size: 2rem; text-transform: uppercase; font-weight: 800; margin: 0; letter-spacing: 0.5px; }
.related-view-btn {
    color: #009FE3; border: 1px solid #009FE3; padding: 10px 30px; border-radius: 30px;
    text-decoration: none; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; transition: 0.3s;
}
.related-view-btn:hover { background: #009FE3; color: #fff; }

.single-related-section .sno-card { background: transparent !important; border: none !important; box-shadow: none !important; border-radius: 0 !important; }
.single-related-section .sno-card:hover { transform: none !important; }
.single-related-section .sno-card-img { border-radius: 0 !important; height: 220px !important; margin-bottom: 15px; }
.single-related-section .sno-card-body { padding: 0 !important; }
.single-related-section .sno-card-body h3 a { font-size: 1.4rem !important; color: #0b3d68 !important; margin-bottom: 10px !important; text-decoration: none; }
.single-related-section .sno-card-body h3 a:hover { color: #009FE3 !important; }
.single-related-section .sno-excerpt { color: #666; margin-bottom: 15px; }
.single-related-section .sno-card-footer-split { display: flex !important; align-items: center !important; justify-content: flex-start !important; gap: 15px !important; margin-top: 10px; font-size: 0.9rem; }
.single-related-section .sno-link-rules { color: #888 !important; text-decoration: none; font-weight: 600; position: relative; padding-right: 15px; }
.single-related-section .sno-link-rules::after { content: '|'; position: absolute; right: 0; color: #ddd; }
.single-related-section .sno-link-rules:hover { color: #0b3d68 !important; }
.single-related-section .sno-btn-outline { border: none !important; background: transparent !important; color: #009FE3 !important; padding: 0 !important; border-radius: 0 !important; text-transform: uppercase !important; font-weight: 700 !important; font-size: 0.9rem !important; }
.single-related-section .sno-btn-outline:hover { color: #0b3d68 !important; text-decoration: underline !important; }


/* =========================================
   8. FOOTER PROMOTIONS (Grey Background Style)
   ========================================= */
.jackpot-footer-promos {
    background: #f4f4f4; /* Light Grey */
    padding: 80px 0;
    color: #333; /* Dark Text */
    border-top: 1px solid #ddd;
}

/* Header */
.footer-promo-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 40px; padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}
.footer-promo-title {
    color: #0b3d68; /* Dark Blue */
    font-size: 2.2rem; text-transform: uppercase; font-weight: 800; margin: 0;
}
.footer-view-all {
    color: #0b3d68; border: 1px solid #0b3d68; padding: 10px 30px; border-radius: 30px;
    text-decoration: none; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; transition: 0.3s;
}
.footer-view-all:hover { background: #0b3d68; color: #fff; }

/* Overrides for the Slider inside this Grey Section */
.jackpot-footer-promos .sno-card { 
    background: #fff !important; 
    border: 1px solid #eee !important; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important; 
}
.jackpot-footer-promos .sno-card-img { 
    border-radius: 0 !important; height: 220px !important; 
}
.jackpot-footer-promos .card-title a,
.jackpot-footer-promos h3 a { color: #333 !important; } /* Dark Title */
.jackpot-footer-promos .sno-card:hover h3 a { color: #0b3d68 !important; } 
.jackpot-footer-promos .sno-excerpt { color: #666 !important; }

/* Links */
.jackpot-footer-promos .sno-card-footer-split { display: flex !important; align-items: center !important; gap: 15px !important; margin-top: 15px; }
.jackpot-footer-promos .sno-link-rules { color: #888 !important; text-decoration: none; font-weight: 600; position: relative; padding-right: 15px; }
.jackpot-footer-promos .sno-link-rules::after { content: '|'; position: absolute; right: 0; color: #ccc; }
.jackpot-footer-promos .sno-btn-outline { color: #009FE3 !important; background: transparent !important; border: none !important; padding: 0 !important; text-transform: uppercase; font-weight: 700; }
.jackpot-footer-promos .sno-btn-outline:hover { color: #0b3d68 !important; text-decoration: underline !important; }

/* Arrows */
.jackpot-footer-promos .slick-prev, .jackpot-footer-promos .slick-next { background: #fff; border: 1px solid #ddd; color: #333; }
.jackpot-footer-promos .slick-prev:hover, .jackpot-footer-promos .slick-next:hover { background: #0b3d68; border-color: #0b3d68; color: #fff; }

/* =========================================
   9. JACKPOT ARCHIVE (Body & Striping)
   ========================================= */
.jackpot-archive-body {
    padding-bottom: 80px;
    min-height: 500px;
}

.xtra-custom-container { width: 90%; max-width: 1400px; margin: 0 auto; padding: 0 15px; }

/* Full Width Striping */
.jackpot-month-group {
    width: 100%;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}
/* Even/Odd Logic */
.jackpot-month-group:nth-of-type(odd) { background-color: #fff; }
.jackpot-month-group:nth-of-type(even) { background-color: #f9f9f9; }

/* Month Headers */
.month-header-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.month-title { color: #0b3d68; font-size: 1.8rem; font-weight: 800; text-transform: uppercase; margin: 0; }
.month-view-link { 
    color: #D4AF37; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; text-decoration: none; 
    border: 1px solid #D4AF37; padding: 8px 20px; border-radius: 20px; transition: 0.3s; 
}
.month-view-link:hover { background: #D4AF37; color: #fff; }

/* Clean Cards (White on Grey/White) */
.winner-clean-card {
    background: #fff; border-radius: 12px; overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease;
    border: 1px solid #eee; margin: 10px;
}
.winner-clean-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-color: #D4AF37; }
.winner-img-container { height: 250px; overflow: hidden; position: relative; background: #f0f0f0; }
.winner-img-container img { width: 100%; height: 100%; object-fit: cover; }
.winner-details { padding: 20px; text-align: center; }
.winner-details h4 { margin: 0; font-size: 1.1rem; color: #222; font-weight: 700; }

/* Arrows */
.jp-arrow {
    width: 45px; height: 45px; border-radius: 50%; border: 1px solid #ddd;
    background: #fff; color: #0b3d68; font-size: 1rem; cursor: pointer;
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    display: flex; align-items: center; justify-content: center; transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.jp-arrow:hover { background: #0b3d68; color: #fff; border-color: #0b3d68; }
.jp-prev { left: -25px; }
.jp-next { right: -25px; }


/* =========================================
   10. MOBILE RESPONSIVE
   ========================================= */
.menu-toggle { display: none !important; }
.mobile-drawer-header { display: none !important; } 
.footer-mobile-buttons { display: none !important; }

@media (max-width: 1024px) {
    /* Hide Desktop Elements */
    .header-contact, .header-utilities, .header-pattern { display: none !important; }
    
    .header-top-bar .container-fluid { padding: 15px 20px; justify-content: space-between; }
    .header-logo { height: 50px; }

    /* Burger Button */
    button.menu-toggle {
        display: flex !important; align-items: center; justify-content: center;
        background: transparent !important; border: 1px solid #D4AF37 !important;
        color: #D4AF37 !important; font-size: 1.2rem; cursor: pointer;
        width: 45px; height: 45px; border-radius: 8px; z-index: 10001; transition: 0.3s;
    }
    button.menu-toggle:active { transform: scale(0.95); }

    /* Drawer */
    .main-navigation {
        display: block; position: fixed; top: 0; left: 0; width: 85%; max-width: 320px;
        height: 100vh; background: linear-gradient(160deg, #0b3d68 0%, #051b30 100%);
        box-shadow: 5px 0 20px rgba(0,0,0,0.5); z-index: 99999;
        transform: translateX(-105%); transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        visibility: hidden; padding: 0;
    }
    body.mobile-menu-active .main-navigation { transform: translateX(0); visibility: visible; }
    .main-navigation::before {
        content: ''; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
        background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: -1;
        opacity: 0; transition: opacity 0.4s; pointer-events: none;
        transform: translateX(0); left: 320px; width: calc(100vw - 320px);
    }
    body.mobile-menu-active .main-navigation::before { opacity: 1; pointer-events: all; }

    /* Drawer Header */
    .mobile-drawer-header {
        display: flex !important; justify-content: space-between; align-items: center;
        padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .drawer-logo { height: 40px; width: auto; }
    .drawer-close-btn { background: transparent; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

    /* Mobile Menu Links */
    .header-menu { flex-direction: column; width: 100%; padding: 20px 0 50px; overflow-y: auto; }
    .header-menu > li > a {
        padding: 15px 30px; border-bottom: 1px solid rgba(255,255,255,0.05);
        font-size: 1.1rem; font-weight: 600; color: #fff !important; text-decoration: none !important;
    }
    .header-menu > li > a:active, .header-menu > li > a:focus {
        color: #D4AF37 !important; background: rgba(255,255,255,0.05);
    }

    /* Footer Mobile */
    .footer-links-row { display: none; }
    .footer-connect-bar { flex-direction: column; text-align: center; }
    .footer-mobile-buttons { display: flex !important; flex-direction: column; gap: 10px; margin-bottom: 40px; }
    .footer-mobile-buttons a, .footer-mobile-buttons button {
        background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
        color: white; padding: 15px; text-align: center; text-decoration: none; border-radius: 5px; font-weight: 700;
    }
    .footer-info-bar { flex-direction: column; gap: 20px; text-align: center; }
    .footer-promo-header, .related-header { flex-direction: column; align-items: flex-start; gap: 15px; }
    .jp-arrow { display: none; } /* Hide arrows on mobile sliders */
}

@keyframes fadeIn { from{opacity:0} to{opacity:1} }


/* =========================================
   11. SINGLE JACKPOT MONTH (COLLAGE VIEW)
   ========================================= */
.jackpot-collage-wrapper {
    background: #f4f4f4;
    padding: 60px 0 100px;
    min-height: 600px;
}

.single-month-nav { margin-bottom: 20px; text-align: center; }
.back-link {
    color: #888; text-transform: uppercase; font-size: 0.85rem; font-weight: 700;
    text-decoration: none; transition: 0.3s;
}
.back-link:hover { color: #0b3d68; }
.back-link i { margin-right: 5px; }

.jackpot-collage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.collage-card {
    background: #fff; border-radius: 12px; overflow: hidden; position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}
.collage-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); border-color: #D4AF37; }

.collage-img-wrap {
    position: relative; height: 300px; overflow: hidden; background: #f0f0f0;
}
.collage-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.collage-card:hover .collage-img-wrap img { transform: scale(1.05); }

.collage-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0.6; transition: 0.3s;
}
.collage-card:hover .collage-overlay { opacity: 0.8; }

.collage-info {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px; text-align: center; z-index: 2;
}
.collage-info h4 {
    margin: 0; color: #fff; font-size: 1.2rem; font-weight: 700;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5); text-transform: uppercase; letter-spacing: 0.5px;
}

@media (min-width: 992px) {
    .collage-item:nth-child(5n) { grid-column: span 2; }
    .collage-item:nth-child(5n) .collage-img-wrap { height: 350px; }
}
@media (max-width: 768px) {
    .jackpot-collage-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 15px; }
    .collage-img-wrap { height: 250px; }
}


/* =========================================
   12. ENTERTAINMENT SINGLE PAGE
   ========================================= */
.entertainment-poster img {
    width: 100%; max-height: 500px; object-fit: cover; border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15); margin-bottom: 40px;
}

.ent-dates-wrapper { margin-bottom: 40px; }
.ent-date-row {
    display: flex; justify-content: space-between; align-items: center;
    background: #fff; border: 1px solid #eee; border-left: 4px solid #D4AF37;
    padding: 25px 30px; margin-bottom: 20px; border-radius: 0 8px 8px 0;
    flex-wrap: wrap; gap: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.ent-date-info { display: flex; align-items: center; gap: 15px; }
.ent-icon { font-size: 1.5rem; color: #D4AF37; }
.ent-date-info h3 { margin: 0; color: #0b3d68; font-size: 1.4rem; text-transform: uppercase; font-weight: 700; }

/* Buttons */
.ent-btn {
    display: inline-block; padding: 12px 30px; border-radius: 4px; 
    font-weight: 700; text-transform: uppercase; font-size: 0.9rem; text-decoration: none;
    text-align: center; min-width: 180px; transition: 0.3s;
}
.btn-buy { background: #D4AF37; color: #000; }
.btn-buy:hover { background: #0b3d68; color: #fff; }

.btn-sold-out { background: #b32d2e; color: #fff; cursor: default; }
.btn-cancelled { background: #333; color: #fff; cursor: default; text-decoration: line-through; }
.btn-coming-soon { background: #ccc; color: #555; cursor: default; }
.btn-free { border: 2px solid #D4AF37; color: #D4AF37; background: transparent; }

/* Glass Timer */
.ent-glass-timer {
    background: rgba(11, 61, 104, 0.9); /* Dark Blue */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px; padding: 30px;
    text-align: center; color: #fff;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(11, 61, 104, 0.3);
}
.ent-glass-timer h4 { color: #D4AF37; margin: 0 0 20px; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 2px; }

.ent-timer { display: flex; justify-content: center; gap: 15px; font-family: 'Roboto', sans-serif; }
.timer-box {
    background: rgba(255,255,255,0.1); padding: 15px 20px; border-radius: 8px;
    min-width: 80px; border: 1px solid rgba(255,255,255,0.1);
}
.timer-box span { display: block; font-size: 2.5rem; font-weight: 800; line-height: 1; }
.timer-box small { display: block; font-size: 0.7rem; text-transform: uppercase; opacity: 0.7; margin-top: 5px; }
.timer-dots { font-size: 2rem; padding-top: 10px; color: rgba(255,255,255,0.3); }
.timer-started { font-size: 2.5rem; font-weight: 800; color: #D4AF37; text-transform: uppercase; letter-spacing: 2px; }

/* Responsive */
@media (max-width: 768px) {
    .ent-date-row { flex-direction: column; text-align: center; }
    .ent-btn { width: 100%; }
    .timer-box { min-width: 60px; padding: 10px; }
    .timer-box span { font-size: 1.8rem; }
    .timer-dots { display: none; }
}


/* =========================================
   13. ENTERTAINMENT SYSTEM (Archive & Single)
   ========================================= */

/* --- ARCHIVE: LOCATIONS --- */
.ent-location-section {
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}
.ent-location-section:nth-of-type(odd) { background-color: #fff; }
.ent-location-section:nth-of-type(even) { background-color: #f7f7f7; }

/* Location Header */
.location-header {
    margin-bottom: 40px; border-left: 5px solid #D4AF37; padding-left: 20px;
}
.location-title {
    color: #0b3d68; font-size: 2.2rem; font-weight: 800; text-transform: uppercase; margin: 0;
    display: flex; align-items: center; gap: 15px;
}
.loc-icon { color: #D4AF37; font-size: 1.5rem; }
.location-desc { margin-top: 10px; color: #666; font-size: 1.1rem; max-width: 800px; }

/* --- GRID LAYOUT (Bigger Cards, Rows) --- */
.ent-grid {
    display: grid;
    /* Min 360px width allows large cards, usually 3 per row on desktop */
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 40px;
}

/* --- EVENT CARD (Redesigned) --- */
.ent-card {
    background: #fff; 
    border-radius: 12px; 
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); 
    border: 1px solid #eee;
    display: flex; flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ent-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12); 
    border-color: #D4AF37;
}

/* Image Area - Taller for full fitting */
.ent-card-image { position: relative; height: 260px; overflow: hidden; background: #f0f0f0; }
.ent-card-image img { 
    width: 100%; height: 100%; 
    object-fit: cover; 
    object-position: top center; /* Focus on top (faces/logos) if cropped */
    transition: transform 0.5s; 
}
.ent-card:hover .ent-card-image img { transform: scale(1.05); }

/* Badges */
.ent-badge {
    position: absolute; top: 15px; right: 15px;
    padding: 6px 14px; border-radius: 4px; font-size: 0.8rem; font-weight: 800; text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.badge-soldout { background: #b32d2e; color: #fff; }
.badge-cancelled { background: #000; color: #fff; }

/* Body Content */
.ent-card-body { 
    padding: 30px; 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
}

.ent-card-title { 
    font-size: 1.5rem; margin: 0 0 10px; color: #222; font-weight: 700; line-height: 1.3; 
}
.ent-card-title a { text-decoration: none; color: inherit; }
.ent-card:hover .ent-card-title a { color: #0b3d68; }

.ent-meta-row { 
    font-size: 0.95rem; color: #888; font-weight: 600; text-transform: uppercase; margin-bottom: 15px; 
}
.ent-meta-row i { color: #D4AF37; margin-right: 6px; }

.ent-card-excerpt {
    font-size: 1rem; color: #555; line-height: 1.6; margin-bottom: 25px; flex-grow: 1;
}

/* Footer Buttons */
.ent-card-footer { margin-top: auto; }

.ent-card-btn {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #009FE3;
    color: #009FE3;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}
.ent-card-btn:hover {
    background: #009FE3;
    color: #fff;
}
.ent-card-btn.btn-secondary {
    border-color: #ccc; color: #666;
}
.ent-card-btn.btn-secondary:hover {
    background: #666; color: #fff; border-color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .ent-grid { grid-template-columns: 1fr; } /* Stack on mobile */
    .ent-card-image { height: 220px; }
}


/* --- SINGLE PAGE: CREATIVE EFFECTS --- */

/* Animated Pattern Background */
.ent-single-bg {
    position: relative; overflow: hidden; background: #f9f9f9; padding: 80px 0;
}
.ent-animated-pattern {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#D4AF37 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
    z-index: 0;
    animation: movePattern 60s linear infinite;
}
@keyframes movePattern { from { background-position: 0 0; } to { background-position: 100px 100px; } }

.relative-z { position: relative; z-index: 1; }

/* Poster Frame */
.ent-poster-frame {
    background: #fff; padding: 10px; border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1); margin-bottom: 50px;
    transform: translateY(30px); opacity: 0; transition: 0.8s ease-out;
}
.ent-poster-frame img { border-radius: 8px; width: 100%; height: auto; }

/* Date Rows */
.ent-date-row {
    background: #fff; border: 1px solid #eee; border-left: 4px solid #D4AF37;
    padding: 25px 30px; margin-bottom: 20px; border-radius: 0 8px 8px 0;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.ent-date-info { display: flex; align-items: center; gap: 15px; }
.ent-icon { font-size: 1.5rem; color: #D4AF37; }
.ent-date-info h3 { margin: 0; color: #0b3d68; font-size: 1.4rem; font-weight: 700; text-transform: uppercase; }

/* Glass Timer */
.ent-glass-timer {
    background: rgba(11, 61, 104, 0.9); /* Dark Blue */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px; padding: 30px;
    text-align: center; color: #fff;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(11, 61, 104, 0.3);
}
.ent-glass-timer h4 { color: #D4AF37; margin: 0 0 20px; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 2px; }

.ent-timer { display: flex; justify-content: center; gap: 15px; font-family: 'Roboto', sans-serif; }
.timer-box {
    background: rgba(255,255,255,0.1); padding: 15px 20px; border-radius: 8px;
    min-width: 80px; border: 1px solid rgba(255,255,255,0.1);
}
.timer-box span { display: block; font-size: 2.5rem; font-weight: 800; line-height: 1; }
.timer-box small { display: block; font-size: 0.7rem; text-transform: uppercase; opacity: 0.7; margin-top: 5px; }
.timer-dots { font-size: 2rem; padding-top: 10px; color: rgba(255,255,255,0.3); }

/* Animation Classes */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.fade-in-up.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 768px) {
    .ent-date-row { flex-direction: column; text-align: center; border-left: 1px solid #eee; border-top: 4px solid #D4AF37; }
    .ent-date-btn { width: 100%; }
    .ent-btn { width: 100%; }
    .timer-box { min-width: 60px; padding: 10px; }
    .timer-box span { font-size: 1.8rem; }
    .timer-dots { display: none; }
}

/* =========================================
   14. EXPANDING HERO SECTION (Side Panel Style)
   ========================================= */

/* Container Trigger */
.skagit-expand-trigger {
    position: relative;
    width: 100%;
    min-height: 850px; /* Tall section */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    background: #fff;
}

/* The Animated Wrapper */
.skagit-expand-wrap {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Initial State */
    clip-path: inset(10% round 50px);
    transition: clip-path 0.1s linear;
    background: #000; /* Dark background to prevent white flashes */
}

/* Background Image */
.skagit-expand-media {
    width: 100%; height: 100%;
    position: absolute; top: 0; left: 0;
    z-index: 1;
}
.skagit-expand-media img {
    width: 100%; height: 100%;
    object-fit: cover; /* Ensures image fills the area without stretching */
    object-position: center; /* Keeps the main subject visible */
    display: block;
}

/* Optional Overlay (Darken image slightly so text pops if panel is transparent) */
.skagit-expand-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.1); 
    pointer-events: none;
    z-index: 2;
}

/* --- SIDE CONTENT PANEL (Narrower & Transparent) --- */
.skagit-expand-panel {
    position: absolute;
    top: 0; left: 10%; bottom: 0;
    
    /* NARROWER WIDTH */
    width: 25%; 
    min-width: 400px; /* Prevent it from getting too squished */
    
    /* TRANSPARENT BACKGROUND */
    background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(10px); /* Blurs the image behind the text */
    
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    box-shadow: 10px 0 50px rgba(0,0,0,0.1);
    border-right: 1px solid rgba(255,255,255,0.4);
}

.panel-inner {
    width: 100%;
}

/* Typography */
.expand-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.expand-desc {
    font-size: 1.1rem;
    color: #444; /* Slightly darker for better readability on transparent bg */
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 500;
}

/* Actions */
.expand-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.expand-sub-link {
    color: #333;
    font-weight: 700;
    text-transform: capitalize;
    text-decoration: none;
    font-size: 1rem;
    display: flex; align-items: center; gap: 8px;
    transition: 0.3s;
}
.expand-sub-link:hover { color: #009FE3; }

.expand-main-btn {
    background: #009FE3;
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 159, 227, 0.3);
}
.expand-main-btn:hover {
    background: #0b3d68;
    color: #fff;
    transform: translateY(-2px);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .skagit-expand-panel {
        width: 100%; 
        height: auto;
        min-width: 0;
        top: auto; bottom: 0; left: 0; /* Move to bottom on mobile */
        padding: 40px 30px;
        background: rgba(255, 255, 255, 0.95); /* Less transparent on mobile for readability */
    }
    .skagit-expand-media { height: 100%; top: 0; }
    .expand-title { font-size: 2rem; }
    .skagit-expand-trigger { min-height: 600px; }
}

/* =========================================
   15. MOBILE FIXES (Reservation & Footer)
   ========================================= */

/* --- FIX: Reservation Widget Overflow --- */
@media (max-width: 768px) {
    /* Force container to contain contents */
    .skagit-booking-widget, 
    .booking-form {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    /* Fix the "Guests" row inputs expanding too wide */
    .booking-row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px; /* Reduce gap */
    }

    .booking-col.half {
        flex: 1 1 45%; /* Allow them to shrink */
        min-width: 0; /* Prevents flex items from forcing overflow */
    }

    /* Ensure inputs don't add extra width via padding */
    .booking-input-group input, 
    .booking-input-group select {
        width: 100% !important;
        max-width: 100%;
        box-sizing: border-box; /* Crucial for keeping padding inside width */
    }
}

/* =========================================
   16. HOME JACKPOT FEED (Celebratory Pattern)
   ========================================= */

.jp-modern-section-wrapper {
    display: flex;
    width: 100%;
    min-height: 350px;
    
    /* Base Background */
    background-color: #fafafa; 
    
    /* THE CELEBRATORY PATTERN: Subtle Gold Confetti */
    background-image: 
        radial-gradient(#D4AF37 1.5px, transparent 1.5px), 
        radial-gradient(#D4AF37 1.5px, transparent 1.5px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    
    overflow: hidden;
    position: relative;
    align-items: center;
}

/* Soft White Overlay: Fades the pattern so it's not too busy */
.jp-modern-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.6) 100%);
    z-index: 0; /* Behind content */
    pointer-events: none;
}

/* --- RIGHT SIDE: Static Hero --- */
.jp-static-hero {
    width: 45%; 
    height: 90%;
    position: absolute;
    right: 0; top: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 2;
    
    /* The Slanted Cut */
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    
    /* Layout */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
}

/* --- THE BOTTOM GLASS PANEL --- */
.jp-hero-glass-box {
    width: 100%;
    background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px);
    
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 -10px 50px rgba(0,0,0,0.1);
    
    padding: 15px;
    padding-left: 120px; /* Clear slant */
    position: relative;
    bottom: 5%;
}

/* Typography */
.jp-hero-title {
    color: #222; 
    font-size: 2.6rem; 
    font-weight: 800; 
    text-transform: uppercase;
    margin-bottom: 15px; 
    line-height: 1;
    letter-spacing: -0.5px;
}

.jp-hero-gold-bar {
    width: 60px; height: 5px; background: #D4AF37; margin-bottom: 15px;
}

.jp-hero-desc {
    font-size: 1.1rem; 
    line-height: 1.6; 
    color: #333; 
    font-weight: 500; 
    margin: 0;
    max-width: 500px;
}

/* --- LEFT SIDE: Dynamic Slider --- */
.jp-dynamic-feed {
    width: 60%;
    padding: 0px 40px;
    padding-right: 120px; 
    z-index: 1; /* Above the background pattern */
    position: relative; /* Ensure z-index works */
}

.jp-wide-slider { width: 100%; }
.jp-wide-slide-padding { padding-right: 30px; }

/* Card Style */
.jp-wide-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Softer shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.jp-wide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15); /* Gold glow on hover */
    border-color: #D4AF37;
}

.jp-wide-img-box {
    position: relative;
    width: 100%;
    padding-top: 60%; 
    background: #f0f0f0;
}
.jp-wide-img-box img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
}

.jp-wide-body {
    padding: 20px;
    text-align: center;
    background: #fff;
    border-top: 4px solid #D4AF37;
}
.jp-wide-body h4 {
    margin: 0;
    color: #0b3d68; font-size: 1rem; font-weight: 700; text-transform: uppercase;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .jp-modern-section-wrapper { 
        flex-direction: column-reverse;
        min-height: auto;
    }
    
    .jp-static-hero {
        position: relative; width: 100%; height: 450px;
        clip-path: none; 
        align-items: flex-end;
    }
    
    .jp-hero-glass-box {
        padding: 30px; 
        padding-left: 30px; 
        text-align: center;
    }
    .jp-hero-gold-bar { margin: 0 auto 15px auto; }
    
    .jp-dynamic-feed { width: 100%; padding: 40px 20px; }
}


/* =========================================
   17. REWARDS CLUB PROMO SECTION
   ========================================= */

.skagit-rewards-promo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background: #fff;
    border-radius: 15px;
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* --- Left Side: Content --- */
.rewards-promo-content {
    flex: 1;
    z-index: 2;
}

.rewards-promo-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0b3d68; /* Brand Blue */
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.1;
}

.rewards-promo-lead {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    font-weight: 500;
}

/* List of Benefits */
.rewards-promo-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.rewards-promo-list li {
    display: flex;
    align-items: flex-start; /* Align top for multi-line text */
    margin-bottom: 20px;
}

.rp-icon {
    min-width: 40px;
    height: 40px;
    background: #fdf8e8; /* Light Gold Bg */
    color: #D4AF37; /* Gold Icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-right: 15px;
    margin-top: -5px; /* Visual alignment */
}

.rp-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.4;
}
.rp-text strong {
    color: #0b3d68;
    font-weight: 800;
}

/* Button */
.rewards-promo-btn {
    display: inline-block;
    background: #D4AF37;
    color: #000;
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}
.rewards-promo-btn:hover {
    background: #0b3d68;
    color: #fff;
    transform: translateY(-3px);
}

/* --- Right Side: Card Image --- */
.rewards-promo-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    max-width: 500px;
}

.rewards-promo-visual img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    /* 3D Floating Effect */
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    box-shadow: 20px 20px 50px rgba(0,0,0,0.2);
    transition: transform 0.5s ease;
    z-index: 2;
}

/* Hover Effect: Card straightens up */
.skagit-rewards-promo:hover .rewards-promo-visual img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

/* Background Glow behind card */
.rp-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    background: radial-gradient(circle, rgba(11, 61, 104, 0.2) 0%, transparent 70%);
    z-index: 1;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .skagit-rewards-promo {
        flex-direction: column-reverse; /* Image on top */
        padding: 40px 20px;
        text-align: center;
        gap: 40px;
    }
    
    .rewards-promo-list li {
        justify-content: flex-start;
        text-align: left;
    }
    
    .rewards-promo-visual img {
        transform: none; /* No 3D on mobile */
        max-width: 350px;
    }
    
    .rp-icon { margin-right: 15px; }
}
