/* Add this to your CSS */
main {
    max-width: 1200px; /* Adjust as necessary */
    margin: 0 auto; /* Center the content */
    padding: 0 1rem; /* Add some padding */
}

/* Adjust other sections as necessary */
header, section, footer {
    max-width: 1200px; /* Adjust as necessary */
    margin: 0 auto; /* Center the content */
    padding: 0 1rem; /* Add some padding */
}

body {
    font-family: 'Montserrat', sans-serif;
    /*font-family: Arial, sans-serif;*/
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f7f7f7;
}

header {
    background-color: white;
    padding: 0.5rem;
    text-align: center;
    color: black;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Add subtle shadow for better separation */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*flex-direction: row;*/
}

.logo img {
    height: 50px;
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    cursor: pointer;
    /*flex-direction: column;*/
}

.hamburger img {
    width: 40px;
    height: 40px;
}

/* Mobile navigation links */
.nav-links-mobile {
    display: none;
    flex-direction: column;
    list-style: none;
    padding: 0;
    text-align: center;
    background-color: white;
}

.nav-links-mobile li {
    margin: 1rem 0;
}

.nav-links-mobile a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.nav-links-mobile a:hover {
    text-decoration: underline;
}


.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

.nav-links li {
    margin: 0.5rem 0;
}

.nav-links a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.nav-links a:hover {
    text-decoration: underline;
}

.language-selector {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Language selector buttons */
.language-selector button {
    font-weight: bold;
    /* background-color: rgba(0, 0, 0, 0.5); */ /* Change button background to black */
    background-color: white; /* Background color for selected state */
    color: black; /* Change button text color to white */
    border: 0px solid black;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 5px;
}

.language-selector button.selected {
    background-color: white; /* Background color for selected state */
    color: rgb(171, 164, 164); /* Text color for selected state */
}

.language-selector button:hover {
    background-color: white; /* Change button hover background to white */
    color: rgba(0, 0, 0, 0.5); /* Change button hover text color to black */
}

#hero {
    background: url('images/your-background-image.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 10px;
}

.hero-content h2 {
    /* Increase font size for Hero Welcome */
    font-size: 2rem; 
    margin-bottom: 0.5rem;
}

.hero-content p {
     /* Increase font size for Hero Text */
    font-size: 1rem;
    margin-bottom: 1rem;
}

.cta-button {
    background-color: #000;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    display: inline-block;
}

section {
    padding: 0rem 0rem;
    text-align: center;
}

.features {
    background-color: #000;
}

.features-grid {
    display: flex;
    flex-direction: column;
    /* justify-content: center;*/
    gap: 0.5rem;
}

.feature-item {
    max-width: 100%;
    padding: 0rem 0rem;
/*
    flex: 1;
    max-width: 300px;*/
}

#gallery {
    padding: 0.5rem 0.5rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.1);
    color: white;
}

#gallery h2 {
    color: white;
}

.carousel {
    width: 100%;
    margin: auto;
}

.carousel img {
    width: 100%;
    margin: auto;
    display: block;
}

.slick-prev, .slick-next {
    width: 60px; 
    height: 60px;
    z-index: 1;
}

