
 /* @import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css"); */

/* Variables: Colors */
:root {
    --primary: #cebc74;
    --primary-hover: #c5af59;
    --primary-active: #dacc95;
    --secondary: #1a1d2c;
    --black: #000;
    --black-09: rgba(0, 0, 0, 0.9);
    --black-08: rgba(0, 0, 0, 0.8);
    --black-07: rgba(0, 0, 0, 0.7);
    --black-06: rgba(0, 0, 0, 0.6);
    --black-05: rgba(0, 0, 0, 0.5);
    --white: #fff;
    --white-09: rgba(255, 255, 255, 0.9);
    --white-08: rgba(255, 255, 255, 0.8);
    --white-07: rgba(255, 255, 255, 0.7);
    --white-06: rgba(255, 255, 255, 0.6);
    --white-05: rgba(255, 255, 255, 0.5);
    /* BootStrap Variable Overrides */

    --bs-body-bg: var(--black);
    --bg-primary: var(--primary);
    --bg-secondary: var(--secondary);
    --bg-section: var(--secondary);
    --bg-blockquote: black;
    --text: var(--white-09);
    --text-inv: var(--black-09);
    --font: "Roboto Flex", sans-serif;
    --text-feature-label: normal 700 10px / 12px var(--font);
    --text-feature-text: normal 500 13px /16px var(--font);
    --text-warning: normal 300 13px / 15px var(--font);
    --text-body: normal 400 13px / 15px var(--font);
}

.btn-primary {
    --bs-btn-color: var(--black-09);
    --bs-btn-bg: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-color: var(--black);
    --bs-btn-hover-bg: var(--primary-hover);
    --bs-btn-hover-border-color: var(--primary-hover);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: var(--black-09);
    --bs-btn-active-bg: var(--primary-active);
    --bs-btn-active-border-color: var(--primary-active);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--black-05);
    --bs-btn-disabled-bg: var(--primary);
    --bs-btn-disabled-border-color: var(--primary);
}

html, body {
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    font-family: var(--font);
}

.hidden {
    display: none;
}

header {
    border-top: 8px solid var(--primary);
    padding-top: 0px;
    min-height: 70px;
}

.navbar .container {
    padding-left: 0;
}

.navbar-nav {
    gap: 8px
}

    .navbar-nav .nav-item .nav-link {
        text-align: center;
        font-size: 1.1rem;
        line-height: 1.3rem;
    }

.navbar-brand {
    display: flex;
    align-items: center;
    height: 70px;
    width: 160px;
    margin-top: -8px;
    background-color: white;
}

.brand-logo {
    height: auto;
    width: 160px;
    display: block;
}

button.navbar-toggler:focus {
    box-shadow: unset !important;
}

.navbar-toggler-icon {
    background-image: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "bootstrap-icons";
    font-size: 1.75rem;
    color: white;
}

    .navbar-toggler-icon::before {
        content: "\f479"; /* list */
    }

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
    content: "\f659"; /* x */
}

.hero {
    width: 100%;
    overflow: hidden;
}

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

.hero-section {
    border-bottom: 2px solid var(--primary);
}

.tours-section,
.site-navbar,
.info-page-section {
    background-color: var(--bg-section)
}

.tours-section,
.info-page-section {
    border: 2px solid var(--primary);
    border-width: 2px 0 2px 0;
}

@media (max-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: unset;
    }
}

