* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* The colors */
    --white-color: #fff;
    --dark-color: #252525;
    --primary-color: #f3961c;
    --secondary-color: #c38b32b9;
    --brown-color: #2e2106f5;
    --beige-color: #f2ead3f2;
    --grey-color: #eee3e3;
    --border-color: #e2d6b8;

    /* Font size */
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    /* Font weight */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Border radius */
    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50%;

    /* Site max width */
    --site-max-width: 1300px;

}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Stylings for the whole site */
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

img {
    width: 100%;
}

body.no-scroll {
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.section-content{
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
}

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--primary-color);
    z-index: 20;
    transition: width 0.1s ease-out;
}

/* Reveal-on-scroll animation */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation bar styling*/
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 15;
  background: var(--primary-color);
  transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

header .navbar {
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.3s ease;
}

header.scrolled .navbar {
    padding: 10px 20px;
}

.navbar .nav-logo .logo-text {
    color: var(--brown-color);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
}

.logo-text {
    background-image: url('Logo\ Image.png');
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    padding: 8px 16px;
    display: inline-block;
}

.navbar .nav-menu {
    display: flex;
    gap: 10px;
}

.navbar .nav-menu .nav-link {
    padding: 10px 18px;
    color: var(--white-color);
    font-size: var(--font-size-m);
    border-radius: var(--border-radius-m);
    transition: 0.3s ease;
    position: relative;
}

.navbar .nav-menu .nav-link:hover,
.navbar .nav-menu .nav-link.active {
    color: var(--primary-color);
    background: var(--secondary-color);
}

.navbar :where(#menu-close-button, #menu-open-button) {
    display: none;
}

/* Hero section styling */
.hero-section {
    min-height: 100vh;
    background: var(--beige-color);
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
}

.hero-section .section-content {
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: var(--brown-color);
    justify-content: space-between;
}

.hero-section .hero-details .eyebrow {
    display: inline-block;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: var(--font-size-s);
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    margin-bottom: 14px;
}

.hero-section .hero-details .title::before {
    content: "";
    width: 250px;
    height: 3px;
    display: block;
    box-shadow: 0 5px 0 0 var(--primary-color);
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--primary-color);
    margin-left: 0;
    margin-bottom: 20px;
}

.hero-section .hero-details .title {
    font-size: 3.4rem;
    line-height: 1.15;
    color: var(--primary-color);
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
}

.hero-section .hero-details .subtitle {
    margin-top: 8px;
    max-width: 70%;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.hero-section .hero-details .description {
    max-width: 70%;
    margin: 24px 0 40px;
    font-size: var(--font-size-m);
}

.hero-section .hero-image-wrapper {
    max-width: 500px;
    margin-right: 20px;
    margin-top: 50px;
    perspective: 1000px;
}

.hero-image {
    height: auto;
    display: block;
    object-fit: cover;

    /* Diagonal rounded corners [top-left & bottom-right] */
    border-radius: 40px 0px 40px 0px;

    /* When the user hovers */
    transition: border-radius 0.5s ease-in-out, transform 0.2s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 25px 50px -12px rgba(46, 33, 6, 0.35);
    will-change: transform;
}

.hero-image:hover {
    border-radius: 25px;
}

.hero-section .hero-details .buttons {
    display: flex;
    gap: 23px;
}

.hero-section .hero-details .button {
    padding: 10px 26px;
    border: 2px solid transparent;
    color: var(--white-color);
    border-radius: var(--border-radius-m);
    background: var(--brown-color);
    font-weight: var(--font-weight-medium);
    transition: 0.3s ease;
    display: inline-block;
}

.hero-section .hero-details .button:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: transparent;
    transform: translateY(-2px);
}

.scroll-cue {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--brown-color);
    font-size: var(--font-size-l);
    animation: bounce 2s infinite;
    opacity: 0.7;
}

.scroll-cue:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* About Section styling */
.about-section {
    /* The background image */
    position: relative;
    min-height: 100vh;
    background-image: url(IMG-20260625-WA0046.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 120px 0;
}

.about-section .section-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The white transparent sheet */
.about-details {
    /* 82% white with 18% transparency */
    background: rgba(255, 255, 255, 0.86);

    width: 90%;
    max-width: 800px;

    padding: 60px 70px;
    text-align: center;

    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius-s);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-details .section-title {
    text-align: center;
    margin-bottom: 10px;
    font-size: var(--font-size-xl);
    color: var(--brown-color);
}

.section-title::after {
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--primary-color);
}