.slick-prev:before, .slick-next:before {
    color: white !important;
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slick-prev, .slick-next {
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.slick-prev:hover, .slick-next:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.slick-prev {
    left: 5px; /* Adjust the position to your preference */
}

.slick-next {
    right: 5px; /* Adjust the position to your preference */
}

.slick-dots li button:before {
    color: white; /* Change dot color to white */
}

.slick-dots li.slick-active button:before {
    opacity: 1; /* Make active dot fully opaque */
    color: white; /* Ensure active dot is also white */
}

.slick-dots li button {
    width: 15px; /* Optional: Adjust size of the dots */
    height: 15px; /* Optional: Adjust size of the dots */
}


#contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact-form input, 
#contact-form textarea {
    width: 80%;
    margin: 0.5rem 0;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contact-form button {
    background-color: #000;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#book {
    padding: 0.1rem 0rem;
    text-align: center;
    background-color: rgb(0, 0, 0, 0.1);
}

.book-options {
    display: flex;
    flex-direction: column;
    justify-content: center;
/*    gap: 1rem;*/
}

.book-option {
    max-width: 100%;
    text-align: center;
}

.book-option h3 {
    margin-bottom: 0rem;
}

.book-option p {
    margin: 0.5rem 0;
}

.booking-logo {
    width: 160px;
    height: auto;
    margin-top: 1rem;
}

.airbnb-logo {
    width: 100px;
    height: auto;
    margin-top: 1rem;
}


#location {
    padding: 0.5rem 0.5rem;
    text-align: center;
    background-color: #fff;
}

.location-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-details {
    text-align: center;
    /*
    flex: 1;
    max-width: 300px;
    text-align: left;*/
}

.contact-details h3 {
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin: 0.5rem 0;
}

.contact-details a {
    color: #000;
    text-decoration: none;
}

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

.superhost-logo {
    margin-top: 1rem;
    width: 100px;
    height: auto;
}

.map-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

/*
.map-container iframe {
    max-width: 100%;
    border: none;
}*/

.map-container iframe {
    width: 95%; /* Ensure the iframe fills the width of the container */
    height: revert-layer; /* Adjust height to maintain aspect ratio */
    max-width: 100%; /* Prevent the iframe from exceeding the container width */
}

footer {
    background-color: #f1f1f1;
    padding: 1rem 0;
    text-align: center;
}

/* Mobile */
@media (max-width: 625px) {

    .hamburger {
        display: block;
        flex: 1;
        display: flex;
        justify-content: left;
        align-items: center;
    }

    .language-selector {
        flex: 1;
        display: flex;
        justify-content: right;
        align-items: center;
    }

    .logo {
        flex: 2;
        display: flex;
        justify-content: center;
    }

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

    .nav-links {
        display: none;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .nav-active {
        display: flex;
    }
}

/* Desktop */
@media (min-width: 626px) {

    header {
        padding: 0rem;
    }

    nav {
    
        justify-content: space-between;
        padding: 0 2rem;
    }
    
    .nav-links {
        flex-direction:row;
    }
    
    .nav-links li {
        margin-left: 1.5rem;
    }
    
    .features-grid {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }    

    .feature-item {
        flex: 1;
        max-width: 300px;
    }
    
    .carousel img {
        width: 60%;
    }
    
    .book-options {
        flex-direction: row;
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .book-option {
        flex: 1;
        max-width: 300px;
    }
    
    .location-container {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 0rem;
    }

    .contact-details {
        flex: 1;
        max-width: 300px;
    }
    
    .map-container {
        flex: 1;
        display: flex ;
        justify-content: center;
    }
}


/* Styles for mobile devices * /
@media (max-width: 600px) {
    /* Mobile styles go here * /
}

  Styles for tablets and larger devices * /
@media (min-width: 769px) and (max-width: 1024px) {
    /* Tablet styles go here * /
}

/* Styles for desktops * /
@media (min-width: 1025px) {
    /* Desktop styles go here * /
}

*/

/* ── Trust strip ── */
.trust-strip {
    background: #2a2a2a;
    color: #f7f4ef;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 13px;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-icon {
    font-size: 16px;
}

/* ── CTA banner ── */
.cta-banner {
    background: #8B6914;
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    width: 100%;
    box-sizing: border-box;
}

/* ── Book section ── */
#book {
    background: #fff;
    padding: 40px 20px;
}

.book-inner {
    max-width: 900px;
    margin: 0 auto;
}

.book-inner h2 {
    text-align: center;
    margin-bottom: 30px;
}

.book-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Direct booking panel */
.direct-panel {
    border: 2px solid #8B6914;
    border-radius: 8px;
    padding: 28px;
    position: relative;
    background: #fff;
    text-align: left;
}

.direct-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #8B6914;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.direct-panel h3 {
    font-size: 18px;
    margin: 10px 0 4px;
}

.save-badge {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 16px;
}

/* Calendar */
.calendar-container {
    background: #faf8f4;
    border: 1.5px dashed #d0c8b8;
    border-radius: 6px;
    padding: 14px 16px;
    margin-bottom: 16px;
}

.calendar-label {
    font-size: 11px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 8px;
}

/* Calendar fallback (shown while loading or on error) */
#calendar-fallback p {
    margin: 0;
    text-align: center;
    font-size: 13px;
    color: #666;
    padding: 8px 0;
}

/* Calendar grid (rendered by JS) */
/* Calendar nav (prev/next month) */
.cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.cal-nav-title {
    font-size: 12px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
    flex: 1;
}

.cal-nav-btn {
    background: none;
    border: 1.5px solid #d0c8b8;
    border-radius: 4px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-family: inherit;
    flex-shrink: 0;
}

.cal-nav-btn:hover:not([disabled]) {
    background: #f0ebe3;
    border-color: #8B6914;
    color: #8B6914;
}

.cal-nav-btn[disabled] {
    opacity: 0.25;
    cursor: default;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.cal-cell {
    padding: 5px 2px;
    text-align: center;
    font-size: 11px;
    border-radius: 3px;
    line-height: 1.4;
}

.cal-hdr {
    color: #999;
    font-weight: 700;
    font-size: 10px;
}

.cal-avail {
    background: #d4edda;
    color: #155724;
}

.cal-booked {
    background: #f5c6c6;
    color: #c0392b;
}

.cal-past {
    color: #ccc;
}

.cal-legend {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #888;
    margin-top: 8px;
}

.cal-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    vertical-align: middle;
}

/* Date fields */
.date-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.date-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.date-field input[type="date"] {
    width: 100%;
    border: 1.5px solid #d0c8b8;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
    background: #faf8f4;
    font-family: inherit;
    box-sizing: border-box;
}

.date-field input[type="date"]:focus {
    outline: none;
    border-color: #8B6914;
}

/* WhatsApp button */
.wa-button {
    display: block;
    width: 100%;
    background: #25D366;
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: none;
    font-family: inherit;
    margin-bottom: 8px;
    box-sizing: border-box;
}

.wa-button:hover {
    background: #1ebe5d;
}

.wa-note {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin: 0;
}

/* OTA panel */
.ota-panel {
    border: 1.5px solid #e0dbd0;
    border-radius: 8px;
    padding: 24px 28px;
    background: #fff;
    text-align: center;
}

.ota-or {
    font-size: 13px;
    color: #999;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ota-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.ota-link-item {
    display: inline-block;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.ota-link-item:hover {
    opacity: 1;
}

.ota-separator {
    height: 1px;
    background: #e0dbd0;
    margin: 16px 0;
}

.direct-contact {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
}

.direct-contact a {
    color: #2a2a2a;
    text-decoration: none;
}

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

/* Mobile: stack date fields vertically on narrow screens */
@media (max-width: 400px) {
    .date-row {
        grid-template-columns: 1fr;
    }
}

/* Desktop: two-column book grid */
@media (min-width: 626px) {
    .book-grid {
        flex-direction: row;
        align-items: stretch;
    }

    .direct-panel {
        flex: 3;
    }

    .ota-panel {
        flex: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}