@media (max-width: 768px) {
    .container, .container-md, .container-sm {
        max-width: unset;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 576px) {
    .container, .container-sm {
        /* max-width: unset; */
        padding: 0;
    }
}

.blockquote-section {
    background-image: url("../../resources/images/textures/Blockquote_bg.png");
    background-size: 100%;
}

.blockquote-separator {
    height: 30px;
    width: 100%;
    background-image: url("../../resources/images/textures/Greek_border.png");
    background-repeat: repeat;
    background-size: 30px;
    display: block;
}

.blockquote.container {
    margin-bottom: 0;
}

.row.tour-cards-container {
    max-width: 100%;
    scroll-snap-type: x mandatory;
}


.tour-card {
    min-width: 260px;
    scroll-snap-align: start;
    height: 300px;
    /* margin-bottom: 1rem; */
}

@media (min-width: 992px) {
    .tour-card {
        min-width: 23%;
    }
}

.card {
    /* max-height: 300px; */
    /* height: 100%; */
    border-radius: 6px;
    border: 1px solid white;
    overflow: hidden;
}

.card-bg, .card-fg {
    border-radius: 0;
}

    .card-fg .card-img {
        left: 0;
        bottom: 0;
        position: absolute;
        height: 100%;
        width: auto;
    }

.card-img {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.card-header {
    align-items: start;
    flex-wrap: nowrap !important;
    justify-content: left !important;
    gap: unset !important;
}

.card-info {
    height: auto;
}

    .card-info.tour-date {
        display: inline-flex;
        flex: 0 0 auto;
        max-width: 50%;
        width: auto;
        white-space: normal;
    }

    .card-info.tour-price {
        margin-left: auto;
        float: right;
        display: inline-block;
    }

.card-contents {
    z-index: 1;
    height: 100%;
    position: relative;
}

.card-body {
    display: inline-flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
}

.mask {
    background: linear-gradient( to bottom, hsla(0, 0%, 0%, 0) 0%, hsla(0, 0%, 0%, 0.5) 30%, hsla(0, 0%, 0%, 0.8) );
    height: 160px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0
}

#tour-info-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    gap: 16px;
    /* padding-left:0; */
    position: relative;
}

    #tour-info-container .tour-page-info {
        display: inline-flex;
        flex-direction: column;
        flex: 1 1 600px;
        /* max-width: calc(100% - 400px); */
        min-width: 320px;
    }

    #tour-info-container .tour-info-section {
        padding-left: 10px;
        padding-right: 10px;
        margin-top: 16px;
    }

    #tour-info-container .tour-options-container {
        position: fixed;
        width: 100%;
        height: auto;
        bottom: 0;
        z-index: 2;
    }

    #tour-info-container .tour-page-info > iframe {
        max-width: 100%;
    }

.tour-info-section iframe {
    width: 100%;
}

#tailored-tours-section,
#contact-us-section {
    background-color: var(--black)
}

    #tailored-tours-section #tour-info-container .tour-options-container {
        position: relative;
        flex-direction: column;
        8
    }

@media (min-width: 768px) {
    #tour-info-container .tour-options-container {
        display: inline-flex;
        position: sticky;
        flex-direction: column;
        flex: 2 1 400px;
        max-width: 400px;
        min-width: 320px;
        padding-top: 16px;
        align-items: center;
    }
}

#tailored-tours-section #tour-info-container {
    flex-direction: column;
    position: relative;
    gap: 0
}

    #tailored-tours-section #tour-info-container .tour-options {
        order: -1;
    }

@media (min-width: 768px) {
    #tailored-tours-section #tour-info-container {
        flex-direction: row;
        position: relative;
    }
}

#tour-info-container .tour-options-container .tour-options {
    height: auto;
    width: 100%;
    background-color: var(--bg-secondary);
    position: sticky;
    top: 0;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 340px;
    padding-top: 0!important;
}

/* Tour Page Options */
.tour-options-header .label-from {
    margin-bottom: 0;
}

.tour-options-header .label-per-person {
    height: 28px;
    line-height: 30px;
    margin-bottom: 8px;
    font-weight:  300;
    font-size: 15px;
    line-height: 32px;
}

.tour-options-header .tour-price {
    padding-right: 8px;
    font-weight: 500;
}

.tour-options-header {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    align-items: end;
    width: 100%;
    background-color: var(--bg-secondary);
    border: unset;
    padding: 24px 24px 12px 24px;
}

    .tour-options-header .label-from {
        display: block;
        width: 100%;
        margin: 0;
    }
/* Tour Page Calendar */
.ui-datepicker-header {
    /* padding: 0; */
}

.tour-option-dates #calendar {
    width: 100%;
}

.tour-option-dates {
    position: relative;
    background-color: #000;
    border-radius: 6px;
}

#toggle-calendar.show {
    order: 2;
    max-width: 120px;
    margin: 0;
    width: 100%;
    height: 38px;
}

#toggle-calendar {
    text-align: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 120px;
}