.about-section .about-details .text {
    line-height: 30px;
    margin: 30px 0 0;
    text-align: center;
    font-size: var(--font-size-m);
}

.about-section .social-link-list {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 30px;
}

.about-section .social-link-list .social-link {
    color: var(--brown-color);
    font-size: var(--font-size-l);
    transition: 0.2s ease;
    display: inline-block;
}

.about-section .social-link-list .social-link:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Services section styling */
.services-section {
    min-height: 100vh;
    background: var(--beige-color);
    padding: 50px 0 100px;
    overflow: hidden;
    position: relative;
}

.services-section .services-title {
    text-align: center;
    padding: 60px 0 100px;
    margin-bottom: 10px;
    font-size: var(--font-size-xl);
    color: var(--brown-color);
}

.services-title::after {
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--primary-color);
}

.services-intro {
    max-width: 650px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: var(--font-size-m);
    color: var(--brown-color);
    line-height: 1.6;
}

/* Our Services — auto-scrolling single-line strip. No buttons: it
   drifts on its own, and the user can grab/swipe it too. */
.services-strip-wrap {
    width: 100%;
    max-width: 100%;
    align-self: stretch;

    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    scrollbar-width: none;      /* Firefox */  
    scroll-behavior: auto;
    touch-action: pan-x;           /* iOS Safari */
    overscroll-behavior-x: contain;    /* Chrome, Edge, Opera */
}

.services-strip-wrap::-webkit-scrollbar {
    display: none;              /* Chrome/Safari */
}

.services-strip-wrap.dragging {
    cursor: grabbing;
}

.services-strip {
    display: flex;
    flex-wrap: nowrap;    /* keeps everything on ONE line, never wraps */
    align-items: center;
    gap: 20px;
    width: max-content; 
    min-width: calc((300px + 20px) * 9 * 2);  /* row is exactly as wide as its content, no forced 3-per-row math */
}

.services-photo {
    flex: 0 0 300px;
    width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-m);
}

.services-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius-m);
    -webkit-user-drag: none;   /* stops the browser dragging the <img> instead of the row */
    user-select: none;
}

.services-photo h3 {
    margin: 0;
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 34px 16px 14px;
    text-align: center;
    color: var(--white-color);
    background: linear-gradient(to top, rgba(243, 150, 28, 0.92), rgba(243, 150, 28, 0.45) 55%, transparent);
    text-shadow: 0 2px 6px rgba(46, 33, 6, 0.45);
    pointer-events: none;
}

@media screen and (max-width: 900px) {
    .hero-section {
        padding: 130px 20px 30px;
    }

    .hero-section .hero-image-wrapper {
        width: 100%;
        max-width: 380px;   /* caps the image so it doesn't touch the screen edges */
        margin: 0 auto;      /* centers it horizontally */
        margin-right: auto;
    }

    .hero-section .hero-image-wrapper .hero-image {
        width: 100%;
        height: auto;         /* preserves the photo's real proportions — nothing gets cropped or stretched */
        max-width: 100%;
        object-fit: unset;
        margin: 0;
        display: block;
        border-radius: var(--border-radius-m);
    }

    .services-photo, .services-photo img { width: 220px; }
    .services-photo { flex-basis: 220px; }
    .services-strip { min-width: calc((220px + 20px) * 9 * 2); }

    .contact-section .contact-content {
        flex-direction: column;
        align-items: stretch;   /* 👈 add this — makes children fill the full width instead of shrink-wrapping */
    }

    .contact-form-column,
    .contact-form {
        width: 100%;
        max-width: 100%;
    }
}

.services-section .services-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column-reverse;
    gap: 50px;
    color: var(--brown-color);
}

.services-section .services-list {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    transition-property: transform;
}

.services-section .services-list .services-item {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    /* Width is intentionally NOT set here. Swiper calculates and applies
       each slide's width inline based on slidesPerView + spaceBetween at
       the current breakpoint (see script.js) — setting a fixed calc()
       here fought against that and made slides overflow onto extra
       rows instead of scrolling sideways. */
    position: relative;
    overflow: hidden;
    max-width: 500px;
    border-radius: var(--border-radius-m);
}

.services-section .services-list .services-item .services-image {
    width: 100%;
    height: 300px;
    aspect-ratio: 1;
    margin-bottom: 10px;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius-m);
    transition: transform 0.4s ease, border-radius 0.4s ease;
}

