/* ==========================================================================
   1. CORE STYLES & RESET
   ========================================================================== */
* {
    box-sizing: border-box;
}

body {
    background-color: #FDF6E9;
    margin: 0;
    padding: 0;
    font-family: "degular", sans-serif;
    color: #2b2b2b;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }

/* ==========================================================================
   HEADER & NAVIGATION WITH MULTI-LEVEL DROPDOWN
   ========================================================================== */
.site-header { 
    padding: 30px 0 10px;
    position: relative;
    z-index: 1001; 
}

.header-flex { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo img { 
    width: 280px; 
    height: auto; 
    display: block; 
}

/* Base Nav Styles */
.main-nav ul { 
    display: flex; 
    list-style: none; 
    gap: 30px; 
    margin: 0; 
    padding: 0; 
}

.main-nav li {
    position: relative; /* Anchor for the dropdowns */
}

.main-nav a { 
    text-decoration: none; 
    color: #000; 
    font-size: 20px;
    transition: 0.3s;
}

.main-nav a:hover:not(.active) {
    color: #4A4A4A;
}

/* Active Link Styling */
.main-nav ul li a.active {
    font-weight: 700;
    color: #000; 
    position: relative;
}

.main-nav ul li a.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    margin-top: 4px;
}

/* --- DROPDOWN LOGIC --- */

/* Main Dropdown (Adults/Children) */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 15px 0 !important;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-top: 2px solid #000;
    flex-direction: column !important; /* Forces vertical list */
    gap: 0 !important;
}

/* Sub-Dropdown (The 7 Packages) */
.sub-dropdown {
    position: absolute;
    top: -15px; /* Aligns with parent item padding */
    left: 100%;
    background: #fff;
    min-width: 220px;
    box-shadow: 10px 10px 25px rgba(0,0,0,0.08);
    padding: 15px 0 !important;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-left: 2px solid #000;
    flex-direction: column !important;
    gap: 0 !important;
}

/* Hover Triggers */
.has-dropdown:hover > .dropdown,
.has-submenu:hover > .sub-dropdown {
    opacity: 1;
    visibility: visible;
}

/* Dropdown Link Styles */
.dropdown a, .sub-dropdown a {
    font-size: 16px !important;
    padding: 10px 25px !important;
    display: block;
    width: 100%;
}

.dropdown a::after, .sub-dropdown a::after {
    display: none !important; /* Remove underline on dropdown links */
}

.dropdown a:hover, .sub-dropdown a:hover {
    background: #FDF6E9;
    padding-left: 30px !important;
}

/* Arrow indicator for parent items */
.arrows {
    display: inline-block;
    margin-left: 6px;
    font-size: 12px;
    transition: 0.3s;
}

/* ==========================================================================
   MOBILE NAVIGATION (992px and below)
   ========================================================================== */
.nav-toggle { display: none; }

@media (max-width: 992px) {
    .nav-toggle-label { 
        display: block; 
        width: 30px; 
        height: 2px; 
        background: #000; 
        position: relative; 
        cursor: pointer; 
        z-index: 1002; 
    }
    
    .nav-toggle-label::before, 
    .nav-toggle-label::after { 
        content: ''; 
        position: absolute; 
        width: 100%; 
        height: 2px; 
        background: #000; 
        transition: 0.3s; 
    }
    .nav-toggle-label::before { top: -8px; } 
    .nav-toggle-label::after { top: 8px; }

    .main-nav { 
        position: fixed; 
        right: -100%; 
        top: 0; 
        width: 100%;
        max-width: 320px; 
        height: 100vh; 
        background: #FDF6E9; 
        padding: 80px 20px 40px; 
        transition: 0.4s ease-in-out; 
        z-index: 1000; 
        box-shadow: -10px 0 20px rgba(0,0,0,0.05);
        overflow-y: auto; /* Allow scrolling for 7 items */
    }
    
    .main-nav ul { flex-direction: column; align-items: flex-start; gap: 20px; }

    /* Expand all menus on mobile */
    .dropdown, .sub-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0 !important;
        margin-left: 15px; /* Indent sub-menus */
        border-left: 1px solid #ccc;
    }

    .dropdown a { font-size: 18px !important; color: #444; }
    .sub-dropdown a { font-size: 16px !important; color: #777; }

    .nav-toggle:checked ~ .main-nav { right: 0; }
    body:has(.nav-toggle:checked) { overflow: hidden; }
    .logo img { width: 220px; }
}

/* ==========================================================================
   3. TYPOGRAPHY (IvyPresto SemiBold #000)
   ========================================================================== */
.main-title, .info-title, .form-group label, .section-label {
    font-family: "ivypresto-headline", serif;
    font-weight: 600;
    color: #000;
}

.main-title { font-size: 38px; margin-bottom: 24px; line-height: 1.2; margin-top: 0 !important; }
.info-title { font-size: 24px; margin-bottom: 15px; }

p, li, .sub-text, .info-text, .checkbox-group label {
    font-size: 20px;
    line-height: 1.6;
}

.sub-text { max-width: 710px; margin: 0 auto 40px auto; }


/* ==========================================================================
   CONTENT-ONLY RED ACCENTS (#972727)
   ========================================================================== */

/* 1. Target links ONLY inside paragraphs */
/* This ensures buttons (which are usually <a> but not in a <p>) stay grey */
section p a, 
.package-description p a {
    color: #972727 !important;
    text-decoration: none;
    /*border-bottom: 1px solid rgba(151, 39, 39, 0.3);*/
    transition: 0.3s ease;
}

section p a:hover {
    color: #000 !important;
    border-bottom: 1px solid #000;
}

/* 2. Target only the Bullet Points (dots) in lists */
/* This makes the dots red, but keeps the link text black if you prefer */
section ul {
    list-style: none; /* Remove default dots */
}

section ul li {
    position: relative;
    padding-left: 20px;
}



/* 3. If you want the text inside the list to also be red links */
section ul li a {
    color: #972727 !important;
    text-decoration: none;
}

section ul li a:hover {
    text-decoration: underline;
}
/* ==========================================================================
   4. HERO & CONTENT LAYOUT
   ========================================================================== */
.hero-image-container { max-width: 1000px; margin: 0 auto 40px auto; }
.hero-image { width: 100%; border-radius: 12px; display: block; }

.booking-content .container { text-align: left; }
.info-block { margin-bottom: 40px; max-width: 800px; }

/* Tick List */
.tick-list { list-style: none; padding: 0; }
.tick-list li {
    padding-left: 35px;
    margin-bottom: 12px;
    position: relative;
}
.tick-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 6px;
    width: 22px; height: 22px;
    background: url('../images/tick.png') no-repeat center center;
    background-size: contain;
}