#toggle-calendar.hide {
    background-color: unset;
    border: unset;
    position: absolute;
    left: 0;
    top: 0;
    margin: 0 !important;
    color: transparent;
}

.tour-option {
    margin-top: 8px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.tour-option-dates {
    border: var(--bs-border-width) solid var(--bs-border-color);
}
.tour-option-dates .form-control {
    border: unset;
}
    .tour-option #calendar > div {
        width: 100%;
        padding: 12px;
    }

    .tour-option #calendar td span {
        margin: auto;
    }

    .tour-option #calendar tbody td {
        height: 48px;
    }

#places-warning {
    /* background-color: var(--black-05); */
    padding: 4px;
    font: var(--text-warning);
}

#book-tour-text {
    font: var(--text-body);
    margin: 16px 0 16px 0;
}

.book-tour-button {
    margin: 4px 0;
}

.tour-options-book {
    /* margin-top: 24px!important; */
}

/* eft */
#book-tour-button {
    display: none;
}

.book-tour-button.disabled {
    background-color: var(--bs-btn-disabled-bg);
    color: var(--bs-btn-disabled-color);
}
#book-tour-text {
    margin
}
/* .tour-options-container {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    width: 100%;
    display: block !important; /* override d-flex on mobile */
    border-top: 1px solid rgba(255,255,255,0.15);
    background: var(--bs-body-bg, #111);
} */



/* DESKTOP: keep your original layout/behavior */
@media (min-width: 768px) {
  .tour-options-toggle {
    cursor: default;
  }
  #tourOptionsCollapse {
    display: block !important;
    height: auto !important;
    visibility: visible !important;
  }
}

.tour-options-toggle {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
}

.tour-options-header-left {
    display: inline-flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
}

.tour-options-chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg); /* down */
    transition: transform 0.2s ease;
    opacity: 0.9;
    flex: 0 0 auto;
}

.tour-options-toggle:not(.collapsed) .tour-options-chevron {
    transform: rotate(-135deg);
}


/* --- MOBILE ONLY: bottom sheet behavior --- */
@media (max-width: 767.98px) {

    #tour-info-container .tour-options-container {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1030;
        width: 100%;
        display: block !important;
        border-top: 2px solid var(--bg-primary);
        background: var(--bg-secondary);
    }

    body {
        padding-bottom: 88px;
    }

    .tour-options-header.tour-options-toggle {
        width: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 12px;

        /* Preserve your existing header padding vibe */
        padding: 20px 24px 14px 24px;

        /* Keep your visual style */
        background-color: var(--bg-secondary);
        color: var(--text);
        text-align: left;
    }

    #tourOptionsCollapse .tour-options {
        max-height: 60vh;
        overflow-y: auto;
        padding: 16px !important; 
        min-width: 0; 
    }

    .tour-option-dates #calendar {
        position: relative;
        z-index: 2000;
    }

    #toggle-calendar {
        pointer-events: auto;
    }
}


@media (min-width: 768px) {

    #tourOptionsCollapse {
        display: block !important;
        height: auto !important;
        visibility: visible !important;
    }

    .tour-options-chevron {
        display: none;
    }
    
    .tour-options-header.tour-options-toggle {
        cursor: default;
    }
}


@media (max-width: 767.98px) {
    #tour-info-container .tour-options-container .tour-options {
        min-width: 0 !important;
    }
}



/* Tour Features */
.tour-features {
    background-color: var(--white);
    color: var(--text-inv);
    font-size: 12px;
    flex-wrap: wrap;
    row-gap: 8px;
    column-gap: 4px;
    padding: 8px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    margin-bottom: 24px;
}

.feature-item {
    gap: 4px;
    flex: 1 10 130px;
    min-width: 130px;
    /* max-width: 30%; */
    align-items: center;
    justify-content: flex-start;
}

    .feature-item.tour-point {
        min-width: 190px;
        flex: 10 1 200px;
    }

.feature-icon img {
    width: 36px;
    height: 36px;
}

.feature-info {
    /* min-width: 0%; */
    flex: 1 1 100px;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}

.feature-label {
    font: var(--text-feature-label);
    text-transform: uppercase;
    color: var(--text-inv-s);
    flex: 1 1 100%;
    display: inline-flex;
}