.services-section .services-list .services-item:hover .services-image {
    border-radius: 15px;
    transform: scale(1.06);
}

/* Caption redesigned as a transparent-to-orange gradient bar so the
   photo stays visible behind the text, and the text wraps to fit
   inside the image instead of being squeezed into a fixed-width pill. */
.services-section .services-list .services-item .name {
    margin: 0;
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;

    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 34px 16px 14px;
    text-align: center;
    border-radius: 0;
    color: var(--white-color);
    background: linear-gradient(to top, rgba(243, 150, 28, 0.92), rgba(243, 150, 28, 0.45) 55%, transparent);
    text-shadow: 0 2px 6px rgba(46, 33, 6, 0.45);
    pointer-events: none;
}



/* ---- Lodge Features ---- */
.features-wrapper {
    margin-top: 90px;
    text-align: center;
}

.features-subtitle {
    font-size: var(--font-size-xl);
    color: var(--brown-color);
    margin-bottom: 50px;
}

.features-subtitle::after {
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--primary-color);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 30px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.feature-text {
    color: var(--brown-color);
}

/* "Finger-like" curvy box: two opposite corners rounded deeply, the
   other two kept tight, alternating per item so neighbouring boxes
   interlock visually the way laced fingers do. */
.feature-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 14px 16px 26px;
    border: 2px solid var(--primary-color);
    background: var(--white-color);
    border-radius: 50px 14px 50px 14px;
    font-size: var(--font-size-m);
    color: var(--brown-color);
    font-weight: var(--font-weight-medium);
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.feature-item:nth-child(even) {
    border-radius: 14px 50px 14px 50px;
}

.feature-item.from-left {
    transform: translateX(-90px);
}

.feature-item.from-right {
    transform: translateX(90px);
}

.feature-item.in-view {
    opacity: 1;
    transform: translateX(0);
}

.feature-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: var(--border-radius-circle);
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

/* ---- Nearby Attractions ---- */
.attractions-wrapper {
    margin-top: 90px;
    text-align: center;
}

.attractions-subtitle {
    font-size: var(--font-size-xl);
    color: var(--brown-color);
    margin-bottom: 16px;
}

.attractions-subtitle::after {
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--primary-color);
}

.attractions-intro {
    max-width: 640px;
    margin: 0 auto 40px;
    color: var(--brown-color);
    font-size: var(--font-size-m);
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    max-width: var(--site-max-width);
    margin: 0 auto;
}

.attraction-card {
    background: var(--white-color);
    border-radius: var(--border-radius-s);
    overflow: hidden;
    text-align: left;
    box-shadow: 0 10px 26px rgba(46, 33, 6, 0.12);
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.attraction-card.from-left { transform: translateX(-90px); }
.attraction-card.from-right { transform: translateX(90px); }
.attraction-card.in-view { opacity: 1; transform: translateX(0); }

.attraction-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.attraction-card h4 {
    color: var(--brown-color);
    font-size: var(--font-size-m);
    margin: 16px 18px 8px;
}

.attraction-card p {
    color: var(--brown-color);
    opacity: 0.85;
    font-size: var(--font-size-s);
    line-height: 22px;
    margin: 0 18px 18px;
}

/* Gallery section styling */
.gallery-section {
    min-height: 100vh;
    background: var(--grey-color);
    padding: 50px 0 100px;
}

.gallery-section .gallery-title {
    text-align: center;
    padding: 60px 0 100px;
    margin-bottom: 10px;
    font-size: var(--font-size-xl);
    color: var(--brown-color);
}

.gallery-title::after {
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--primary-color);
}

.gallery-section .gallery-content {
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
}

.gallery-section .gallery-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.gallery-section .gallery-list .gallery-item {
    overflow: hidden;
    border-radius: var(--border-radius-s);
    width: calc(100% / 3 - 16px);
    aspect-ratio: 4 / 3;
    position: relative;
}

.gallery-section .gallery-item .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: 0.4s ease;
}

.gallery-section .gallery-item:hover .gallery-image {
    transform: scale(1.12);
}

.gallery-section .gallery-item::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: var(--font-size-l);
    background: rgba(46, 33, 6, 0.35);
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
}

.gallery-section .gallery-item:not(.gallery-video):hover::after {
    opacity: 1;
}