/* ==========================================================================
   5. FORM SECTION STYLES
   ========================================================================== */
.booking-form-section { padding: 30px 0 40px; background-color: #FDF6E9; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.form-group { display: flex; flex-direction: column; }
.form-full { margin-bottom: 50px; }

.form-group label, .section-label {
    display: block;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.4px;
}

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
    background-color: #fff;
    border: 1px solid #E5E5E5;
    padding: 15px;
    font-family: "degular", sans-serif;
    font-size: 18px;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.icon-input {
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}
.icon-calendar { background-image: url('../images/calendar-24.png'); }
.icon-clock { background-image: url('../images/clock-24.png'); }

@media (max-width: 768px) {
    input[type="text"].icon-input { width: 100% !important; height: 55px; }
    .form-grid { grid-template-columns: 1fr; gap: 20px; }
    .half-width { max-width: 100%; }
}

.checkbox-group { display: flex; flex-direction: column; gap: 18px; }
.checkbox-group label { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.checkbox-group input[type="checkbox"] { width: 18px; height: 18px; accent-color: #000; }

.submit-btn {
    background-color: #000;
    color: #fff;
    padding: 18px 80px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s ease;
}
.submit-btn:hover { background-color: #333; }

/* Ensure the date input doesn't shrink on mobile */
input[type="text"].datepicker,
.flatpickr-input {
    width: 100% !important;
    min-height: 55px; /* Matches your other fields */
    background-color: #fff !important;
    display: block;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #E5E5E5;
    padding: 15px;
    box-sizing: border-box;
    font-size: 18px;
}

/* Hide the native calendar icon that some browsers force */
input::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

/* ==========================================================================
   6. FOOTER STYLES
   ========================================================================== */
.site-footer {
    padding: 40px 0;
    border-top: none;
    margin-top: 40px;
    background-color: #FDF6E9;
}

.footer-tagline {
    font-family: "ivypresto-headline", serif;
    font-weight: 600;
    font-style: italic;
    font-size: 28px;
    color: #000;
    margin-bottom: 25px;
}

/* Footer Logo: Set to 200px */
.footer-logo img {
    width: 200px; 
    height: auto;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.social-links img { width: 32px; height: auto; }

.copyright-text {
    font-size: 14px;
    color: #2b2b2b;
    margin-bottom: 20px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-nav a { text-decoration: none; color: #000; font-size: 16px; }

.footer-nav li:not(:last-child)::after {
    content: "|";
    margin-left: 15px;
    color: #ccc;
}

/* Ensure the referral dropdown stays half-width as per design */
.half-width {
    max-width: 460px; /* Aligns with the grid columns */
    margin-bottom: 50px;
}

/* Fix the textarea width and alignment */
textarea {
    width: 100%;
    min-height: 120px; /* Ensures it doesn't look too thin */
    resize: vertical; /* Allows users to expand down, but not sideways */
    margin-top: 10px;
}

/* Ensure the Submit button doesn't sit too close to the textarea */
.submit-btn {
    margin-top: 30px;
    display: block; /* Ensures it starts on a new line */
}

/* Mobile Fix: Make sure 'half-width' becomes full-width on small screens */
@media (max-width: 768px) {
    .half-width {
        max-width: 100%;
        margin-bottom: 30px;
    }
}


@media (max-width: 600px) {
    .footer-nav ul { flex-direction: column; align-items: center; }
    .footer-nav li:not(:last-child)::after { display: none; }
}


/* ==========================================================================
   PACKAGE HERO & NAVIGATION
   ========================================================================== */
.package-hero {
padding-top: 10px !important; /* Standard was likely 60px-80px */
}

.package-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    margin-top: 20px !important;
    flex-wrap: wrap;
}

.tab-btn {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid #707070;
    border-radius: 50px;
    text-decoration: none;
    color: #000;
    font-family: "degular", sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background-color: #4A4A4A;
    color: #fff;
    border-color: #4A4A4A;
}

.tab-btn:hover:not(.active) {
    background-color: #f0ede6;
}

/* Banner Image Styles */
.package-banner-container {
    margin-bottom: 60px;
}

.package-banner-img {
    width: 100%;
    height: auto;
    border-radius: 40px; /* Matching the deep curve in the design */
    display: block;
}




/* ==========================================================================
   PACKAGE DESCRIPTION (Two Column)
   ========================================================================== */
.package-desc-flex {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    padding-bottom: 80px;
}

.desc-title-col {
    flex: 1;
}

.package-display-title {
    /* 1. Use the Headline sub-family */
    font-family: "ivypresto-headline", serif; 
    
    /* 2. Set to Regular (400), NOT 600 */
    font-weight: 300; 
    
    /* 3. Updated from 64px to 70px per design spec */
    font-size: 70px; 
    
    color: #000000;
    margin: 0 0 15px 0;
    line-height: 1.1;

    /* 4. Tracking/Letter Spacing from design (2.8px) */
    letter-spacing: 0.04em; 
}

.package-price-meta {
    font-size: 20px;
    color: #2b2b2b;
    font-family: "degular", sans-serif;
}

.desc-text-col {
    flex: 2;
    padding-left: 60px;
    /* 0, 0, 0 is Black | 0.11 is the Opacity */
    border-left: 2px solid rgba(0, 0, 0, 0.11); 
}

.desc-text-col p {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.7;
    color: #2b2b2b;
}

/* ==========================================================================
   MOBILE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 992px) {
    .package-desc-flex {
        flex-direction: column;
        gap: 30px;
    }
    .desc-text-col {
        border-left: none;
        padding-left: 0;
    }
    .package-display-title {
        font-size: 44px;
    }
    .package-banner-img {
        border-radius: 20px;
    }
}



@media (max-width: 768px) {
    /* Target the specific banner image */
    .package-banner-img {
        /* Force a taller height so the kids are clearly visible */
        height: 250px !important; 
        width: 100% !important;

        /* This zooms in to fill the area without stretching the children's faces */
        object-fit: cover; 

        /* Centers the children tie-dying the shirts in the frame */
        object-position: center; 

        /* Keeps the rounded corners matching your design */
        border-radius: 25px; 
    }

    .package-banner-container {
        margin-bottom: 30px; /* Reduces the large gap for mobile flow */
        padding: 0 10px;    /* Optional: adds a tiny bit of space on the sides */
    }

.package-desc-flex {
        padding-bottom: 20px !important;
        gap: 15px !important; /* Shrinks space between the text and the next section */
    }

   .package-meta-details {
        padding-top: 30px !important;
        padding-bottom: 20px !important;
    }

    /* Optional: If the hero section above the description also has big padding */
    .package-description {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
    .info-h3 {
        margin-top: 0 !important;
        margin-bottom: 20px !important;
    }

   .bullet-list li {
        margin-bottom: 8px !important; /* Standard was 20px, reducing to 8px */
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    /* Hide the dots on mobile so the text has more room */
    .list-item-text::after {
        display: none !important;
    }

    /* Prevent the price from being squashed */
    .list-price {
        white-space: nowrap;
        font-weight: 600;
    }

    .info-group {
        margin-bottom: 20px !important;
        padding-bottom: 15px !important;
    }

    .explore-packages {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    /* 2. Remove the top margin of the heading */
    .explore-packages h2 {
        margin-top: 0 !important;
        margin-bottom: 20px !important;
        font-size: 32px !important; /* Optional: adjust font size for mobile */
    }

    /* 3. If you have a container inside, tighten it too */
    .explore-packages .container {
        padding-top: 0 !important;
    }
}

/* ==========================================================================
   PACKAGE DETAILS & LISTS
   ========================================================================== */
.package-meta-details {
    background-color: #fdfbf8; 
    padding: 60px 0;
}

.details-flex {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start;
}

.details-lists {
    flex: 1;
}

.info-group {
    margin-bottom: 40px;
    border-bottom: 1px solid #EDE4D3;
    padding-bottom: 30px;
}

.info-group:last-child { border: none; }

.info-h3 {
    font-family: "ivypresto-headline", serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #000;
}

/* Base Lists Reset */
.check-list, .bullet-list { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}

/* Green Tick List */
.check-list li {
    padding-left: 35px;
    margin-bottom: 18px;
    background: url('../images/green-tick.png') no-repeat left center;
    background-size: 20px;
    font-size: 18px;
    line-height: 1.4;
}

/* Dotted Leader List (Add-ons) */
.bullet-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #000;
}

.list-item-text {
    flex: 1;
    display: flex;
    align-items: baseline;
    color: #2b2b2b;
}

/* The Dots */
.list-item-text::after {
    content: "";
    flex: 1;
    border-bottom: 2px dotted #D1C7B7;
    margin: 0 15px;
    height: 1px;
    position: relative;
    top: -4px;
}

.list-price {
    font-weight: 500;
    color: #000;
    white-space: nowrap;
}

/* ==========================================================================
   REQUEST FORM CARD & GRID (Right Side Only)
   ========================================================================== */
.request-container {
    flex: 1.1; 
}

.request-box {
    background-color: #F8F1E7; 
    padding: 60px 50px;
    border-radius: 40px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.request-title {
    font-family: "ivypresto-headline", serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 45px;
    color: #000;
    font-weight: 400;
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns for Name/Email/Phone */
    gap: 20px;
    width: 100%;
}

.field {
    display: flex;
    flex-direction: column;
}

/* THE FULL-WIDTH FIX: Forces the Add-on and Comments to span both columns */
.field.full {
    grid-column: 1 / span 2 !important; 
    width: 100% !important;
}

.field label {
    font-family: "degular", sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.field input, 
.field textarea {
    width: 100% !important;
    height: 54px;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 0 20px;
    font-size: 16px;
    background-color: #ffffff;
    font-family: "degular", sans-serif;
    box-sizing: border-box;
    outline: none;
}

.field textarea {
    height: auto;
    min-height: 140px;
    padding: 18px 20px;
}

/* ==========================================================================
   CUSTOM MULTI-SELECT DROPDOWN
   ========================================================================== */
.custom-multiselect {
    position: relative;
    width: 100% !important;
    display: flex !important;
}

.select-box {
    width: 100% !important;
    height: 54px;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 0 20px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    box-sizing: border-box;
}

.arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    transition: 0.3s;
    margin-right: 5px;
}

.custom-multiselect.active .arrow {
    transform: rotate(-135deg) translateY(-2px);
}

.checkbox-list {
    display: none; 
    position: absolute;
    top: 60px;
    left: 0 !important;
    width: 100% !important;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-height: 250px;
    overflow-y: auto;
    padding: 10px 0;
    box-sizing: border-box;
}

.custom-multiselect.active .checkbox-list {
    display: block;
}

.checkbox-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.2s;
}

.checkbox-item:hover { background-color: #FDFBF8; }

.checkbox-item input { display: none; }

.custom-box {
    width: 18px;
    height: 18px;
    border: 1.5px solid #000;
    border-radius: 4px;
    margin-right: 12px;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
}

.checkbox-item input:checked + .custom-box {
    background-image: url('../images/check-box.png');
    background-color: #f8f1e7;
    border-color: #000;
}

/* ==========================================================================
   SUBMIT BUTTON
   ========================================================================== */
.btn-wrap {
    text-align: center;
    margin-top: 40px;
    width: 100%;
}

.card-submit {
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #000;
    padding: 18px 100px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-submit:hover {
    background-color: transparent;
    color: #000;
    transform: translateY(-2px);
}

/* ==========================================================================
   MOBILE RESPONSIVE (Right Side Only)
   ========================================================================== */
@media (max-width: 992px) {
    .request-box { padding: 40px 25px; border-radius: 30px; }

    .input-grid { 
        grid-template-columns: 1fr; /* Stack First/Last Name on mobile */
    }

    .field.full { 
        grid-column: span 1 !important; 
    }

    .card-submit { 
        width: 100%; 
        padding: 15px 40px; 
    }

    .btn-wrap {
        margin-top: 25px;
    }
}

/* --- Flatpickr Close Button Styling --- */
.flatpickr-close-btn {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    font-family: "degular", sans-serif;
    font-weight: 600;
    font-size: 14px;
    border-radius: 0 0 20px 20px; /* Rounds only the bottom corners */
    margin-top: 5px;
    transition: background 0.3s ease;
}

.flatpickr-close-btn:hover {
    background: #333;
}

/* Ensure the calendar container has enough room for the button */
.flatpickr-calendar {
    padding-bottom: 0 !important;
    overflow: hidden;
}
/* ==========================================================================
   MOBILE RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
    .details-flex {
        flex-direction: column;
        gap: 50px;
    }

    .request-box {
        padding: 40px 25px;
        border-radius: 30px;
    }

    .input-grid {
        grid-template-columns: 1fr; 
        gap: 20px;
    }

    .field.full {
        grid-column: span 1;
    }

    .card-submit {
        width: 100%;
    }

    /* Stack list items vertically on mobile */
    .bullet-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .list-item-text::after {
        display: none;
    }
}
/* =============================================================
   FLATPICKR CLEANUP & DONE BUTTON
   ============================================================= */

/* 1. Hide the label by its exact position in the DOM */
.flatpickr-calendar .flatpickr-time-label,
.flatpickr-time-container + span,
.flatpickr-hasTime .flatpickr-time-label {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    position: absolute !important;
}

/* 2. Fix the Calendar Pop-up Styling */
.flatpickr-calendar {
    width: 315px !important;
    background: #fff !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important;
    border: 1px solid #efe5d5 !important;
    overflow: hidden; /* Clips the "Done" button to the rounded corners */
}

/* 3. Style the "Done" Button to match your Submit button */
.flatpickr-done-btn {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 12px;
    cursor: pointer;
    font-family: "degular", sans-serif;
    font-weight: 600;
    font-size: 14px;
    border-top: 1px solid #f0e9dd;
}

.flatpickr-done-btn:hover {
    background: #333;
}

/* ==========================================================================
   EXPLORE OTHER PACKAGES - FROSTED OVERLAY & CUSTOM ARROWS
   ========================================================================= */

.explore-packages {
    padding: 80px 0;
    background-color: #fdfbf8;
}

.explore-title {
    font-family: "ivypresto-headline", serif;
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 50px;
    color: #000;
    text-align: center;
}

/* Container space for outside arrows */
.package-slider {
    position: relative;
    padding: 0 60px;
}

.package-card {
    position: relative;
    display: block !important;
    margin: 0 12px;
    overflow: hidden;
    text-decoration: none;
    outline: none;
}

.package-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

/* FROSTED OVERLAY (Matching reference 2) */
.package-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.85); /* Semi-transparent white */
    width: 80%;
    padding: 25px 15px;
    text-align: center;
    backdrop-filter: blur(8px); /* The frosted effect */
    -webkit-backdrop-filter: blur(8px);
}

.package-overlay h3 {
    font-family: "ivypresto-headline", serif;
    font-size: 26px;
    margin: 0 0 5px 0;
    color: #000;
    font-weight: 400;
}

.package-overlay p {
    font-family: "degular", sans-serif;
    font-size: 14px;
    margin: 0;
    color: #444;
    text-transform: lowercase; /* Matches "2 hours for 6 guests" style */
}



/* CUSTOM GOLD ARROWS */
/* ==========================================================================
   FIXED CUSTOM ARROWS
   ========================================================================= */

.slick-prev, .slick-next {
    width: 50px !important;    /* Increased size */
    height: 50px !important;   /* Increased size */
    z-index: 100;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    color: transparent !important; /* Hides the "Previous" text */
    border: none !important;
    background-color: transparent !important;
}

/* Hide the default Slick icons completely */
.slick-prev:before, .slick-next:before {
    display: none !important;
}

/* Left Arrow Path & Flip */
.slick-prev {
    left: 0;
    background-image: url('../images/arrow.png') !important; 
    transform: translateY(-50%) rotate(180deg) !important;
}

/* Right Arrow Path */
.slick-next {
    right: 0;
    background-image: url('../images/arrow.png') !important;
}

/* Ensure the container doesn't cut off the arrows */
.package-slider {
    position: relative;
    padding: 0 60px;
    overflow: visible !important; /* Crucial to see arrows on the sides */
}


/* Responsive Mobile */
@media (max-width: 768px) {
    .package-slider { padding: 0 15px; }
    .package-overlay { width: 85%; padding: 15px 10px; }
    .slick-prev, .slick-next { display: none !important; }
}

/* Specific Background for Package Page Footer */
/* 1. The main footer wrapper must be 100% width and have the BG color */
.site-footer.footer-light {
    background-color: #fdfbf8; 
    width: 100%;             /* Ensures it hits the left/right screen edges */
    margin: 0;               /* Removes any centering margin on the wrapper */
    padding: 60px 0 40px;
}

/* 2. The container inside the footer keeps your text centered and limited to 1200px */
.site-footer .container {
    max-width: 1200px;       /* Keeps your content aligned with the rest of the site */
    margin: 0 auto;          /* Centers the content block */
    padding: 0 20px;         /* Adds breathing room on mobile */
}

/* Ensure the copyright and nav align with the new background */
.site-footer.footer-light .footer-tagline {
    font-size: 32px;
    margin-bottom: 30px;
}

.site-footer.footer-light .footer-logo img {
    width: 200px; /* As per your previous request for 200px footer logo */
    height: auto;
    margin-bottom: 30px;
}

/* Make the Flatpickr time selection larger and cleaner */
.flatpickr-time input {
    font-size: 20px !important; /* Larger numbers */
    font-weight: 600 !important;
    color: #000 !important;
}

.flatpickr-time .flatpickr-am-pm {
    font-size: 18px !important;
    font-weight: 700 !important;
    background: #f5eee1; /* Light cream highlight */
    border-radius: 5px;
    width: 25% !important;
}

/* Add a "Select Time" label inside the calendar for clarity */
.flatpickr-calendar.hasTime::before {
    content: "Select Time Below:";
    display: block;
    text-align: center;
    font-size: 12px;
    font-family: "degular", sans-serif;
    color: #999;
    padding-top: 5px;
    border-top: 1px solid #eee;
}

/* Fix the blue selection color to match your theme better */
.flatpickr-day.selected {
    background: #4A4A4A !important;
    border-color: #4A4A4A !important;
}

/* Mobile Fix for Footer Nav on light background */
@media (max-width: 768px) {
    .site-footer.footer-light .footer-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    .site-footer.footer-light .footer-nav li:not(:last-child)::after {
        display: none; /* Removes the | separator on mobile */
    }
}

/* --- PACKAGE BUTTON DESIGN --- */
.book-event-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Space between text and icon */
    
    /* Colors from your design */
    background-color: #FFF9ED;
    color: #8B5C00;
    border: 1px solid #8B5C00;
    
    /* Layout properties from screenshot */
    width: 225px; /* Adjusted to match your text + icon width comfortably */
    height: 48px;
    border-radius: 24px; /* Creates the pill shape */
    
    /* Typography */
    text-decoration: none;
    font-family: "degular", sans-serif;
    font-weight: 700;
    font-size: 18px;
    
    transition: all 0.3s ease;
}

.book-event-btn:hover {
    background-color: #FFF9ED;
    color: #8B5C00;
}

/* Calendar Icon inside button */
.btn-icon {
    width: 22px;
    height: auto;
    /* This filter makes the icon match the brown text color if it's currently a different color */
    /* If the cal.png is already brown, you can remove the filter below */
}

/* If the button needs to be centered on mobile */
@media (max-width: 768px) {
    .book-event-btn {
        display: flex;
        margin: 30px auto 0;
    }
}


/* ==========================================================================
   ABOUT PAGE: HERO BANNER
   ========================================================================== */

.about-hero-section {
    padding: 40px 0;
    background-color: #FDF6E9; /* Consistent site background */
}

.about-banner-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 50px; /* Matching the deep rounded corners from the design */
}

.about-hero-img {
    width: 100%;
    height: auto;
    display: block;
    /* Optional: subtle darken so the white text pops better */
    filter: brightness(0.85); 
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-overlay h1 {
    font-family: "ivypresto-headline", serif;
    font-size: 70px;
    color: #ffffff;
    margin: 0;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Very subtle shadow for readability */
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-hero-overlay h1 {
        font-size: 56px;
    }
    .about-banner-wrapper {
        border-radius: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero-overlay h1 {
        font-size: 40px;
    }
    .about-banner-wrapper {
        border-radius: 20px;
    }
}


@media (max-width: 768px) {
    /* 1. Make the banner taller and remove extra bottom space */
    .about-hero-section {
        padding: 20px 0; /* Reduces the huge gap above/below banner */
    }

    .about-banner-wrapper {
        height: 250px; /* Forces a better height for mobile */
        border-radius: 20px; /* Matches the rounded look */
        overflow: hidden;
        margin-bottom: 20px; /* Tightens space to the next heading */
    }

    .about-hero-img {
        height: 100%; /* Makes image fill the 250px height */
        width: 100%;
        object-fit: cover; /* Crops the sides so the image stays tall */
        object-position: center;
    }

    /* 2. Fix the Heading spacing */
    .story-title {
        font-size: 32px; /* Scales down the font so it doesn't take too many lines */
        margin-top: 10px;
        line-height: 1.1;
        padding: 0 15px;
    }
}
/* ==========================================================================
   ABOUT STORY SECTION (Single Image Version)
   ========================================================================== */

.about-story {
    padding: 30px 0;
    background-color: #FDF6E9;
}

.story-flex {
    display: flex;
    align-items: center; /* Vertically centers text with image */
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.story-text {
    flex: 1;
}

.story-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.story-single-img {
    width: 100%;
    max-width: 600px; /* Prevents image from becoming too huge */
    height: auto;
    display: block;
    /* We don't need border-radius here if your JPG already has the rounded corners */
    /* If your JPG has square corners, keep the line below: */
    border-radius: 40px; 
}

.story-title {
    font-family: "ivypresto-headline", serif;
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #000;
    font-weight: 400;
}

.story-body p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #2b2b2b;
}

.story-footer {
    max-width: 900px;
    margin: 0 auto;
    //border-top: 1px solid #EDE4D3; /* Optional subtle divider */
    padding-top: 10px;
}

/* --- ABOUT PAGE BUTTON POSITIONING --- */
.story-image-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* This centers the button under the image */
    gap: 30px; /* Space between the image and the button */
}

/* Specific styling for the About page version of the button */
.about-btn {
    margin-top: 10px;
    width: 220px; /* Matching the 187px-220px range from your design */
    height: 42px; /* Slightly more compact for the about page */
}

/* Ensure the button stays centered even on mobile */
@media (max-width: 900px) {
    .story-image-container {
        margin-top: 40px;
    }
}

/* --- Story Footer Text Adjustment --- */
.story-footer {
    max-width: 1000px; /* Limits the line width for better readability */
    margin: 60px auto 0;
    padding-top: 40px;
}

.service-area, 
.cta-text {
    font-size: 18px; /* Matches the body text size */
    line-height: 1.6;
    color: #2b2b2b;
    margin-bottom: 20px;
    font-family: "degular", sans-serif; /* Using the clean sans-serif font */
}

/* Optional: Add a slight bold to the CTA to give it a little nudge */
.cta-text {
    font-weight: 500;
}

/* Responsive: Ensure it doesn't hit the edges on mobile */
@media (max-width: 768px) {
    .story-footer {
        padding: 0 20px;
        margin-top: 40px;
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .story-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .story-image-container {
        justify-content: center;
    }

    .story-title {
        font-size: 36px;
    }
}

/* =============================================================
   TESTIMONIALS SECTION
   ============================================================= */
.testimonials-section {
    padding: 30px 0;
    background-color: #FFFAF0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.testimonials-section h2 {
    font-family: "ivypresto-headline", serif;
    font-size: 36px;
    font-weight: 400; /* Force regular weight to match the design */
    text-align: center;
    color: #000000;
    letter-spacing: 1.44px;
    line-height: 43.2px;
}


.testimonial-slider {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* Prevent vertical stacking before Slick JS loads */
.testimonial-slider:not(.slick-initialized) .testimonial-item:not(:first-child) {
    display: none;
}

.testimonial-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 20px;
}

/* 1. The Profile Photo */
.customer-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 8px solid #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
    overflow: hidden;
    flex-shrink: 0;
}

.customer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 2. The Squared Speech Bubble Card */
.testimonial-bubble {
    background: #ffffff;
    padding: 40px 50px;
    border-radius: 30px;
    position: relative;
    
    /* 1. Improved Shadow: Added a slight negative spread (-10px) 
       to make it look "tucked in" and soft like the design */
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.12);
    
    margin-left: 33px;
    
    /* 2. CRITICAL: Add extra margin so the shadow isn't cut off 
       by the slider's overflow:hidden */
    margin-bottom: 40px; 
    margin-right: 20px; 
    
    flex: 1;
    max-width: 650px;
    text-align: left;
    border: 1px solid #f0e9dd;
    z-index: 5;
}

/* 3. The Pointy Arrow (Positioned higher) */
.testimonial-bubble::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 30%;
    transform: rotate(45deg);
    width: 22px;
    height: 22px;
    background: #ffffff;
    border-left: 1px solid #f0e9dd;
    border-bottom: 1px solid #f0e9dd;
    z-index: 6;
    
    /* 3. Give the arrow a matching soft shadow so it doesn't look flat */
    box-shadow: -5px 5px 10px rgba(0,0,0,0.03);
}

/* Typography inside Bubble */
.stars {
    color: #FFB800 !important;
    font-size: 24px;
    margin-bottom: 15px;
}

.quote {
    font-family: "degular", sans-serif;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #333;
}

.customer-info h4 {
    font-family: "ivypresto-headline", serif;
    font-size: 28px;
    margin: 0;
    font-weight: 400;
}

.customer-info span {
    font-size: 16px;
    color: #666;
}

/* 4. Arrow Navigation Positioning */
.slick-prev, .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100;
    padding: 0;
}

.slick-prev { left: -80px; }
.slick-next { right: -80px; }

.slick-prev img, .slick-next img {
    width: 45px;
    height: auto;
    opacity: 0.7;
    transition: 0.3s ease;
}

.slick-prev img:hover, .slick-next img:hover {
    opacity: 1;
}

/* --- Mobile Responsive Rules --- */
@media (max-width: 992px) {
    .testimonial-flex {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-bubble {
        margin-left: 0;
        margin-top: 20px;
        padding: 40px 30px;
        text-align: center;
    }

    .testimonial-bubble::before {
        left: 50%;
        top: -12px;
        transform: translateX(-50%) rotate(45deg);
        border-left: 1px solid #f0e9dd;
        border-bottom: none;
        border-top: 1px solid #f0e9dd;
    }

    .slick-prev { left: 10px; }
    .slick-next { right: 10px; }
}

@media (max-width: 768px) {
    /* 1. Ensure the container has enough room for bottom arrows */
    .testimonial-slider-container {
        padding-bottom: 70px; /* Space for arrows at the bottom */
        position: relative;
    }

    /* 2. Reposition Arrows to the bottom center */
    .prev-btn, .next-btn {
        top: auto !important;
        bottom: 0 !important;
        transform: none !important;
        background-color: #F8F1E7 !important; /* Matches your theme */
    }

    .prev-btn {
        left: 50% !important;
        margin-left: -60px; /* Space out the arrows from center */
    }

    .next-btn {
        right: 50% !important;
        margin-right: -60px;
    }

    /* 3. Adjust the speech bubble padding so text doesn't hit the edges */
    .testimonial-bubble {
        padding: 40px 30px !important;
        margin: 0 auto !important;
        width: 90%;
        box-sizing: border-box;
    }
}

/* --- Packages CTA Section --- */
.packages-cta {
    padding: 30px 0 30px;
    background-color: #FFFAF0;
}

.cta-card {
    background: #FFFAF0; /* Slightly different from the section bg */
    border: 1px solid #c2bdb5;
    border-radius: 40px;
    padding: 40px 40px;
    text-align: center;
}

.cta-title {
    font-family: "ivypresto-headline", serif;
    font-size: 42px;
    margin-bottom: 40px;
    color: #000;
    font-weight: 400;
}

.cta-images-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.cta-img-item {
    flex: 1;
}

.cta-img-item img {
    width: 100%;
    height: auto;
    border-radius: 25px; /* Matches the rounded look in your screenshot */
    display: block;
    transition: transform 0.3s ease;
}

.cta-img-item img:hover {
    transform: scale(1.03); /* Subtle hover effect */
}

/* The Outline Button */
.btn-outline {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #000;
    border-radius: 10px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #000;
    color: #fff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cta-images-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2x2 grid on mobile */
    }
    
    .cta-card {
        padding: 30px 20px;
    }
}

/* Specific Background for Package Page Footer */
/* 1. The main footer wrapper must be 100% width and have the BG color */
.site-footer.footer-about {
    background-color: #FFFAF0; 
    width: 100%;             /* Ensures it hits the left/right screen edges */
    margin: 0;               /* Removes any centering margin on the wrapper */
    padding: 60px 0 40px;
}

/* 2. The container inside the footer keeps your text centered and limited to 1200px */
.site-footer .container {
    max-width: 1200px;       /* Keeps your content aligned with the rest of the site */
    margin: 0 auto;          /* Centers the content block */
    padding: 0 20px;         /* Adds breathing room on mobile */
}

/* Ensure the copyright and nav align with the new background */
.site-footer.footer-about .footer-tagline {
    font-size: 32px;
    margin-bottom: 30px;
}

.site-footer.footer-about .footer-logo img {
    width: 200px; /* As per your previous request for 200px footer logo */
    height: auto;
    margin-bottom: 30px;
}

/* --- About Page Specific Header --- */
.about-page .site-header {
    background-color: #FDFBF8; /* Matches the hero and story background */
    border-bottom: none;       /* Removes any separating lines */
}

/* Ensure the mobile menu also matches on this page */
@media (max-width: 992px) {
    .about-page .main-nav {
        background-color: #FDFBF8;
    }
}

/* Optional: Keep the active line styling clean for the light background */
.about-page .main-nav ul li a.active {
    position: relative;
    color: #000;
}

.about-page .main-nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
}

/* ==========================================================================
   PACKAGES PAGE - HERO SECTION
   ========================================================================== */
.packages-hero {
    background-color: #FDF6E9; /* Matching your cream background */
    padding: 10px 0 30px 0; /* Plenty of air at the top */
}

.packages-main-title {
    font-family: "ivypresto-headline", serif;
    font-size: 58px;
    font-weight: 400;
    line-height: 1.1;
    color: #000;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.packages-intro-text {
    font-family: "degular", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #2b2b2b;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* ==========================================================================
   MOBILE RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
    .packages-hero {
        padding: 60px 20px 40px 20px;
    }

    .packages-main-title {
        font-size: 36px; /* Shrinks for mobile screens */
        margin-bottom: 20px;
    }

    .packages-intro-text {
        font-size: 16px;
    }
}

/* --- NEW ORNAMENTAL FLOURISH STYLE --- */
.ornamental-flourish {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto; /* Generous space above and below */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ornamental-flourish img {
    width: 90%;
    max-width: 350px; /* Limits the width for a high-end look */
    height: auto;
    display: block;
    filter: brightness(0.1); /* Ensures the black is crisp against the cream */
    opacity: 0.9;
}

/* Typography Adjustment for the section below it */
.category-title-wrap {
    margin-top: 20px;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .ornamental-flourish {
        margin: 40px auto;
    }
    .ornamental-flourish img {
        max-width: 280px; /* Smaller flourish for small screens */
    }
}


/* --- SECTION CONTAINER --- */
.packages-section {
    padding: 30px 0;
    background-color: #FDF6E9;
}

.section-title {
    font-family: "ivypresto-headline", serif;
    /* This controls the "Curated Packages for" size */
    font-size: 28px; 
    line-height: 1.1;
    margin-bottom: 50px;
    text-align: center;
    color: #000;
    font-weight: 300;
    font-style: italic;
}

.section-title span {
    display: block; /* Ensures it sits on a new line */
    /* This controls the "Kids" or "Adults" size */
    font-size: 54px; 
    font-style: italic;
    margin-top: 5px;
    font-family: "ivypresto-headline", serif;
    font-weight: 500;
}

/* Responsive tweak for mobile */
@media (max-width: 768px) {
    .section-title { font-size: 24px; }
    .section-title span { font-size: 48px; }
}

/* --- THE CARD --- */
.slider-item { padding: 0 12px; }

.pkg-card {
    position: relative;
    display: block;
    border-radius: 0; /* REMOVED ROUNDED CORNERS FOR SHARP RECTANGLE */
    overflow: hidden;
    aspect-ratio: 3 / 4; 
    text-decoration: none;
    background: #000; /* Backdrop for images */
}

.pkg-card img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block;
    transition: transform 0.5s ease;
}

.pkg-card:hover img {
    transform: scale(1.05); /* Subtle zoom on hover */
}

/* 3. WHITE BOX (Normal State) - PERFECTLY CENTERED IN MIDDLE */
.pkg-white-box {
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    /* translate(-50%, -50%) ensures the box is centered regardless of text height */
    transform: translate(-50%, -50%) !important; 
    
    background: #fff;
    width: 80%; 
    padding: 25px 15px; 
    border-radius: 0; /* SHARP EDGES */
    text-align: center;
    z-index: 5;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.pkg-white-box h3 { 
    font-family: "ivypresto-headline", serif; 
    font-size: 26px; 
    margin: 0; 
    line-height: 1.1;
    color: #000;
}

.pkg-white-box p { 
    font-family: "degular", sans-serif; 
    font-size: 14px; 
    margin: 8px 0 0; 
    color: #333; 
}

/* 4. HOVER OVERLAY - LEFT ALIGNED & TIGHT TEXT */
.pkg-hover-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertical alignment */
    align-items: flex-start;  /* LEFT ALIGN CONTENT */
    padding: 30px 30px;
    text-align: left;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    z-index: 10;
}

/* Hover Actions */
.pkg-card:hover .pkg-hover-overlay { opacity: 1; visibility: visible; }
.pkg-card:hover .pkg-white-box { opacity: 0; }

/* OVERLAY CONTENT ELEMENTS */
.pkg-bow { 
    width: 40px !important; 
    height: auto !important;
    margin-bottom: 20px;
    display: block;
}

.pkg-hover-overlay h3 {
    font-family: "ivypresto-headline", serif;
    font-size: 26px;
    margin: 0 0 10px 0;
    line-height: 1; /* Tight line height */
    color: #fff;
    font-weight: 400;
}

.pkg-desc { 
    font-family: "degular", sans-serif;
    font-size: 15px; 
    line-height: 1.3; /* Tighter line height for description */
    margin-bottom: 12px; 
    max-width: 100%;
}

.pkg-meta {
    font-family: "degular", sans-serif;
    font-size: 16px;
    margin-bottom: 2px; /* Pulls price closer */
}

.pkg-price { 
    display: block; 
    font-family: "ivypresto-headline", sans-serif;
    font-size: 30px; 
    font-weight: 600; 
    margin-bottom: 20px; 
    line-height: 1.5;
}

.pkg-btn {
    background: #fff;
    color: #000;
    padding: 12px 30px;
    font-family: "degular", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    font-size: 13px;
    text-decoration: none;
    letter-spacing: 1px;
}

/* --- RESPONSIVE MOBILE TWEAKS --- */
@media (max-width: 768px) {
    .pkg-white-box {
        width: 90%;
        padding: 20px 10px;
    }
    .pkg-hover-overlay {
        padding: 25px;
    }
    .pkg-hover-overlay h3 {
        font-size: 28px;
    }
    .pkg-price {
        font-size: 32px;
    }

    /* Allows the next/prev cards to be visible */
    .package-slider {
        padding: 0 !important; /* Reset padding for centerMode */
        overflow: visible !important;
    }

    .slider-item {
        padding: 0 10px; /* Space between the 'peeking' cards */
        opacity: 0.5;    /* Makes side cards look faded */
        transition: opacity 0.3s ease;
    }

    /* Makes the active (center) card stand out */
    .slick-center .slider-item {
        opacity: 1;
    }

    /* Style for dots to indicate more pages */
    .slick-dots {
        bottom: -30px;
        display: flex !important;
        justify-content: center;
        list-style: none;
        padding: 0;
    }
    
    .slick-dots li {
        margin: 0 5px;
    }
    
    .slick-dots li button {
        font-size: 0;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: 1px solid #000;
        background: transparent;
        cursor: pointer;
    }

    .slick-dots li.slick-active button {
        background: #000;
    }
}


.section-divider {
    width: 50%;
    max-width: 1000px;
    height: 4px;
    margin: 60px auto; /* Spacious gap between sections */
    /* Gradient: Transparent -> Soft Brown (#d6d1ca) -> Transparent */
    background: linear-gradient(to right, transparent, #7e7e7e, transparent);
    border: none;
    opacity: 0.8;
    margin-bottom: 25px;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .section-divider {
        width: 90%;
        margin: 40px auto;
    }
}

.alacarte-section {
    padding: 40px 0;
    background-color: #FDF6E9;
}

.alacarte-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
    gap: 30px; /* Space between cards */
}

.alacarte-card {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1; /* FORCES SQUARE SHAPE */
    overflow: hidden;
    text-decoration: none;
}

.alacarte-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* THE WHITE LABEL */
.alacarte-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    
    /* FIXED DIMENSIONS */
    width: 250px;           /* Fixed Width */
    height: 100px;          /* Fixed Height */
    
    /* FLEXBOX TO CENTER TEXT IN THE FIXED BOX */
    display: flex;
    align-items: center;
    justify-content: center;
    
    padding: 10px 20px;     /* Internal spacing */
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    z-index: 5;
}

