/*@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap');*/
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;

}



body {
    font-family: 'Raleway', sans-serif;
    color: #333;
    background-color: #fff; /* Changed from #f5f5f5 to white */
}

body.non-home {
    margin-top: 10px;
}

body.home-page {
    margin-top: 30px;
}
a.btn-primary:hover {
    background-color: hsl(173 60% 19% / 1);
    color: #fff;
}

/* prevent mobile overflow from padding/borders */
*, *::before, *::after { box-sizing: border-box; }

.search-container { position: relative; max-width: 600px; margin: 0 auto 20px; }
.site-search input{
  width: 100%;
  padding: 15px 48px 15px 20px; /* room for the icon button */
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,.05);
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  display: block;  /* avoids inline overflow quirks */
}

.search-btn{
  position: absolute; right: 12px; top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px; padding: 0;
  background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

.search-icon{
  display: inline-block;
  width: 22px; height: 22px;
  background: url('/assets/images/search-icon.png') no-repeat center / contain;
  pointer-events: none; /* keep button clicks intact */
}

.search-btn:focus-visible{ outline: 2px solid #16574f; outline-offset: 2px; }
/* extra safety for the search bar */
.search-container input { max-width: 100%; display: block; }


/* Concierge Page Styles */
.concierge-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    margin-bottom: 60px;
}

.concierge-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px 0;
}