/* Collapsed preview: only the first couple of rows show, the rest sit
   behind an orange fade with a button to reveal the whole gallery. */
.gallery-list-wrap {
    position: relative;
    max-height: 760px;
    overflow: hidden;
    transition: max-height 0.7s ease;
}

.gallery-list-wrap.expanded {
    max-height: none;
}

.gallery-fade-tab {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 220px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 26px;
    background: linear-gradient(to bottom, rgba(243, 150, 28, 0), rgba(243, 150, 28, 0.55) 45%, rgba(243, 150, 28, 0.94));
    transition: opacity 0.4s ease;
}

.gallery-list-wrap.expanded .gallery-fade-tab {
    opacity: 0;
    pointer-events: none;
}

.gallery-expand-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white-color);
    color: var(--brown-color);
    padding: 12px 28px;
    border-radius: var(--border-radius-m);
    font-weight: var(--font-weight-semibold);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    transition: 0.25s ease;
}

.gallery-expand-button:hover {
    background: var(--brown-color);
    color: var(--white-color);
}

.gallery-expand-button i {
    transition: transform 0.3s ease;
}

.gallery-list-wrap.expanded .gallery-expand-button i {
    transform: rotate(180deg);
}

/* Hidden by default; only appears once the gallery is expanded */
.gallery-collapse-tab {
    display: none;
    justify-content: center;
    margin-top: 24px;
}

.gallery-list-wrap.expanded ~ .gallery-collapse-tab {
    display: flex;
}

.gallery-collapse-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(243, 150, 28, 0.85); /* shady orange */
    color: var(--white-color);
    padding: 12px 28px;
    border-radius: var(--border-radius-m);
    font-weight: var(--font-weight-semibold);
    box-shadow: 0 8px 22px rgba(46, 33, 6, 0.25);
    transition: 0.25s ease;
}

.gallery-collapse-button:hover {
    background: var(--brown-color);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 10, 2, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    object-fit: contain;
    border-radius: var(--border-radius-s);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--white-color);
    line-height: 1;
    transition: 0.2s ease;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white-color);
    font-size: var(--font-size-xl);
    padding: 16px;
    transition: 0.2s ease;
}

.lightbox-nav:hover {
    color: var(--primary-color);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Reviews Section Styling */
.reviews-section {
    min-height: 100vh;
    background: var(--beige-color);
    padding: 50px 0 100px;
}

.reviews-section .reviews-title {
    text-align: center;
    padding: 60px 0 100px;
    margin-bottom: 10px;
    font-size: var(--font-size-xl);
    color: var(--brown-color);
}

.reviews-title::after {
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--primary-color);
}

.reviews-section .slide-wrapper {
    overflow: hidden;
    margin: 0 60px 50px;
}

.reviews-section .review {
    user-select: none;
    display: flex;
    padding: 35px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.reviews-section .review .quote-mark {
    font-size: var(--font-size-xl);
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 10px;
}

.reviews-section .review .stars {
    color: var(--primary-color);
    font-size: var(--font-size-s);
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.reviews-section .review .user-image{
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: var(--border-radius-circle);
}

.reviews-section .review .name {
    margin-bottom: 16px;
    font-size: var(--font-size-m);
    color: var(--brown-color);
}

.reviews-section .review .feedback {
    line-height: 25px;
    max-width: 560px;
}

.reviews-section .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    opacity: 1;
}

.reviews-section .swiper-slide-button {
    margin-top: -50px;
    color: var(--brown-color);
    transition: 0.3s ease;
}

.reviews-section .swiper-slide-button:hover {
    color: var(--primary-color);
}

.reviews-more-box {
    margin: 50px auto 0;
    max-width: 600px;
    background: var(--brown-color);
    color: var(--white-color);
    text-align: center;
    padding: 36px 40px;
    border-radius: var(--border-radius-s);
}

.reviews-more-box h3 {
    margin-bottom: 10px;
    font-size: var(--font-size-l);
}

.reviews-more-box p {
    margin-bottom: 22px;
    opacity: 0.9;
    font-size: var(--font-size-m);
}

.reviews-more-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white-color);
    color: var(--brown-color);
    padding: 12px 28px;
    border-radius: var(--border-radius-m);
    font-weight: var(--font-weight-semibold);
    transition: 0.3s ease;
}