.alacarte-label p {
    font-family: "ivypresto-headline", serif; /* UPDATED FONT */
    font-size: 24px;
    font-weight: 500;
    color: #000;
    margin: 0;
    line-height: 1.2;
    text-transform: none; /* Keeps original casing */
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
    .alacarte-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 600px) {
    .alacarte-grid {
        grid-template-columns: 1fr; /* 1 column on phones */
        gap: 20px;
    }
    .alacarte-label p {
        font-size: 16px;
    }
}

/* --- MOBILE RESPONSIVE TWEAKS --- */
@media (max-width: 768px) {
    .alacarte-label {
        width: 80%;       /* Switch to percentage on small screens to avoid overflow */
        height: 80px;      /* Slightly shorter on mobile */
    }
    .alacarte-label p {
        font-size: 16px;
    }
}


/* ==========================================================
   PREMIUM CONTACT SECTION - FULL SYNCED STYLE
   ========================================================== */

.premium-contact-section {
    padding: 100px 0;
    background-color: #FDF6E9; /* Page Background */
}

.contact-flex-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* CRITICAL: Aligns text and box to the very top */
    gap: 80px;
}

/* --- LEFT SIDE: TEXT --- */
.contact-text-side {
    flex: 1;
}

.contact-text-side .story-title {
    font-family: "ivypresto-headline", serif;
    font-size: 38px;
    line-height: 1.1;
    margin-top: 0; /* REMOVES DEFAULT GAP: Aligns with the box top */
    margin-bottom: 25px;
    color: #000;
    font-weight: 300;
}

