/* --------------------------------------------------
   1. Modern CSS Reset
   -------------------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Heading reset — spacing controlled by utilities */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: #3179C3;
}

html {
    scroll-behavior: smooth;
}

/* >>> GLOBAL TYPOGRAPHY <<< */
body {
    font-family: "Trebuchet MS", sans-serif;
}

/* >>> GLOBAL CONTENT WIDTH CONTROL <<< */
main {
    width: 100%;
    margin: 0 auto;
    padding: 0 6px;
}

/* >>> STICKY HEADER CONTAINER <<< */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: white;
    width: 100%;
    border-bottom: 1px solid #ddd;
}

.sticky-header a {
    font-family: "Trebuchet MS", sans-serif;
    color: #993333;
}

/* >>> MAIN HEADER LAYOUT — DESKTOP DEFAULT <<< */
.header-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    width: 100%;
    padding: 6px 20px;
    gap: 6px;
}

/* LEFT — LOGO */
.header-left {
    margin-right: 20px;
}

.header-left img {
    height: 60px !important;
    width: auto !important;
    object-fit: contain;
    display: block;
}

/* CENTER — DESKTOP NAVIGATION */
.header-center {
    margin-right: 20px;
}

/* RIGHT — DESKTOP CTA / PHONE */
.header-right {
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.header-right img {
    display: block;
}

/* MOBILE ELEMENTS — HIDDEN BY DEFAULT */
.mobile-hamburger,
.mobile-menu,
.mobile-cta-row {
    display: none;
}

/* MOBILE HEADER */
@media (max-width: 768px) {
    /* Smaller padding on mobile */
    .header-content {
        padding: 8px 12px;
    }

    /* Hide desktop nav + right section */
    .header-center,
    .header-right {
        display: none;
    }

    /* Show hamburger + mobile CTA row */
    .mobile-hamburger {
        display: block;
    }

    .mobile-cta-row {
        display: flex;
        flex: 1;
        justify-content: center;
    }

    #hamburger-btn {
        font-size: 32px;
        color: #993333;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px 12px;
        margin-right: -5px;
        line-height: 1;
    }

    /* MOBILE DROPDOWN MENU */
    .mobile-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        background: white;
        width: 30%;
        padding: 0;
        position: absolute;
        top: 100%;
        right: 0;
        z-index: 9999;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.5s ease-out, opacity 0.25s ease-out;
    }

    .mobile-menu.open {
        max-height: 500px;
        opacity: 1;
    }

    .mobile-menu a {
        padding: 8px 12px;
        font-size: 16px;
        text-align: left;
        font-family: "Trebuchet MS", sans-serif;
    }

    /* Mobile CTA button */
    .mobile-cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background-color: #D9A441;
        color: #FFFFFF !important;
        font-size: 16px;
        font-family: "Trebuchet MS", sans-serif;
        font-weight: 800;
        line-height: 1.3;
        text-align: center;
        text-decoration: none;
        border-radius: 6px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.18);
    }

    .mobile-cta-btn:hover {
        background-color: #B8832F;
        box-shadow: 0 3px 6px rgba(0,0,0,0.25);
        transform: translateY(-1px);
    }

    .mobile-cta-btn:active {
        background-color: #9C6F28;
        box-shadow: 0 1px 3px rgba(0,0,0,0.20);
        transform: translateY(0);
    }
}

/* --------------------------------------------------
   MOBILE MENU ANIMATION (GLOBAL)
   -------------------------------------------------- */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease-out, opacity 0.25s ease-out;
}

/* Smaller CTA for header */
.header-cta {
    padding: 10px 18px;
    font-size: 16px;
    border-radius: 8px;
    white-space: nowrap;
}

/* TOUR FEATURES DESKTOP SECTION WRAPPER (no background here) */
.tour-features {
    font-family: "Trebuchet MS", sans-serif;
    padding: 40px 0;
}