.reviews-more-button:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/* Contact Section styling */
.contact-section{
    /* The background image */
    position: relative;
    min-height: 100vh;
    background-image: url(IMG-20260625-WA0037.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    padding: 50px 0 100px;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(46,33,6,0.55), rgba(46,33,6,0.75));
}

.contact-section > * {
    position: relative;
    z-index: 1;
}

.contact-title {
    text-align: center;
    padding: 60px 0 100px;
    margin-bottom: 10px;
    font-size: var(--font-size-xl);
    color: var(--white-color);
}

.contact-title::after {
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--primary-color);
}

.contact-section .contact-content{
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
    display: flex;
    gap: 48px;
    align-items: flex-start;
    justify-content: space-between;
}

.contact-section .contact-info-list .contact-info {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    align-items: center;
    color: var(--white-color);
}

.contact-info .social-links {
    transition: 0.2s ease;
    gap: 25px;
    font-size: var(--font-size-l);
    display: flex;
}

.contact-section .contact-info-list .contact-info i {
    font-size: var(--font-size-m);
    color: var(--primary-color);
    width: 24px;
}

.contact-section .contact-link {
    color: var(--white-color);
    transition: 0.2s ease;
}

.contact-section .contact-link:hover {
    color: var(--primary-color);
}

.contact-description {
    max-width: 480px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--beige-color);
    line-height: 1.6;
    font-size: var(--font-size-l);
}

.contact-form-column {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: flex-end;
    max-width: 480px;
    flex: 1 1 480px;
    color: var(--beige-color);
    font-size: var(--font-size-l);
}

.contact-form-column .contact-paragraph {
    width: 100%;
    max-width: 100%;
    margin: 0 0 18px;
    text-align: left;
    box-sizing: border-box;
}

.contact-form-column .contact-paragraph p {
    margin: 0;
    text-align: left;
    line-height: 1.5;
}

.contact-section .contact-form .form-input {
    width: 100%;
    height: 50px;
    padding: 0 12px;
    outline: none;
    margin-bottom: 16px;

    background: var(--white-color);
    border-radius: var(--border-radius-s);
    border: 1px solid var(--border-color);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-section .contact-form{
    max-width: 100%;
    width: 100%;
    background: rgba(255,255,255,0.06);
    padding: 24px;
    border-radius: var(--border-radius-s);
    backdrop-filter: blur(4px);
}

.contact-section .contact-form .form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(243, 150, 28, 0.25);
}

.contact-section .contact-form .form-input.input-error {
    border-color: #e0503a;
    box-shadow: 0 0 0 3px rgba(224, 80, 58, 0.2);
}

.contact-section .contact-form textarea.form-input {
    height: 120px;
    padding: 12px;
    resize: vertical;
}

.contact-section .contact-form .submit-button {
    width: 100%;
    padding: 12px 26px;
    margin-top: 10px;
    color: var(--white-color);
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-medium);
    border-radius: var(--border-radius-m);
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-section .contact-form .submit-button:hover {
    color: var(--primary-color);
    background: transparent;
    border: 1px solid var(--primary-color);
}

.contact-section .contact-form .submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-section .form-status {
    margin-top: 14px;
    font-size: var(--font-size-s);
    color: var(--white-color);
    min-height: 20px;
}

.contact-section .form-status.success {
    color: #8fd99f;
}

.contact-section .form-status.error {
    color: #f19d8c;
}

.location-wrapper {
    max-width: 560px;
    margin: 0 auto 60px;
    background: var(--white-color);
    border-radius: var(--border-radius-m);
    overflow: hidden;
    border: 5px solid var(--brown-color);
    margin-top: 100px;
}

.map-embed {
    width: 100%;
    height: 200px;
    background: var(--grey-color); /* shows while the iframe loads */
}

.location-title {
    text-align: center;
    color: var(--brown-color);
    font-size: var(--font-size-l);
    margin: 26px 0 10px;
}

.location-text {
    max-width: 440px;
    margin: 0 auto 26px;
    padding: 0 24px;
    text-align: center;
    color: var(--brown-color);
    opacity: 0.85;
    line-height: 1.6;
}

.directions-button {
    display: block;
    margin: 0 24px 26px;
    padding: 16px;
    text-align: center;
    background: var(--primary-color);
    color: var(--white-color);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--border-radius-s);
    transition: 0.25s ease;
}

.directions-button:hover {
    background: var(--brown-color);
}

/* Footer section styling */
.footer-section {
    background: var(--beige-color);
    padding: 20px 0;
}

