/*
Theme Name: Sensation Yacht Charter
Theme URI: https://www.baycharters.co.nz
Author: Bay of Islands Yacht Charters Ltd
Author URI: https://www.baycharters.co.nz
Description: Custom WordPress theme for Sensation Bareboat Yacht Charter in the Bay of Islands, New Zealand. A single-page theme featuring hero video, gallery lightbox, testimonials scroller, pricing table, and contact form.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sensation-charter
Tags: one-page, custom-menu, featured-images, translation-ready
*/

/* --- Custom Font --- */
@font-face {
    font-family: 'TrajanPro-Bold';
    src: url('fonts/TrajanPro-Bold.otf') format('opentype');
    font-display: swap;
}

/* --- CSS Variables --- */
:root {
    --bg-light: #fbfbfb;
    --primary-accent: #606e86;
    --bg-grey: #dedfe0;
    --primary-dark: #22385a;
    --text-muted: #9da6b4;
    --white: #ffffff;
    --black: #000000;
    --nav-height-scrolled: 80px;
    --nav-height-initial: 110px;
}

/* --- Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height-scrolled);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--primary-dark);
    line-height: 1.7;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

section:nth-of-type(odd) {
    background-color: var(--bg-light);
}

section:nth-of-type(even) {
    background-color: #f3f5f8;
}

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 600;
    color: var(--primary-dark);
}

h1, h2 {
    font-family: 'TrajanPro-Bold', 'Cabin Condensed', sans-serif;
    font-weight: 700;
}

h1 { font-size: 4rem; margin-bottom: 20px; }
h2 { font-size: 2.5rem; margin-bottom: 40px; text-align: center; }
h3 { font-size: 1.5rem; margin-bottom: 15px; }
p { margin-bottom: 15px; color: var(--primary-accent); }
a { color: var(--primary-accent); text-decoration: none; }

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-accent);
    color: var(--bg-light);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-dark);
    border-color: var(--primary-accent);
}

.btn-outline:hover {
    background-color: var(--primary-accent);
    color: var(--bg-light);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    color: var(--text-muted);
}

.curved-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.curved-divider.top {
    top: -1px;
    bottom: auto;
    transform: rotate(0deg);
}

.curved-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.curved-divider .shape-fill {
    fill: #f3f5f8;
}

section:nth-of-type(even) + section .curved-divider.top .shape-fill {
    fill: #f3f5f8;
}

section:nth-of-type(odd) + section .curved-divider.top .shape-fill {
    fill: var(--bg-light);
}

/* --- Header / Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height-initial);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: height 0.4s ease, box-shadow 0.4s ease;
    padding: 0 20px;
}

.navbar.scrolled {
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    height: var(--nav-height-scrolled);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-logo img {
    padding-top: 5px;
    height: 105px;
    width: auto;
    transition: height 0.4s ease;
}

.navbar.scrolled .navbar-logo img {
    height: var(--nav-height-scrolled);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--primary-dark);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-accent);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.menu-toggle { display: none; }

/* --- Hero Section --- */
#home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: var(--nav-height-initial);
    position: relative;
    overflow: hidden;
    background-color: var(--primary-dark);
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    object-fit: cover;
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 56, 90, 0.7);
    z-index: 2;
}

.hero-content {
    max-width: 90%;
    width: 800px;
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    color: var(--white);
    text-transform: uppercase;
}

.hero-content p {
    color: rgba(251, 251, 251, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
    margin-top: 20px;
}

.hero-content .btn {
    background-color: var(--primary-accent);
    color: var(--white);
    border-color: var(--primary-accent);
    padding: 15px 35px;
    font-size: 1.1rem;
}

.hero-content .btn:hover {
    background-color: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
}

/* --- Aboard Sensation Section --- */
.sensation-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    text-align: center;
}
.sensation-image {
    flex: 1;
    max-width: 600px;
}
.sensation-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(96, 110, 134, 0.15);
}
.sensation-specs {
    flex: 1.2;
    max-width: 800px;
}
.sensation-specs h2 {
    text-align: center;
}

.specs-grid {
    column-count: 1;
    column-gap: 40px;
    margin-top: 20px;
    text-align: left;
    display: block;
}
.spec-item {
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    margin-bottom: 20px;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
}
.spec-item::before {
    content: '\f138';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-accent);
    position: absolute;
    left: 0;
    top: 5px;
}
.spec-item strong {
    display: block;
    color: var(--primary-dark);
}

/* --- Enhanced Locations Section --- */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.location-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(96, 110, 134, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
    z-index: 2;
}

.location-card:hover::before {
    left: 100%;
}

.location-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(96, 110, 134, 0.05) 50%,
        rgba(96, 110, 134, 0.1) 100%
    );
    transition: height 0.4s ease;
    z-index: 1;
}

.location-card:hover::after {
    height: 100%;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 40px rgba(96, 110, 134, 0.2),
        0 10px 20px rgba(96, 110, 134, 0.1);
}

.location-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.location-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1) saturate(1.2);
}