.contact-intro {
    font-family: "degular", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #2b2b2b;
    max-width: 450px;
}

.ivy-font {
    font-family: "degular", serif;
    font-size: 18px;
    margin-bottom: 0px;
      color: #2b2b2b;

}

.brand-sub {
    font-family: "degular", sans-serif;
    color: #000; /* Red Brand Color */
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.contact-meta-links a {
    font-family: "degular", sans-serif;
    color: #2b2b2b;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.8;
    transition: 0.3s;
}

.contact-meta-links a:hover {
    color: #972727;
}

/* --- RIGHT SIDE: THE BEIGE BOX --- */
.contact-form-card {
    flex: 1.1;
    background-color: #EFE5D1B3; /* Semi-transparent beige */
    padding: 60px;
    border-radius: 60px; /* High rounding */
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

/* --- FORM FIELDS --- */
.byop-premium-form .form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.byop-premium-form .form-row {
    display: flex;
    gap: 20px;
}

.byop-premium-form label {
    font-family: "degular", sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    color: #000;
}

.byop-premium-form input, 
.byop-premium-form textarea {
    border: none;
    background: #fff; /* White inputs */
    padding: 20px 25px;
    border-radius: 25px; /* High rounding on fields */
    font-family: "degular", sans-serif;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.byop-premium-form input:focus, 
.byop-premium-form textarea:focus {
    background: #fcfcfc;
    box-shadow: inset 0 0 0 2px #000;
}

/* --- THE SUBMIT BUTTON --- */
/* --- COMPACT SUBMIT BUTTON --- */
.submit-btn-premium {
    background: #000;
    color: #fff;
    
    /* Reduced padding for a compact look */
    padding: 16px 40px; 
    
    /* Stop button from stretching full width */
    width: auto; 
    min-width: 180px;
    display: block;
    margin: 20px auto 0; /* Centers the button */

    border: none;
    border-radius: 50px; /* Fully rounded pill shape */
    font-family: "degular", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px; /* Slightly smaller text for elegance */
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn-premium:hover {
    background: #972727; /* Your brand red */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .contact-flex-layout { flex-direction: column; gap: 50px; }
    .contact-form-card { padding: 40px 25px; border-radius: 40px; }
    .byop-premium-form .form-row { flex-direction: column; gap: 0; }
    .contact-text-side .story-title { font-size: 40px; }
}

/* --- CONTACT PAGE SPECIFIC BUTTON SPACING --- */
.contact-page-btn {
    margin-top: 35px; /* Adds space after the email link */
    display: inline-flex; /* Ensures it stays as a pill button, not full width */
}

/* Reusing your existing button style from style.css */
.book-event-btn {
    background-color: #FFF9ED;
    color: #8B5C00;
    border: 1px solid #8B5C00;
    padding: 10px 25px;
    border-radius: 24px;
    text-decoration: none;
    font-family: "degular", sans-serif;
    font-weight: 700;
    font-size: 18px;
    align-items: center;
    transition: all 0.3s ease;
}

.book-event-btn .btn-icon {
    width: 20px;
    margin-left: 10px;
}