.feature-text {
    display: inline-flex;
    font: var(--text-feature-text);
    text-wrap: wrap;
    flex: 0 1 auto;
    /* min-width: 0%; */
    /* max-width: 150px; */
    white-space: pre-wrap;
}





/* Accordion */
.accordion {
    width: 100%;
}

.accordion-header,
.accordion-item,
.accordion-button {
    border-color: var(--primary);
    box-shadow: unset;
}

.accordion-button {
    background-color: unset !important;
    color: var(--primary) !important;
}

.accordion-button::after {
    font-family: "bootstrap-icons";
    content: "\f286";
    box-shadow: unset;
}

.accordion-button::after {
    background-image: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
}

.accordion-button:not(.collapsed) {
    box-shadow: unset !important;
}

/* Reusable CTA inside accordion sections */
.service-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.15); /* Adjust if light theme */
    text-align: center;
}

.service-cta-text {
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.service-cta-btn {
    padding: 0.6rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-cta-btn:hover {
    transform: translateY(-2px);
}



/* Tour Suggestion Chips */


/* Chip container */
.chip-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

/* Hide native checkbox */
.chip-input {
    display: none;
}

/* Chip appearance */
.chip {
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid var(--white-05);
    background-color: transparent;
    color: var(--white-08);
    cursor: pointer;
    user-select: none;
    font-size: 0.9rem;
    transition: all 0.15s ease-in-out;
}

    /* Hover */
    .chip:hover {
        background-color: var(--white-05);
    }

/* Selected state */
.chip-input:checked + .chip {
    background-color: var(--primary);
    color: var(--black);
    border-color: var(--primary);
    font-weight: 600;
}


/* Tailor-Made Forms */
.tailored-form-block fieldset {
    background: var(--bg-secondary);
    border: 1px solid var(--primary);
    border-radius: 8px;
    padding: 16px;
}

.tailored-request-form fieldset {
}

.tailored-request-form legend {
    color: var(--white-09);
}


/* Footer */
.site-footer {
    background-color: var(--black);
}

/* Link “cloud” */
.footer-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 16px; /* row gap / column gap */
    justify-content: flex-start;
    max-width: 760px; /* keeps it tidy on very wide screens */
}

    /* Link look */
    .footer-links a {
        text-decoration: none;
        color: var(--white-08);
        padding: 2px 6px;
        /* border-radius: 999px;*/
        /* border: 1px solid var(--white-05); */
        transition: background-color .15s ease-in-out, border-color .15s ease-in-out;
    }

        .footer-links a:hover {
            background-color: var(--white-05);
            border-color: var(--white-07);
            color: var(--white);
        }

/* Branding */
.footer-brand {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-tagline {
    color: var(--white-07);
}

/* Desktop alignment */
@media (min-width: 992px) {
    .footer-links {
        justify-content: flex-end;
    }
}

/* Contact Us Form */

.contact-info-block,
.contact-form {
    background: var(--bg-secondary);
    border: 1px solid var(--primary);
    border-radius: 8px;
    padding: 16px;
}

    .contact-info-block a {
        color: var(--primary);
        text-decoration: none;
    }

        .contact-info-block a:hover {
            text-decoration: underline;
        }

.recaptcha-placeholder {
    height: 78px;
    border: 1px dashed var(--white-05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-06);
    font-size: 0.9rem;
}

/* Meet Our Team CTA */
.cta-block {
    background: var(--bg-secondary);
    border: 1px solid var(--white-05);
    border-radius: 8px;
}

    .cta-block h2 {
        margin-bottom: 8px;
    }

/* Booking Form */

.booking-form-block {
    background: var(--bg-secondary);
    border: 1px solid var(--white-05);
    border-radius: 8px;
    padding: 16px;
}

.booking-summary-card {
    background: var(--bg-section);
    border: 1px solid var(--white-05);
    border-radius: 8px;
}

.business-fields {
    background: var(--bg-section);
    border: 1px solid var(--white-05);
    border-radius: 8px;
}

/* .booking-steps .nav-link {
  border: 1px solid var(--white-05);
} */

.booking-steps .nav-link.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
}

.recaptcha-placeholder {
    height: 78px;
    border: 1px dashed var(--white-05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-06);
    font-size: 0.9rem;
}