.concierge-header h1 {
    font-size: 36px;
    color: #16574f;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.header-subtitle {
    font-size: 21px;
    color: #666;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* Success Message */
.success-message {
    background: #FAF8F4;
    border: 2px solid hsl(49 22% 92% / 1);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.success-message h1 {
    color: #16574f;
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 600;
}

.success-message p {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.success-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.success-actions .btn-primary,
.success-actions .btn-secondary {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
}

.success-actions .btn-primary {
    background-color: #16574f;
    color: white;
}

.success-actions .btn-primary:hover {
    background-color: #0e3b35;
}

.success-actions .btn-secondary {
    background-color: #fff;
    color: #16574f;
    border: 2px solid #16574f;
}

.success-actions .btn-secondary:hover {
    background-color: #f9f9f9;
}

/* Error Message */
.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid #f5c6cb;
    font-size: 16px;
}

/* Form Styles */
.itinerary-form {
    background: white;
}

.form-section {
    margin-bottom: 45px;
    padding: 25px;
    background: #FAF8F4;
    border-radius: 12px;
    border: 1px solid hsl(49 22% 92% / 1);
}

.form-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    background: white;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #16574f;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 14px;
}

.required {
    color: #dc3545;
    font-weight: normal;
}

/* Form Row (for side-by-side fields) */
.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

/* Phone Row Specific */
.phone-row {
    gap: 15px;
}

.country-code-group {
    flex: 0 0 200px;
}

.phone-number-group {
    flex: 1;
}

/* Date Mode Selector */
.date-mode-selector {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

/* Radio and Checkbox Styles */
.radio-option,
.checkbox-option {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
    min-height: 24px;
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.radio-option span,
.checkbox-option span {
    display: block;
    line-height: 1.5;
    font-size: 16px;
    color: #333;
}

.radio-option .option-title {
    font-weight: 600;
    margin-bottom: 3px;
}

.radio-option .option-desc {
    font-size: 14px;
    color: #666;
    font-weight: normal;
}

/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

/* Radio Group */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Date Fields */
.date-fields {
    margin-top: 20px;
}

#nightsText {
    font-weight: 600;
}

/* Consent Section */
.consent-section {
    background: #fff;
    border: 2px solid #e9ecef;
}

.consent-section .checkbox-option {
    padding: 15px 15px 15px 45px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 6px;
}

.consent-section .checkbox-option span {
    font-size: 14px;
    line-height: 1.6;
}

/* Submit Section */
.submit-section {
    background: linear-gradient(135deg, #FAF8F4 0%, #fff 100%);
    border: 2px solid hsl(49 22% 92% / 1);
    padding: 30px;
}

.submit-info {
    margin-bottom: 30px;
}

.submit-info p {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.submit-info ul {
    list-style: disc;
    padding-left: 25px;
    margin: 0;
}

.submit-info li {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.btn-submit {
    background: #16574f;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    font-family: 'Raleway', sans-serif;
}

.btn-submit:hover {
    background: #0e3b35;
}

/* Responsive Design */
@media (max-width: 768px) {
    .concierge-page {
        padding: 15px;
    }
    
    .concierge-header h1 {
        font-size: 28px;
    }
    
    .header-subtitle {
        font-size: 18px;
    }
    
    .form-section {
        padding: 20px 15px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .phone-row {
        flex-direction: row;
        gap: 10px;
    }
    
    .country-code-group {
        flex: 0 0 140px;
    }
    
    .date-mode-selector {
        flex-direction: column;
        gap: 10px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .success-actions .btn-primary,
    .success-actions .btn-secondary {
        width: 100%;
    }
}






.world-map-container {
    position: relative;
    margin: 30px 0 50px 0;
    border-radius: 8px;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}
.world-map-container.is-panning { cursor: grabbing; }
.map-transform-wrapper { transform-origin: 0 0; transition: transform 0.2s ease-out; }
.world-map-image{ display:block; width:100%; height:auto; opacity:.85; }
.world-map-overlay{ position:absolute; inset:0; pointer-events:none; }
.map-circle {
    position: absolute; width: 32px; height: 32px;
    background: rgb(3 61 47); color: hsl(44 36% 74% / 1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700;
    transform: translate(-50%, -50%) scale(var(--circle-inverse-scale, 1));
    border: 2px solid #928042; box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
    transition: transform .2s ease, background-color .2s ease;
    z-index: 10; pointer-events: auto; text-decoration: none;
}
.map-circle:hover{ transform: translate(-50%, -50%) scale(calc(var(--circle-inverse-scale, 1) * 1.2)); }
.map-circle { z-index: 10; }
.map-circle:hover, .map-circle:focus-visible { z-index: 1000; }
a.map-circle:hover { color: #ffffff !important; }
.map-circle .map-label{
    position: absolute; top: 50%; left: calc(100% + 8px); transform: translateY(-50%);
    padding: 4px 8px; font-size: 12px; font-weight: 600; white-space: nowrap; color: #1b1b1b;
    background: #fff; border: 1px solid rgba(0,0,0,0.15); border-radius: 6px; box-shadow: 0 2px 6px rgba(0,0,0,.15);
    opacity: 0; pointer-events: none; transition: opacity .15s ease, transform .15s ease; z-index: 12;
}
.map-circle:hover .map-label, .map-circle:focus-visible .map-label{ opacity: 1; }
.map-circle .map-label.left{ left: auto; right: calc(100% + 8px); }

/* Zoom controls */
.map-zoom-controls {
    position: absolute; top: 15px; right: 15px; z-index: 20; display: flex; flex-direction: column;
}
.map-zoom-controls button {
    width: 32px; height: 32px; padding: 0; margin-bottom: 5px; font-size: 22px; font-weight: bold; line-height: 1;
    color: #333; background-color: #fff; border: 1px solid #ccc; border-radius: 4px; box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    cursor: pointer; transition: background-color 0.15s ease;
}
.map-zoom-controls button:hover { background-color: #f4f4f4; }
.map-zoom-controls button:disabled { cursor: not-allowed; opacity: 0.5; background-color: #f0f0f0; }


/* ──────────────────────────────────────────────────────────────
   Nearby Places & Attractions
   Add this to: /www/assets/css/hotel-details.css
   Matches HavenRank look (beige borders, soft radius, clean typography)
   ────────────────────────────────────────────────────────────── */

.nearby-title {
    font-weight: 600;
}

span.nb-x-b {
    font-weight: 600;
}

.themes-list h3 {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #16574f;
}

.theme-group {
    margin-bottom: 30px;
}


p.htdt-one-line-summary {
    /* font-style: italic; */
    font-size: 23px;
    margin-bottom: 25px;
    color: #656565;
    /* font-style: italic; */
    line-height: 1.4;

}

b {
    /* font-weight: bold; */
    font-weight: 600;
}

h1.htdt-hotel-name {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}
.hotel-names-list a {
    font-size: 19px !important;
    line-height: 1.8;
}

a.map-circle {
    border-bottom: 0px solid #16574f !important;
}

ul.city-inline-list li a {
    font-size: 19px !important;
    line-height: 1.8;
}

.coll-1-1 {
    margin-bottom: 70px;
}

/* Cities comma-separated list (override chips version) */
.city-inline-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1rem;
    display: block;      /* override previous flex */
    gap: 0;              /* neutralize any gap */
}

.city-inline-list li {
    display: inline;
    margin: 0;           /* no extra spacing */
}

.city-inline-list li + li::before {
    content: ", ";       /* comma + space between items */
}

.city-inline-list a {
    display: inline;     /* remove pill look */
    padding: 0;          /* no padding */
    border: 0;           /* no border */
    text-decoration: none;
    font-size: 0.95rem;  /* optional: keep your previous size */
    line-height: 1.6;    /* nicer wrapping on multiple lines */
}



/* Append this to the end of your style.css file */

/* Static Content Pages (About, etc.) */
.static-page-header {
    padding: 0px 0 20px;
    /* border-bottom: 1px solid #eee; */
    margin-bottom: 40px;
}

p.articles-page-section-description {
    font-size: 21px;
    line-height: 1.4;
}

.static-page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 500;
}
.static-page-content {
    /* padding: 40px 0; */
    /* max-width: 800px; */
    margin: 0 auto;
}

.static-page-content h1 {
    font-size: 36px;
    margin-bottom: 25px;
    /* font-weight: bold; */
    font-weight: 600;
    line-height: 1.2;
}

.static-page-content h2 {
    font-size: 26px;
    color: #333;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
}

.country-group h3 a {
    font-size: 23px;
}

.static-page-content p,
.static-page-content ul {
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.static-page-content ul {
    list-style-type: disc;
    padding-left: 25px;
}

.static-page-content li {
    margin-bottom: 10px;
}

.static-page-content a {
    font-weight: 600;
    border-bottom: 1px solid #16574f;
}

.static-page-content a:hover {
    color: #0e3b35;
    border-bottom-color: #0e3b35;
}

.listing-cta {
    margin-top: 70px;
    margin-bottom: 30px;
}



.listing-cta a {
	font-weight: 600;
    font-size: 23px;
}


.section-cta {
    margin-top: 40px;
    /* margin-bottom: 50px; */
}


.section-cta a {
	font-weight: 600;
}

.section-heading-home {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading-home h2 {
    font-size: 25px;
    /*color: #16574f;*/
    font-weight: 600;
}

section.articles-section.suggested-reads {
    margin-top: 55px;
}

p.section-description {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    /* margin-top: 25px; */
    padding: 10px 20px;
    font-size: 17px;
    line-height: 1.3;
}

p.footer-tagline {
    font-size: 16px !important;
    margin-bottom: 25px;
    line-height: 1.3;
    padding: 0 10px;
}

.locations-page p {
    font-size: 21px;
}


.clearfix {
  clear: both;
}


/* Country links inside the locations list */
.locations-page h2 a {
    color: #16574f;
    text-decoration: none;
    font-size: 23px;
}

.no-results p {
    font-size: 25px;
    font-weight: 600;
}

.locations-page h2 a:hover {
    color: #0e3b35;
    text-decoration: underline;
}



/* ── Helpful tip styling ─────────────────────────────────────────── */
.vacation-tip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    margin-top: 25px;
    padding: 10px 20px;
}

.tip-icon {
    width: 28px;
    height: auto;
    flex-shrink: 0;
}

.tip-text {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}


/* Style for pagination ellipsis */
.pagination .page-link.ellipsis {
    border: none;
    background: none;
    color: #666;
    padding: 8px 5px; /* Adjust padding */
    cursor: default;
}

/* Ensure current page number stands out */
.pagination .page-link.current {
    background-color: #16574f;
    color: white;
    border-color: #16574f;
    font-weight: 600;
    cursor: default;
    padding: 9px 17px 9px;
    position: relative;
    top: -1px;
}

/* Rest of the pagination styles from previous step */
.pagination {
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
    clear: both; /* Ensure it appears below floated elements like grid */
}

.pagination .page-link {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 4px;
    border: 1px solid #ddd;
    color: #16574f;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.pagination .page-link:hover:not(.current):not(.disabled):not(.ellipsis) { /* Prevent hover effects on specific types */
    background-color: #e9ecef;
    border-color: #ccc;
}

.pagination .page-link.disabled {
    color: #aaa;
    border-color: #eee;
    cursor: not-allowed;
    background-color: #f9f9f9;
}

.pagination .page-link.prev,
.pagination .page-link.next {
    font-weight: 600;
}

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

.static-page-content.collection {
    margin-bottom: 50px;
    margin-top: 50px;
}

.browse-collection-cta {
    font-weight: 600;
}

span.sl-x-b {
    font-weight: 600;
}

a {
    color: #16574f;
    text-decoration: none;
    /* transition: color 0.3s; */
    font-size: 18px;
}

a:hover {
    color: #947e44;
}

/* ─── NEW NAVIGATION STYLES ────────────────────────────────── */

/* Main Navigation (Desktop) */
.main-nav {
    display: flex;
    align-items: center;
}
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}
.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 17px;
    padding: 5px 0;
    transition: color 0.3s ease;
}
.main-nav a:hover {
    color: #16574f;
}

/* Hamburger Icon */
.hamburger {
    display: none; /* Hidden by default, shown on mobile */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #0f513f;
    margin: 5px auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
/* Mobile Navigation Panel */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background-color: #8b7d4b;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    padding-top: 80px;
    border-radius: 0 15px;
}
.mobile-nav nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav nav li {
    
}
.mobile-nav nav a {
    display: block;
    padding: 18px 25px;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}
.mobile-nav nav a:hover {
    background-color: #f9f9f9;
    color: #16574f;
}

/* State when mobile navigation is open */
body.nav-open {
    overflow: hidden; /* Prevent scrolling of background content */
}
body.nav-open .mobile-nav {
    transform: translateX(0);
}

/* Animate hamburger to an "X" */
body.nav-open .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
body.nav-open .hamburger span:nth-child(2) {
    opacity: 0;
}
body.nav-open .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ─── END NEW NAVIGATION STYLES ────────────────────────────── */

.articles-grid h3.article-title:hover {
    color: #937e3e;
}

/* Header */
header {
    background-color: #fff;

    /* Removed position: sticky */
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    margin-right: 10px;
}

.logo-main {
    height: auto;
}

/* Hide the text that was next to the logo */
.logo-text {
    display: none;
}



/* Hero Section */
.hero-section {
    text-align: center;
    /*padding: 30px 0;*/
    background-color: #fff;
    margin-bottom: 40px;
}

.logo-container h1 {
    font-size: 48px;
    color: #16574f;
    margin-bottom: 10px;
}

.tagline {
    font-size: 18px;
    color: #666;
    font-weight: 600;
    margin-bottom: 40px;
    margin-top: 10px;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 20px;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 15px 20px 15px 20px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    font-family: 'Raleway', sans-serif;
}

.search-container button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #16574f;
}

.popular-locations {
    font-size: 19px;
    color: #222;
    font-weight: 600;
    /* margin-top: 90px; */
    line-height: 1.3;
}

p.ploc-1 {
    line-height: 1.4;
}

.popular-locations a {
    margin: 0 3px;
    border-bottom: 2px solid hsl(45 41% 83% / 1);
}

/* Filter Bar */
.filter-bar {
    background-color: #FAF8F4;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;

}

.filter-bar form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-start;
}

.filter-item {
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    height: 70px;
}

.filter-item label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.filter-item select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    height: 36px;
}

/* Range Slider Styling */
.filter-item input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 5px;
    border: none;
    outline: none;
    padding: 0;
    margin: 18px 0;
}

/* Thumb styling for Webkit browsers (Chrome, Safari) */
.filter-item input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #4a4a4a;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Thumb styling for Firefox */
.filter-item input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #4a4a4a;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Thumb styling for IE/Edge */
.filter-item input[type="range"]::-ms-thumb {
    width: 18px;
    height: 18px;
    background: #4a4a4a;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Track styling for Firefox */
.filter-item input[type="range"]::-moz-range-track {
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 5px;
}

/* Styling for the range value display */
.range-value {
    font-size: 14px;
    color: #333;
    margin-left: 10px;
    position: absolute;
    right: 15;
    top: 72%;
    transform: translateY(-50%);
}

/* Container for the range slider to position the value correctly */
.filter-item:first-child {
    position: relative;
    padding-right: 40px; /* Make space for the value */
}

.filter-item.checkbox {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    height: 70px;
}

.filter-item.checkbox input {
    margin-right: 8px;
}

.filter-item.checkbox label {
    margin-bottom: 0;
    margin-top: 0;
}

.filter-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    height: 70px;
    justify-content: flex-end;
}

.btn-apply, .btn-reset {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-apply {
    background-color: #16574f;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.btn-reset {
    color: #16574f;
    background: none;
    border: 1px solid #16574f;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
}

/* Hotel Listing */
.listing-results h2 {
    margin-bottom: 20px;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 32px;
}

.country-description p {
    font-size: 23px;
    line-height: 1.4;
}

.hotel-listing-header {
    margin-bottom: 25px;
    margin-top: 10px;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.hotel-card {
    /* background-color: white; */
    /* border-radius: 8px; */
    overflow: hidden;
    position: relative;
    /* border: 2px solid #ededed; */
    /* padding: 12px 0 10px; */
}

.listing-results {
    padding: 5px;
    margin-top: 20px;
}

.hotel-card-subcontainer {
    /* padding-left: 20px; */
    /* padding-right: 20px; */
    padding-bottom: 12px;
}

.hotel-card:hover {
    transform: translateY(0px);

}

.hotel-rank {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hotel-rank-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0 0;
    position: relative;
    z-index: 10;
    width: 100%;
}


.rank-number {
    color: #937e3e;
    font-weight: 600;
    font-size: 21px;
}

.percentile-badge {
    /* background-color: #e6f2f0; */
    color: #0cb70c;
    /* padding: 3px 8px; */
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
}

.hotel-name {
    padding: 5px 0px 5px;
    font-size: 28px;
    font-weight: 600;
    margin-top: 5px;
    line-height: 1.3;
}

.hotel-name {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
}

.hotel-name a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


.hotel-image img {
    width: 100%;
    /* height: 180px; */
    object-fit: cover;
    display: block;
    border-radius: 5px;
}

.hotel-location {
    padding: 0 0 10px;
    color: #666;
    /* font-size: 14px; */
}
.hotel-stars {
    padding: 10px 0px;
    color: #937e3e;
    font-size: 15px;
}

/* Hotel Ratings Styling */
.hotel-ratings {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    width: 100%;
}

.review-count {
    font-weight: 600;
    font-size: 18px;
    color: #333;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.rating-score {
    font-weight: 600;
    font-size: 18px;
    color: #333;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 60px;
}

.rating-label {
    font-size: 14px;
    color: #666;
    font-weight: normal;
    align-self: center;
}

.review-label {
    font-size: 14px;
    color: #666;
    font-weight: normal;
}

.filter-item.checkbox.excellent-location {
    position: relative;
    top: 12px;
}

.booking-logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
}

.booking-logo img {
    width: 32px;
    height: auto;
}

/* Hotel Detail Page */
.breadcrumbs {
    margin-bottom: 30px;
    margin-top: 40px;
    /* font-size: 14px; */
    font-weight: bold;
    color: #666;
    line-height: 1.3;
}

.hotel-detail {
    background-color: white;
    border-radius: 8px;
    /* padding: 30px; */
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}

.hotel-detail .percentile-badge {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 16px;
    padding: 5px 10px;
}

.hotel-stars span.excellent-location-badge {
    display: inline-block;
    float: right;
    font-size: 14px;
    position: relative;
    top: 2px;
}

.excellent-location-badge {
    /* background-color: #ffefd5; */
    color: #937e3e;
    /* padding: 5px 10px; */
    /* border-radius: 4px; */
    font-size: 18px;
    font-weight: 600;
    /* float: right; */
    /* display: inline-block; */
    margin-bottom: 15px;
    /* position: relative; */
    top: 2px;
    top: 10px;
}

.location-icon {
    vertical-align: middle;
    margin-right: 5px;
    display: inline-block;
}

.hotel-address {
    display: flex;
    align-items: center;
    color: #666;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.3;
}

.hotel-gallery {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.gallery-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    /*height: 250px;*/
    object-fit: cover;
    display: block;
}

.hotel-info-row {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.hotel-stars {
    flex: 1;
}

.star {
    color: #937e3e;
}

h2.our-review {
    font-size: 32px !important;
    margin-bottom: 30px !important;
}
/*
.rating-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}*/

.rating-value {
    font-size: 20px;
    font-weight: 600;
    color: #16574f;
}

.hotel-review {
    margin-bottom: 30px;
    margin-top: 30px;
}

.hotel-review h2 {
    font-size: 25px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 20px;
}

.review-content p {
    font-size: 21px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.review-content {
    line-height: 1.8;
    color: #444;
}

.read-more-link {
    text-align: center;
    margin-top: 15px;
}

.booking-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-book {
    background-color: #003580;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
}

.btn-book:hover {
    background-color: #00285e;
    color: white;
}

/* Locations Page */
.locations-page {
    background-color: white;
    border-radius: 8px;
    padding: 3px;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    margin-bottom: 40px;
}

.locations-page h1 {
    margin-bottom: 20px;
    color: #333;
}

.locations-page h2 {
    color: #16574f;
    margin: 25px 0 10px;
    font-size: 24px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.location-links {
    line-height: 1.8;
}

/* Error Page */
.error-page {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
}

.error-page h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.error-page p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
}

.btn-primary {
    background-color: #16574f;
    color: white;
}

.btn-secondary {
    background-color: #eee;
    color: #333;
    border: 1px solid #ddd;
}

/* Admin Page Styles */
body.admin-page {
    background-color: #fff;
}

.admin-container {
    max-width: 1000px;
    margin: 50px auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.admin-header h1 {
    color: #16574f;
    margin: 0;
}

.login-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

table.result-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table.result-table th,
table.result-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table.result-table th {
    background-color: #fff;
    font-weight: 600;
    border-bottom: 2px solid #eee;
}

.format-info {
    background-color: #e9f7fb;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.format-info h3 {
    margin-top: 0;
    color: #0c5460;
}

.logout-link {
    color: #dc3545;
    text-decoration: none;
}

.error-list {
    max-height: 200px;
    overflow-y: auto;
    background-color: #fff;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

/* Footer */
footer {
    background-color: hsl(40 37% 95% / 1);
    color: #333;
    padding: 50px 0 20px;
}

footer {
  border-top-left-radius: 21px;
  border-top-right-radius: 21px;
  overflow: hidden; /* ensures children respect the radius */
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

a.footer-browse-collection {
    font-weight: 600;
}
.footer-section p {
    font-size: 19px;
    color: #333;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 12px;
    line-height: 1.3;
}

.footer-section ul li a {
    /*color: rgba(255, 255, 255, 0.8);*/
}

.footer-section ul li a:hover {
    /*color: white;*/
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-indent: -9999px;
    position: relative;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.social-icon::before {
    position: absolute;
    text-indent: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.facebook::before {
    content: "f";
}

.twitter::before {
    content: "t";
}

.instagram::before {
    content: "i";
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
   
    font-size: 14px;
}

/* No results message */
.no-results {
    text-align: center;
    padding: 40px 0;
    color: #666;
    font-size: 18px;
}

/* Copyright Footer for index.php */
.copyright-footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
   
}

.copyright-footer p {
    color: #666;
    font-size: 14px;
}

/* Articles Section */
.articles-section {
    /* padding: 40px 0; */
    background-color: #fff;
    /* margin-top: 20px; */
}

.articles-heading {
    text-align: center;
    font-size: 32px;
    color: #16574f;
    margin-bottom: 40px;
    font-weight: 600;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card {
    background: white;
    /* border-radius: 10px; */
    overflow: hidden;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); */
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
    /* border: 1px solid #eee; */
}

.article-card:hover {

}

.article-card a {
    text-decoration: none;
    color: inherit;
}

.article-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f8f8f8;
    border-radius: 10px;
}

.article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #999;
    font-size: 14px;
}

.articles-grid h3.article-title {
    color: #16574f;
}

.article-title {
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    margin: 0;
    /* min-height: 84px; */
    display: flex
;
    align-items: center;
}

/* Article Detail Page */
.article-detail-page {
    /* max-width: 900px; */
    /* margin: 0 auto; */
    /* padding: 20px; */
}

.article-content {
    background: white;
    /*margin-bottom: 50px;*/
}

.article-header {
    padding: 40px 0px 20px;
}

.article-detail-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 500;
}

.article-meta {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 21px;
}

.meta-separator {
    margin: 0 10px;
}

/* --- Featured image: show lower half --- */
.article-featured-image {
    height: clamp(260px, 50vh, 520px); /* responsive fixed height to enable cropping */
    overflow: hidden;
    border-radius: 15px; /* keep your existing rounding */
}

.article-featured-image img {
    width: 100%;
    height: 100%;              /* fill the container to allow cropping */
    object-fit: cover;         /* maintain aspect ratio while filling */
    object-position: 50% 85%;  /* bias toward bottom (lower half). Try 90–100% if you want even lower */
    display: block;
}

.article-body {
    /* padding: 0 40px 40px; */
    font-size: 21px;
    line-height: 1.5;
    color: #444;
    margin-top: 20px;
}

.article-body h2 {
    font-size: 28px;
    color: #333;
    margin: 30px 0 20px;
    font-weight: 500;
}

.article-body h3 {
    font-size: 24px;
    color: #333;
    margin: 25px 0 15px;
}

.article-body p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.article-body ul,
.article-body ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

/* Ensure bullets show inside article content */
.article-body ul {
    list-style: disc outside;
    margin: 0 0 20px 1.25rem;   /* spacing */
    padding: 0 0 0 0.75rem;     /* indent */
}

.article-body li {
    margin-bottom: 10px;
}

.article-body blockquote {
    border-left: 4px solid #16574f;
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
    color: #666;
}

.article-body img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
}

/* Article Navigation */
.article-navigation {
    display: flex;
    justify-content: space-between;
    padding: 30px 40px;
    border-top: 1px solid #eee;
}

.nav-prev, .nav-next {
    max-width: 45%;
    font-size: 16px;
    color: #16574f;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.3;
}

.nav-prev:hover,
.nav-next:hover {
    text-decoration: underline;
}

.nav-next {
    text-align: right;
}

/* More Articles Section */
.more-articles {
    /*margin-top: 60px;*/
}

.more-articles h2 {
    /* text-align: center; */
    font-size: 28px;
    /* color: #16574f; */
    margin-bottom: 40px;
    font-weight: 600;
}

/* Responsive design for articles */
@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}




/* Responsive */
@media (max-width: 768px) {
	
	    .article-detail-page {
        padding: 10px;
    }
    
      .article-header {
        padding: 0px 0px 15px;
    }
    
    .article-detail-title {
        font-size: 28px;
    }
    
    .article-meta {
        flex-wrap: wrap;
    }
    
    .article-body {
        padding: 0 0px 30px;
    }


    .article-body h3 {
        font-size: 20px;
    }
    
.article-navigation {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        border-bottom: 1px solid #eee;
        margin-bottom: 20px;
    }
    
    .nav-prev,
    .nav-next {
        max-width: 100%;
        text-align: left;
    }
	
	    .articles-section {
        padding: 30px 0;
    }
    
    .articles-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-thumbnail {
        height: 180px;
    }
	
	
    .hotel-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
	
	   .copyright-footer {
        margin-top: 30px;
        padding: 15px 0;
    }
    
    .filter-bar form {
        flex-direction: column;
        gap: 10px;
    }
    
    .filter-item, .filter-actions {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }
    
    .filter-item.checkbox {
        height: auto;
    }
    
    .hotel-gallery {
        flex-direction: column;
    }
    
    .detailed-ratings {
        flex-wrap: wrap;
    }
    
    .rating-item {
        min-width: 40%;
    }

    /* Mobile Navigation Rules */
    .main-nav {
        display: none;
    }
    .hamburger {
        display: block;
    }
}

@media (max-width: 480px) {
	
	img.logo-home {
    width: 200px;
    height: auto;
}
	
	   .copyright-footer {
        margin-top: 20px;
        padding: 12px 0;
    }
	
    .hotel-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-text {
        display: none;
    }
    
	
	    .logo-main {
        width: 180px; /* Slightly smaller on mobile */
    }
	
    
    .hotel-gallery {
        flex-direction: column;
    }
    
    .detailed-ratings {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

/* Footer Menu */
.footer-menu {
    margin: 15px 0 20px;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 25px; /* A bit of space between items */
    flex-wrap: wrap; /* For smaller screens */
}

.footer-menu a {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.footer-menu a:hover {
    color: #16574f; /* Use brand color for hover */
    text-decoration: underline;
}