.location-card-content {
    padding: 25px;
    background: var(--white);
    position: relative;
    z-index: 3;
    transition: transform 0.4s ease;
}

.location-card:hover .location-card-content {
    transform: translateY(-5px);
}

.location-card-content h3 {
    margin-bottom: 10px;
    transition: color 0.3s ease;
    position: relative;
}

.location-card:hover .location-card-content h3 {
    color: var(--primary-accent);
}

.location-card-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        var(--primary-accent),
        transparent
    );
    transition: width 0.4s ease;
}

.location-card:hover .location-card-content h3::after {
    width: 80%;
}

.location-card-content p {
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.9;
}

.location-card:hover .location-card-content p {
    transform: scale(1.02);
    opacity: 1;
}

/* --- Gallery Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(34, 56, 90, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay p {
    color: var(--white);
    margin: 0;
    font-weight: 500;
}

.gallery-row-center {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.gallery-row-center .gallery-item {
    flex: 0 1 300px;
}

/* --- Lightbox Styles --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}
.lightbox.active {
    display: flex;
}
.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.lightbox-image {
    max-width: 100%;
    max-height: calc(90vh - 120px);
    border-radius: 10px;
}
.lightbox-close {
    position: absolute;
    top: -10px;
    right: 0;
    font-size: 2.5rem;
    color: var(--white);
    cursor: pointer;
    z-index: 2002;
}
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: var(--white);
    cursor: pointer;
    padding: 10px;
    z-index: 2002;
    background-color: rgba(0,0,0,0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-arrow.prev { left: -60px; }
.lightbox-arrow.next { right: -60px; }
.lightbox-thumbnails {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    max-width: 90vw;
    overflow-x: auto;
    padding: 5px;
}
.lightbox-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}
.lightbox-thumb.active {
    border-color: var(--white);
}

/* --- Testimonials Section --- */
.testimonials-container {
    position: relative;
}
.scrolling-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-accent) var(--bg-grey);
}
.scrolling-wrapper::-webkit-scrollbar {
    height: 8px;
}
.scrolling-wrapper::-webkit-scrollbar-track {
    background: var(--bg-grey);
    border-radius: 10px;
}
.scrolling-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-accent);
    border-radius: 10px;
}

.testimonial-card-slick {
    display: inline-block;
    width: 350px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(96, 110, 134, 0.1);
    position: relative;
    border-top: 5px solid var(--primary-accent);
    white-space: normal;
    vertical-align: top;
    margin-right: 20px;
}
.star-rating {
    color: #ffc107;
    margin-bottom: 15px;
}
.testimonial-card-slick p {
    font-style: italic;
    color: var(--primary-accent);
    margin-bottom: 20px;
}
.testimonial-author {
    font-weight: 600;
    color: var(--primary-dark);
    text-align: right;
}
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    border: 1px solid var(--bg-grey);
    color: var(--primary-dark);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.scroll-arrow:hover {
    background-color: var(--primary-accent);
    color: var(--white);
}
.scroll-arrow.left-arrow {
    left: -20px;
}
.scroll-arrow.right-arrow {
    right: -20px;
}

/* --- About Us Section --- */
.about-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}
.about-image img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(96, 110, 134, 0.15);
}
.about-text p {
    color: var(--primary-accent);
}
.about-text p:last-child {
    margin-bottom: 0;
}

/* --- Pricing Section --- */
.pricing-container {
    max-width: 900px;
    margin: auto;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(34, 56, 90, 0.1);
    text-align: center;
}
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}
.pricing-table th, .pricing-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--bg-grey);
}
.pricing-table th {
    background-color: #f3f5f8;
    color: var(--primary-dark);
    font-weight: 600;
}
.pricing-table td:last-child {
    font-weight: 600;
    color: var(--primary-dark);
    text-align: right;
}
.pricing-notes {
    margin-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Map Section --- */
#map { padding: 0; }
.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) contrast(1.5) brightness(0.8) sepia(100%) hue-rotate(180deg) saturate(1.5);
    transition: filter 0.4s ease-in-out;
}
.map-container:hover iframe {
    filter: none;
}

/* --- Contact Section --- */
.contact-wrapper {
    display: flex;
    gap: 50px;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(96, 110, 134, 0.1);
}

.contact-info, .contact-form-container {
    flex: 1;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 25px;
}

.contact-details li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-details i {
    font-size: 1.5rem;
    color: var(--primary-accent);
    width: 30px;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#contact-form input, #contact-form select, #contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--bg-grey);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
}

#contact-form button {
    align-self: flex-start;
}

#contact-form label {
    font-weight: 500;
    color: var(--primary-dark);
    font-size: 0.9rem;
    margin-bottom: -15px;
}

/* --- Footer --- */
footer {
    background-color: var(--primary-dark);
    color: var(--bg-grey);
    padding: 60px 0 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--bg-grey);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.copyright {
    border-top: 1px solid var(--primary-accent);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.9rem;
}