.image-row {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Desktop size */
.image-row img {
    width: 200px;
    height: auto;
}

/* Mobile size */
@media (max-width: 768px) {
    .image-row img {
        width: 160px;
        height: auto;
    }
}

/* NARROW CENTERED BLOCK WITH BACKGROUND */
.tour-features .features-wrapper {
    background: linear-gradient(to bottom right, #f3e7d9, #fffaf5);
    max-width: 750px;
    margin: 0 auto;
    padding: 30px 20px;
    border-radius: 10px;
}

/* WIDER CENTERED BLOCK WITH BACKGROUND */
.tour-features .wide-wrapper {
    background: linear-gradient(to bottom right, #f3e7d9, #fffaf5);
    max-width: 940px;
    margin: 0 auto;
    padding: 30px 20px;
    border-radius: 10px;
}

/* Adjust scroll position for sticky header */
.tours {
    scroll-margin-top: 100px;
    /* desktop */
}

/* LIST RESET */
.tour-features .features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* EACH FEATURE ITEM */
.tour-features .features-list li {
    position: relative;
    padding-left: 2.8rem;
    margin-bottom: 1.4rem;
    font-size: 1.4rem;
    line-height: 1.5;
}

/* NUMBERED CIRCLES */
.tour-features .features-list li::before {
    content: attr(data-num);
    position: absolute;
    left: 0;
    top: 0.2rem;

    background: #993333;
    color: white;

    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: bold;
    font-size: 1.3rem;
}

/* === Acorn bullet list — Family Page === */
.acorn-list {
    list-style: none;
    padding: 0;
    margin: 1rem auto;
    max-width: 700px;
}

.acorn-list li {
    position: relative;
    padding-left: 5rem;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    line-height: 1.5;
    font-family: "Trebuchet MS", sans-serif;
}

.acorn-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 60px;
    height: 60px;
    background-image: url('/acorn.JPG');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* --------------------------------------------------
   Phase 1F — Improve Hero Image Behavior on Mobile
   -------------------------------------------------- */

.hero-image {
    width: 100%;    /* Make the image span the full width of the screen */
    height: auto;   /* Keep the image’s natural proportions */
    display: block; /* Remove tiny gaps under images caused by inline display */
    margin-top: 0;
}

.hero-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    .hero-image {
        max-height: 60vh;           /* Limit height to 60% of the viewport */
        object-fit: cover;          /* Crop edges gently to keep the image visually pleasing */
        object-position: center;    /* Keep the center of the image visible when cropping */
    }
}

/* --------------------------------------------------
   Phase 1G — Improve Desktop Navigation Spacing
   -------------------------------------------------- */

.header-center nav {
    /* The desktop navigation container */
    display: flex;
    /* Use flexbox to align items in a row */
    gap: 10px;
    /* Modern spacing between menu items */
    align-items: center;
    /* Vertically center the links */
    justify-content: center;
    /* Center the whole nav within the header */
    padding: 5px 5px;
    /* Gentle vertical breathing room */
}

.header-center nav a {
    /* Each individual navigation link */
    font-size: 18px;
    /* Slightly larger, more readable text */
    padding: 4px 6px;
    /* Small tap/click area without changing your look */
    display: inline-block;
    /* Allows padding to apply cleanly */
    line-height: 1.2;
    /* Modern, readable line height */
}

/* --------------------------------------------------
   Phase 1I — Modernize Footer Structure & Spacing
   -------------------------------------------------- */

footer {
    background-image: url('maroon_background2.jpg');
    color: white;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    margin: 20px auto 0 auto;
    /* ← THIS CENTERS THE WHOLE FOOTER */
}

.footer-content {
    /* >>> MAIN FOOTER CONTAINER <<< */
    margin: 0 auto;
    /* >>> CENTER FOOTER CONTENT HORIZONTALLY <<< */
    width: 100%;
    /* >>> ALLOW SHRINKING ON SMALLER SCREENS <<< */
    padding: 0 20px;
    /* >>> SIDE PADDING FOR COMFORTABLE SPACING <<< */
    text-align: center;
    /* >>> CENTER ALL TEXT AND LINKS <<< */
}

footer p {
    /* >>> FOOTER PARAGRAPHS <<< */
    margin: 8px 0;
    /* >>> CONSISTENT SPACING BETWEEN FOOTER LINES <<< */
    font-size: 16px;
    /* >>> READABLE TEXT SIZE FOR SENIORS AND MOBILE USERS <<< */
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    color: #D9A441;
    text-decoration: underline;
}

/* ============================================
   FOOTER COLUMNS LAYOUT
   ============================================ */

.footer-title {
    font-size: 2em;
    font-weight: bold;
    display: block;
    margin-bottom: 1rem;
}

.footer-columns {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.5em;
    margin-bottom: 0.75rem;
    margin-top: 0;
    font-weight: 600;
}

.footer-column h4 a {
    color: white;
    text-decoration: none;
}

.footer-column h4 a:hover {
    color: #D9A441;
    text-decoration: underline;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #D9A441;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .footer-column {
        width: 220px;
    }

    .footer-column h4,
    .footer-column li,
    .footer-column a {
        text-align: center;
        display: block;
    }
}

/* >>> TITLE FONT FAMILY, COLOR, ALIGNMENT, SIZE <<< */
h1,
h2,
h3,
h4 {
    font-family: Georgia, serif;
    font-style: italic;
    text-align: center;     /* >>> CENTERED HEADINGS <<< */
    font-weight: 700;       /* >>> SEMIBOLD FOR EMPHASIS <<< */
    color: #993333;        /* >>> BRAND COLOR <<< */
    letter-spacing: 1.5px;  /* >>> SLIGHT SPACING FOR ELEGANCE <<< */
}

h1 {
    font-size: 3em;
}

h2 {
    font-size: 2.5em;
}

h3 {
    font-size: 2em;
}

h4 {
    font-size: 1.5em;
}

.title-p {
    font-size: 2em;
    font-family: Georgia, serif;
    font-style: italic;
    text-align: center;     /* >>> CENTERED HEADINGS <<< */
    font-weight: 700;       /* >>> SEMIBOLD FOR EMPHASIS <<< */
    color: #993333;        /* >>> BRAND COLOR <<< */
    letter-spacing: 1.5px;  /* >>> SLIGHT SPACING FOR ELEGANCE <<< */
}

/* >>> PARAGRAPH TYPOGRAPHY (FONTS, COLORS, LINE-HEIGHT) <<< */
p {
    font-family: "Trebuchet MS", verdana, sans-serif;
    font-weight: normal;
    font-size: 1.2em;
    text-align: left;
    line-height: 1.6em;
    margin-bottom: 1rem;
}

li {
    font-family: "Trebuchet MS", verdana, sans-serif;
    font-weight: normal;
    font-size: 1em;
    text-align: left;
    line-height: 1.4em;
}

/* FONT SIZE CLASSES & LIST TYPOGRAPHY */
.vlarge {
    font-size: 2em;
}

.large {
    font-size: 1.8em;
}

.medium {
    font-size: 1.6em;
}

.normal {
    font-size: 1.4em;
}

.small {
    font-size: 1.0em;
}

.smaller {
    font-size: 0.8em;
}

.larger {
    font-size: 1.3em;
}

/* >>> PAGE CONTENT WIDTH LIMITER <<< */
.page-content {
    max-width: 1200px;      /* ideal scholarly reading width */
    margin: 0 auto;         /* centers the content */
    padding: 0 6px;        /* prevents text from touching edges */
}

/* >>> TEXT COLOR UTILITIES <<< */

.text-blue {
    color: #3179C3;
    /* your existing blue */
}

.text-maroon {
    color: #993333;
    /* your softened maroon */
}

/* >>> STANDARD BULLET LIST <<< */
.dots {
    list-style-type: disc;
}

/* >>> STANDARD TEXT BOXES <<< */
.kudos {
    font-family: "Trebuchet MS", sans-serif;
    text-align: center;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    background-color: #e6f2ff;
    padding: 12px;
    margin: auto;
    max-width: 1200px;
}

.call {
    color: white;
    border: thin;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
    background-image: url('images/maroon_background.jpg');
    padding: 30px 28px;
    margin: 0 auto;
    max-width: 1000px;
    text-align: center;
}

.sandy {
    background: linear-gradient(to bottom right, #f3e7d9, #fffaf5);
    border: 1px solid #d4b896;
    box-shadow: 0px 3px 6px rgba(80, 40, 0, 0.12);
    border-radius: 10px;
    max-width: 750px;
    margin: 0 auto;
    padding: 30px 28px;
    color: #5c3a21;}

.sandy-wide {
    background: linear-gradient(to bottom right, #f3e7d9, #fffaf5);
    border: 1px solid #d4b896;
    box-shadow: 0px 3px 6px rgba(80, 40, 0, 0.12);
    border-radius: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 28px;
    color: #5c3a21;}

.blue-block {
    background: linear-gradient(to bottom right, #ddeeff, #eef6ff);
    border: 1px solid #a8c8e8;
    box-shadow: 0px 3px 6px rgba(0, 0, 80, 0.12);
    border-radius: 10px;
    max-width: 750px;
    margin: 0 auto;
    padding: 30px 28px;
    color: #1a3a5c;
}

.blue-block-wide {
    background: linear-gradient(to bottom right, #ddeeff, #eef6ff);
    border: 1px solid #a8c8e8;
    box-shadow: 0px 3px 6px rgba(0, 0, 80, 0.12);
    border-radius: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 28px;
    color: #1a3a5c;
}

/* >>> LIST STYLE HELPERS <<< */
.numbered {
    list-style-type: decimal;
    /* >>> NUMBERED LIST ITEMS <<< */
    line-height: 1.6em;
    /* >>> MATCH PARAGRAPH LINE SPACING <<< */
    font-family: "Trebuchet MS", verdana, sans-serif;
    font-weight: normal;
    font-size: 1.2em;
    text-align: left;
}

/* >>> COLOR UTILITY CLASSES <<< */
.maroon {
    color: #993333;
}

.blue {
    color: #3179C3;
}

.green {
    color: #006600;
}

.white {
    color: white;
}

.ltgray {
    color: #f2f2f2;
}

/* ============================================
   CANYON GOLD BUTTON — unified system
   ============================================ */

.button,
.button:link,
.button:visited {
    display: inline-block;
    background-color: #D9A441;
    color: #FFFFFF;
    padding: 18px 32px;
    font-size: 20px;
    font-family: "Trebuchet MS", sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
    transition: background-color 0.25s ease,
                box-shadow 0.25s ease,
                transform 0.1s ease;
    width: auto;
}

.button:hover {
    background-color: #B8832F;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
}

.button:active {
    background-color: #9C6F28;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.20);
    transform: translateY(0);
}

/* Smaller version for the sticky header */
.header-cta {
    padding: 10px 18px;
    font-size: 16px;
    border-radius: 8px;
    white-space: nowrap;
}

/* Center a standalone button */
.btn-center {
    display: block;
    text-align: center;
    margin: 28px 0;
}

/* ============================================
   BUTTON GROUP — spaced buttons that wrap nicely
   ============================================ */

.button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

/* Mobile — full width */
@media (max-width: 600px) {
    .button {
        width: 100%;
        padding: 20px 0;
        font-size: 21px;
        letter-spacing: 1.2px;
        text-align: center;
        display: block;
    }
}

/* ============================================
   BOOKING FORM — Canyon Gold Theme
   ============================================ */

/* Main booking form container */
form.yellow {
    background: linear-gradient(135deg, #D9A441 0%, #EBCB7A 100%);
    color: #5C3A21;
    width: 100%;
    max-width: 500px;
    margin: 40px auto;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid #D4B896;
    overflow: hidden;
}

/* Scroll correctly to top of booking form */
#book {
    scroll-margin-top: 110px;
}

/* Form heading */
form.yellow h3 {
    color: #5C3A21;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

/* Label styling */
form.yellow label {
    display: block;
    color: #5C3A21;
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 8px;
    margin-top: 18px;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0;
}

.ticket-row label {
    margin: 0;
    flex: 1;
}

.ticket-row select {
    width: 80px;
    padding: 6px;
    font-size: 1em;
    border: 2px solid #D4B896;
    border-radius: 6px;
    background-color: white;
    color: #5C3A21;
}

/* Input fields */
#tourDate,
#tourTime,
#pickupLocation {
    width: 100%;
    padding: 12px 15px;
    font-size: 1.1em;
    border: 2px solid #D4B896;
    border-radius: 8px;
    background-color: white;
    color: #5C3A21;
    font-family: "Trebuchet MS", verdana, sans-serif;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

#tourDate:focus,
#tourTime:focus,
#pickupLocation:focus {
    outline: none;
    border-color: #C85A3E;
    box-shadow: 0 0 0 3px rgba(200, 90, 62, 0.1);
}/* Textarea specific */
#pickupLocation {
    min-height: 80px;
    resize: vertical;
}

/* Ticket counter labels */
form.yellow p {
    color: #5C3A21;
    font-size: 1.15em;
    margin: 12px 0 8px 0;
    font-weight: 500;
    text-align: left;
}

/* Number spinners */
form.yellow input[type="number"] {
    width: 70px;
    padding: 8px;
    font-size: 1.2em;
    border: 2px solid #D4B896;
    border-radius: 6px;
    text-align: center;
    background-color: white;
    margin-left: 10px;
}

/* Total display */
form.yellow h2 {
    color: #C85A3E;
    font-size: 2.2em;
    margin: 25px 0 20px 0;
    text-align: center;
    font-weight: 700;
}

/* Submit button */
form.yellow button[type="submit"],
form.yellow input[type="submit"] {
    width: 100%;
    padding: 16px;
    font-size: 1.4em;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #C85A3E 0%, #A0472E 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(200, 90, 62, 0.3);
}

form.yellow button[type="submit"]:hover,
form.yellow input[type="submit"]:hover {
    background: linear-gradient(135deg, #A0472E 0%, #8B3D25 100%);
    box-shadow: 0 5px 15px rgba(200, 90, 62, 0.4);
    transform: translateY(-2px);
}

form.yellow button[type="submit"]:active,
form.yellow input[type="submit"]:active {
    transform: translateY(0);
}

/* Mobile responsive */
@media only screen and (max-width: 768px) {
    form.yellow {
        width: 98%;
        max-width: 98%;
        padding: 20px 15px;
        margin: 20px auto;
    }

    form.yellow h3 {
        font-size: 1.5em;
    }

    form.yellow h2 {
        font-size: 1.8em;
    }

    form.yellow input[type="number"] {
        width: 60px;
        font-size: 1.1em;
    }

    #location {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }
}

/* FULL-WIDTH HEADER BAR — only inside .tour-features */
.tour-features h3.mb-1 {
    background: linear-gradient(to right, #8a6a3f, #bfa57a);
    /* warm canyon beige → lighter beige */
    color: white;
    padding: 0.75rem 1rem;
    /* your original padding */
    margin: 0;
    font-weight: bold;

    /* FULL-WIDTH MAGIC */
    width: 100vw;
    /* span the entire viewport width */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    /* pull outward to full width */
    margin-right: -50vw;

    /* optional: remove rounding since it's full-width */
    border-radius: 0;
}

/* CONTENT BOX — only inside .tour-features */
.tour-features .section.bg-beige {
    background: linear-gradient(to bottom right, #f7f2e9, #ffffff);
    /* soft beige → white */
    border: 1px solid #d0d0d0;
    border-radius: 0 0 6px 6px;
    padding: 1.2rem;
}

/* NUMBERED BADGES — only inside .tour-features */
.tour-features .section p {
    position: relative;
    padding-left: 2.2rem;
}

/* FULL-WIDTH BLUE HEADER BAR — only for the reviews section */
#reviews-section h3.kudos.blue.mb-2 {
    background: linear-gradient(to right, #1e4b7a, #3f6fa3);
    /* deep blue → lighter blue */
    color: white;
    padding: 0.75rem 1rem;
    margin: 0;
    font-weight: bold;

    /* FULL-WIDTH MAGIC (same as features header) */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    border-radius: 0;
    /* full-width bars shouldn't have rounded corners */
}

.more-info h3.maroon.mb-1 {
    background: linear-gradient(to right, #7a1e1e, #a34b4b);
    /* deep maroon → lighter maroon */
    color: white;
    padding: 0.75rem 1rem;
    margin: 0;
    font-weight: bold;
}

.more-info .section {
    background: linear-gradient(to bottom right, #f7f2e9, #ffffff);
    /* soft beige → white */
    border: 1px solid #d0d0d0;
    border-radius: 0 0 6px 6px;
    padding: 1.2rem;
}

/*  UNIVERSAL SPACING UTILITIES */
/* Margin-bottom */
.mb-0 {
    margin-bottom: 0 !important;
}

.mb-0-5 {
    margin-bottom: 0.5rem !important;
}

.mb-1 {
    margin-bottom: 1rem !important;
}

.mb-1-5 {
    margin-bottom: 1.5rem !important;
}

.mb-2 {
    margin-bottom: 2rem !important;
}

.mb-3 {
    margin-bottom: 3rem !important;
}

.mb-4 {
    margin-bottom: 4rem !important;
}

.mb-5 {
    margin-bottom: 5rem !important;
}


/* Margin-top */
.mt-0 {
    margin-top: 0 !important;
}

.mt-0-5 {
    margin-top: 0.5rem !important;
}

.mt-1 {
    margin-top: 1rem !important;
}

.mt-1-5 {
    margin-top: 1.5rem !important;
}

.mt-2 {
    margin-top: 2rem !important;
}

.mt-3 {
    margin-top: 3rem !important;
}

.mt-4 {
    margin-top: 4rem !important;
}

/* ============================
   UNIVERSAL PADDING UTILITIES
   ============================ */

.p-0      { padding: 0 !important; }
.p-0-5    { padding: 0.5rem !important; }
.p-1      { padding: 1rem !important; }
.p-1-5    { padding: 1.5rem !important; }
.p-2      { padding: 2rem !important; }
.p-3      { padding: 3rem !important; }

/* Padding-top */
.pt-0     { padding-top: 0 !important; }
.pt-0-5   { padding-top: 0.5rem !important; }
.pt-1     { padding-top: 1rem !important; }
.pt-1-5   { padding-top: 1.5rem !important; }
.pt-2     { padding-top: 2rem !important; }
.pt-3     { padding-top: 3rem !important; }

/* Padding-bottom */
.pb-0     { padding-bottom: 0 !important; }
.pb-0-5   { padding-bottom: 0.5rem !important; }
.pb-1     { padding-bottom: 1rem !important; }
.pb-1-5   { padding-bottom: 1.5rem !important; }
.pb-2     { padding-bottom: 2rem !important; }
.pb-3     { padding-bottom: 3rem !important; }

/* ============================
   UNIVERSAL CENTERING UTILITIES
   ============================ */

.text-center {
    text-align: center;
}

.centered-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
}
/* ============================
   TOUR CARD LAYOUT
   ============================ */

.tour-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    margin-left: 4rem;
    margin-right: 4rem;
}

/* Photo column */
.tour-photo {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 6px;
    object-fit: cover; /* optional */
}

/* Text column */
.tour-info {
    flex: 1;
}

.tour-info h3 {
    margin: 0 0 0.5rem 0;
}

.tour-info p {
    margin: 0 0 0.75rem 0;
}

/* ============================
   TOUR CARD MOBILE (STACKED)
   ============================ */

@media (max-width: 768px) {
.tour-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        margin-left: 0;
        margin-right: 0;
    }

    .tour-photo {
        width: 100%;
        max-width: 340px;
    }

    .tour-info {
        text-align: center;
    }
}

/* ============================================
   FORM TYPOGRAPHY — Trebuchet MS throughout
   Add this at the bottom of your styles.css
   ============================================ */

form.yellow,
form.yellow label,
form.yellow p,
form.yellow input,
form.yellow select,
form.yellow textarea,
form.yellow h3,
form.yellow #total-price {
    font-family: "Trebuchet MS", verdana, sans-serif;
}

/* Larger text for labels and dropdowns */
form.yellow label {
    font-size: 1.25em;
}

form.yellow input[type="date"],
form.yellow textarea,
form.yellow select {
    font-size: 1.15em;
}

/* ============================================
   PRIVATE TOUR TOGGLE BUTTON
   ============================================ */

.private-toggle-btn {
    display: inline-block;
    background-color: #3179C3;          /* brand blue — default state */
    color: #ffffff;
    font-family: "Trebuchet MS", sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 3px 8px rgba(49, 121, 195, 0.35);
    transition: background-color 0.25s ease, transform 0.1s ease, box-shadow 0.25s ease;
}

.private-toggle-btn:hover {
    background-color: #1a4f8a;          /* deep blue on hover */
    box-shadow: 0 5px 16px rgba(26, 79, 138, 0.45);
    transform: translateY(-2px);
}

.private-toggle-btn:active {
    background-color: #0e3366;
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(14, 51, 102, 0.3);
}

/* When private mode is ON — deeper blue, white text */
.private-toggle-btn.private-active {
    background-color: #1a4f8a;
    color: #ffffff;
    border: none;
    box-shadow: 0 3px 10px rgba(26, 79, 138, 0.4);
}

.private-toggle-btn.private-active:hover {
    background-color: #0e3366;
    color: #ffffff;
    box-shadow: 0 5px 16px rgba(14, 51, 102, 0.45);
}

/* ============================================
   TICKET ROWS — inline label + dropdown
   ============================================ */

.ticket-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    gap: 12px;
}

.ticket-row label {
    flex: 1;
    margin: 0;
    font-family: "Trebuchet MS", verdana, sans-serif;
    font-size: 1.25em;
    font-weight: 500;
    color: #5C3A21;
    line-height: 1.3;
}

.ticket-row select {
    flex-shrink: 0;
    width: 70px;
    padding: 8px 6px;
    font-family: "Trebuchet MS", verdana, sans-serif;
    font-size: 1.15em;
    border: 2px solid #D4B896;
    border-radius: 6px;
    background-color: white;
    color: #5C3A21;
    text-align: center;
}

/* ============================================
   PRIVATE MODE — form keeps gold background,
   only input borders get a blue accent
   ============================================ */

form.yellow.private-mode input[type="date"],
form.yellow.private-mode textarea,
form.yellow.private-mode select {
    border-color: #3179C3;
}

/* ============================================
   SOCIAL MEDIA ICONS
   ============================================ */

.social-links {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: #ffffff;
    font-size: 2rem;
}

.social-links a:hover {
    color: #D9A441;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    border-bottom: 1px solid #d4c4a8;
    padding-bottom: 1rem;
}