.footer-section .footer-content {
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-section :where(.copyright-text, .social-link, .policy-link) {
    color: var(--brown-color);
    transition: 0.2s ease;
}

.footer-section .social-media-links {
    display: flex;
    gap: 25px;
}

.footer-section .social-media-links .social-link {
    font-size: var(--font-size-l);
}

.footer-section .social-media-links .social-link:hover,
.footer-section .policy-text .policy-link:hover {
    color: var(--primary-color);
}

.footer-section .policy-text .separator {
    margin: 0 5px;
    color: var(--brown-color);
}

/* Floating action buttons */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 58px;
    height: 58px;
    border-radius: var(--border-radius-circle);
    background: #25D366;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    z-index: 12;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: pulse-whatsapp 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 28px rgba(0,0,0,0.3);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 8px 24px rgba(0,0,0,0.25), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 8px 24px rgba(0,0,0,0.25), 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 8px 24px rgba(0,0,0,0.25), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-circle);
    background: var(--brown-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-m);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    z-index: 12;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-color);
}

/* Responsive media query code for max width 1024px */
@media screen and (max-width: 1024px) {
    .services-section .services-list {
        gap: 60px;

    }

    .services-section .services-list .services-item {
        width: calc(100% / 3 - 60px);
    }
}

/* Responsive media query for max width 900px */
@media screen and (max-width: 900px) {
    :root {
        --font-size-m: 1rem;
        --font-size-l: 1.3rem;
        --font-size-xl: 1.5rem;
        --font-size-xxl: 1.8rem;
    }

    body.show-mobile-menu header::before {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(5px);
        background: rgba(0, 0, 0, 0.2);
    }

    .navbar :where(#menu-close-button, #menu-open-button) {
        display: block;
        font-size: var(--font-size-l);
    }

    .navbar #menu-close-button {
        position: absolute;
        right: 30px;
        top: 30px;
    }

    .navbar #menu-open-button{
        color: var(--white-color);
    }

    .navbar .nav-menu {
        display: block;
        position: fixed;
        left: -300px;
        top: 0;
        width: 300px;
        height: 100%;
        display: flex;
        flex-direction:column;
        align-items: center;
        padding-top: 100px;
        background: var(--beige-color);
        transition: left 0.2s ease;
    }

    body.show-mobile-menu .navbar .nav-menu {
        left: 0;
    }

    .navbar .nav-menu .nav-link {
        color: var(--brown-color);
        display: block;
        margin-top: 17px;
        font-size: var(--font-size-l);
    }

    .hero-section .section-content {
        gap: 50px;
        text-align: center;
        padding: 30px 20px 20px;
        flex-direction: column-reverse;
        justify-content: center;
    }

    .hero-section .hero-details :is(.subtitle, .description), .about-details {
        max-width: 100%;
    }

    .hero-section .hero-details .eyebrow,
    .hero-section .hero-details .title::before {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-section .hero-details .buttons {
        justify-content: center;
    }

    .hero-section .hero-image-wrapper .hero-image {
        width: 400px;
        height: 400px;
        margin-right: 0;
        object-fit: cover;
        border-radius: var(--border-radius-m);
    }

    .about-details {
        padding: 40px 30px;
    }

    .services-section .services-list {
        gap: 30px;
    }

    .services-section .services-list .services-item {
        width: calc(100% / 2 - 30px);
    }

    .services-section .services-list .services-item .services-image {
        max-width: 200px;
    }

    .gallery-section .gallery-list {
        gap: 20px;
    }

    .gallery-section .gallery-list .gallery-item {
        width: calc(100% / 2 - 10px);
    }

    .services-swiper {
        padding: 0 46px;
    }

    .services-section .swiper-button-prev,
    .services-section .swiper-button-next {
        width: 38px;
        height: 38px;
    }

    .features-list {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .attractions-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .contact-section .contact-content {
        flex-direction: column;
    }

    .contact-section .contact-form {
        max-width: 100%;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        left: 20px;
    }

    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: 20px;
        right: 20px;
    }
}

@media screen and (max-width: 640px) {
    .services-section .services-list {
        gap: 60px;
    }

    .services-section .services-list .services-item,
    .gallery-section .gallery-list .gallery-item {
        width: 100%;
    }

    .reviews-section .swiper-slide-button {
        display: none;
    }

    .footer-section .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .lightbox-nav {
        font-size: var(--font-size-m);
        padding: 10px;
    }
}