.footer-powered-by {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}
.footer-powered-by-group {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.footer-powered-by a {
    color: inherit;
    text-decoration: none;
}
.footer-powered-by p {
    margin: 0;
    padding: 0;
}
.footer-powered-by img {
    height: 1rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* --- Call Now FAB --- */
.call-fab-container {
    position: fixed;
    bottom: 33px;
    left: 35px;
    z-index: 1001;
}
#call-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-accent);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}
#call-fab:hover {
    background-color: var(--primary-dark);
}
.call-menu {
    bottom: 80px;
    right: 0;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transform-origin: bottom right;
    transition: transform 0.2s ease, opacity 0.2s ease;
    transform: scale(0);
    opacity: 0;
}
.call-menu.active {
    transform: scale(1);
    opacity: 1;
}
.call-menu a {
    padding: 10px 15px;
    color: var(--primary-dark);
    font-weight: 500;
    border-radius: 5px;
    transition: background-color 0.2s;
}
.call-menu a:hover {
    background-color: #f3f5f8;
    color: var(--primary-accent);
}


/* --- Page / Terms Styles --- */
#terms {
    padding-top: calc(var(--nav-height-initial) + 40px);
    background-color: var(--bg-light);
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(96, 110, 134, 0.1);
}

.terms-content h2 {
    text-align: center;
    margin-bottom: 30px;
}

.terms-content h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-dark);
    border-bottom: 2px solid var(--bg-grey);
    padding-bottom: 10px;
}

.terms-content p {
    margin-bottom: 15px;
    color: var(--primary-accent);
}


/* --- Responsive Styles --- */
@media (max-width: 992px) {
    .sensation-content {
        flex-direction: column;
    }
    .contact-wrapper {
        flex-direction: column;
    }
    .scroll-arrow {
        display: none;
    }
    .date-selection-container {
        flex-direction: column;
    }
    .lightbox-arrow { display: none; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero-content h1 { font-size: 2.8rem; }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height-scrolled);
        left: 0;
        width: 100%;
        background-color: var(--bg-light);
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 10px 0;
    }

    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--primary-dark);
    }

    .nav-cta .btn { display: none; }

    .specs-grid {
        column-count: 1;
    }

    .about-grid {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-powered-by {
        flex-direction: column;
        margin-bottom: 16px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width { grid-column: auto; }
}


/* --- Custom Split Layout for Pricing & Booking System --- */
.pricing-split {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.pricing-left, .pricing-right {
    flex: 1;
    width: 100%;
}

/* Override the old max-width so the side-by-side boxes fit perfectly */
.pricing-split .pricing-container {
    max-width: 100%; 
    height: 100%;
}

.booking-system-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(34, 56, 90, 0.1);
}

/* Ensure HBook calendar fits well inside the box */
.hbook-wrapper {
    margin-top: 25px;
    text-align: left;
}

/* Make it stack cleanly on tablets and mobile phones */
@media (max-width: 992px) {
    .pricing-split {
        flex-direction: column;
        gap: 30px;
    }
}


/* --- HBook Premium Form Styling --- */

/* Hide the clunky default HBook title */
.hb-title {
    display: none !important;
}

/* Force style the text inputs and dropdown boxes */
.hbook-wrapper input[type="text"],
.hbook-wrapper select,
.hbook-wrapper input[type="email"],
.hbook-wrapper input[type="number"],
.hbook-wrapper textarea {
    width: 100% !important;
    padding: 15px !important;
    border: 1px solid var(--bg-grey) !important;
    border-radius: 10px !important;
    font-family: inherit !important;
    font-size: 1rem !important;
    margin-top: 5px !important;
    margin-bottom: 20px !important;
    box-sizing: border-box !important;
    background-color: var(--white) !important;
    color: var(--primary-dark) !important;
    height: auto !important;
    box-shadow: none !important;
}

/* Force style the labels to look clean */
.hbook-wrapper label {
    font-weight: 500 !important;
    color: var(--primary-dark) !important;
    font-size: 0.95rem !important;
    display: block !important;
    margin-bottom: 5px !important;
}

/* Transform the tiny default button into the massive theme button */
.hbook-wrapper input[type="submit"],
.hbook-wrapper input[type="button"],
.hbook-wrapper button,
.hbook-wrapper .hb-submit-button {
    display: block !important;
    padding: 15px 35px !important;
    background-color: var(--primary-accent) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    font-weight: 500 !important;
    font-size: 1.1rem !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    text-align: center !important;
    margin-top: 20px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* Add the hover effect to the button */
.hbook-wrapper input[type="submit"]:hover,
.hbook-wrapper input[type="button"]:hover,
.hbook-wrapper button:hover,
.hbook-wrapper .hb-submit-button:hover {
    background-color: var(--primary-dark) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
}

/* Fix the columns for Adults/Children */
.hbook-wrapper .hb-search-fields {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
}
.hbook-wrapper .hb-search-fields > p,
.hbook-wrapper .hb-search-fields > div {
    flex: 1 !important;
    min-width: 45% !important;
    margin: 0 !important;
}