/* Loading fonts */

@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@100;200;300;400;500;600;700;800;900&display=swap');

.kanit-thin {
    font-family: "Kanit", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.kanit-extralight {
    font-family: "Kanit", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.kanit-light {
    font-family: "Kanit", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.kanit-regular {
    font-family: "Kanit", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.kanit-medium {
    font-family: "Kanit", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.kanit-semibold {
    font-family: "Kanit", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.kanit-bold {
    font-family: "Kanit", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.kanit-extrabold {
    font-family: "Kanit", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.kanit-black {
    font-family: "Kanit", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.kanit-thin-italic {
    font-family: "Kanit", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.kanit-extralight-italic {
    font-family: "Kanit", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.kanit-light-italic {
    font-family: "Kanit", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.kanit-regular-italic {
    font-family: "Kanit", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.kanit-medium-italic {
    font-family: "Kanit", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.kanit-semibold-italic {
    font-family: "Kanit", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.kanit-bold-italic {
    font-family: "Kanit", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.kanit-extrabold-italic {
    font-family: "Kanit", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.kanit-black-italic {
    font-family: "Kanit", sans-serif;
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Glirock';
    src: url('../fonts/Glirock-Regular.woff2') format('woff2'),
        url('../fonts/Glirock-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Stop Image Select Option */
img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Reset default styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Style HTML and BODY */
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F4F1EE;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1s ease-in;
}

#preloader img {
    width: 200px;
    height: auto;
    animation: playOnce 3s forwards;
}

@keyframes playOnce {
    0% {
        opacity: 1;
    }

    99% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Body */
body {
    font-family: 'Kanit', sans-serif;
    font-weight: 300;
    font-size: 22px;
    color: #212136;
    background-color: #B8AA9629;
    line-height: 125%;
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

::selection {
    background: #E0E9E6;
}

/* Text Styles */
h1 {
    font-family: Glirock, sans-serif;
    font-size: 90px;
    line-height: 112%;
    letter-spacing: 2px;
}

h2 {
    font-family: Kanit, sans-serif;
    font-size: 52px;
    font-weight: 600;
    line-height: 125%;
    margin-bottom: 20px;
}

h2.zero {
    margin-bottom: 0px;
}

h3 {
    margin-bottom: 15px;
    font-family: Kanit, sans-serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 125%;
}

h4 {
    margin-bottom: 10px;
    font-family: Kanit, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 125%;
}

p {
    font-family: Kanit, sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 125%;
}

p.p2 {
    font-size: 16px;
    line-height: 132%;
    color: #5B5B6A;
}

p.medium {
    font-size: 28px;
}

a {
    text-decoration: none;
}

/* Button Styles */
.btn {
    background-color: #f3f1ee;
    display: flex;
    width: calc(100% - 40px);
    height: 60px;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 20px;
    color: #212136;
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    border: 0;
    position: absolute;
    bottom: 20px;
    cursor: pointer;
}

.btn-outline {
    background-color: transparent;
    display: flex;
    width: calc(100% - 40px);
    height: 60px;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 20px;
    color: #212136;
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    border: 2px solid #212136;
    position: absolute;
    bottom: 20px;
    cursor: pointer;
}

.btn1 {
    background-color: #212136;
    color: #f3f1ee;
    display: inline-flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 0;
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 60px;
}

.btn1#zero {
    margin-top: 0px;
}

.btn2 {
    background-color: #f3f1ee;
    color: #212136;
    display: inline-flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 0;
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    border-radius: 20px;
    cursor: pointer;
}

/* Button hover state */
.btn:hover,
.btn-outline:hover,
.btn1:hover,
.btn2:hover {
    transform: scale(1.05);
}

/* Navigation Styling */
header {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    height: 100px;
    padding: 0 40px;
}

#navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 15px 0;
}

#navlinks {
    display: flex;
    align-items: center;
    list-style-type: none;
    gap: 45px;
}

#navlinks a {
    color: inherit;
    text-decoration: none;
    font-size: 22px;
    transition: color 0.3s ease;
}

#navlinks a:hover {
    color: #3E7864;
}

#logo {
    width: 100px;
}

/* Call-to-action Navigation styling */
.cta-button {
    color: #f3f1ee !important;
    font-size: 16px !important;
    height: 50px;
    line-height: 50px;
    background-color: #3E7864;
    font-weight: 400;
    padding: 0 20px;
    border-radius: 20px;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-icon {
    width: 22px;
    height: 22px;
    vertical-align: middle;
    margin-left: 5px;
}

.cta-button:hover {
    background-color: #5B5B6A;
}

/* Hamburger Icon */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    border: 0px;
}

.hamburger .bar {
    border-radius: 5px;
    width: 25px;
    height: 3px;
    background-color: #212136;
    margin: 4px 0;
    transition: 0.3s;
}

/* Hero Section */
#hero {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Video */
#full-width-video {
    object-fit: cover;
    margin-top: 20px;
    width: 100%;
    height: 585px;
    border-radius: 20px;
}

/* Jump Link */
#icon-link {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

#icon {
    width: 50px;
    display: inline-block;
    cursor: pointer;
}

#icon:hover {
    transform: scale(1.05);
}

/* Intro Styling */
#intro {
    margin-top: 110px !important;
    margin-bottom: 40px !important;
    max-width: 1440px;
    padding: 0 40px;
    margin: 0 auto;
    text-align: center;
}

#intro-text {
    padding-top: 0px;
    color: #5B5B6A;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    max-width: 1130px;
}

.intro-image-section {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto 110px;
    padding: 0 40px;
}

.intro-image-container {
    width: 100%;
    height: 500px;
    /* Reduced height */
    border-radius: 20px;
    overflow: hidden;
}

.intro-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CTA Lodges Styling */
.cta-lodges {
    padding: 0 40px;
}

.content-lodges {
    position: relative;
    height: 630px;
    background-color: #EAE6E0;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 60px;
    margin-top: 200px;
    margin-bottom: 250px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
}

.text-lodges {
    width: 50%;
    margin-left: 0 !important;
}

.text-lodges p {
    color: #5B5B6A;
}

.image-lodge-cta {
    right: 40px;
    margin-top: -30px;
}

.tablet-lodge {
    display: none;
}

#leafes {
    position: absolute;
    bottom: -150px;
    right: 430px;
}

.text-block-section {
    padding: 0px 40px 40px;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 20px;
    max-width: 1440px;
    margin: 0 auto;
}

.text-block-right {
    color: #5B5B6A;
}

/* Teaser Boxes Styling */
#teaser {
    width: 100%;
    max-width: 1440px;
    padding: 0 40px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Teaser Box Base Styling */
.box {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 40px;
    width: auto;
    height: 300px;
    color: #f3f1ee;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.box p {
    color: #f3f1eebf;
}

/* Specific Box Background Colors */
.box1 {
    background-color: #3E7864;
}

.box2 {
    background-color: #3E7864;
}

.box3 {
    background-color: #3E7864;
}

.box4 {
    background-color: #3E7864;
}

/* H2 + Button Styling Section */
.h2-button-section {
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
    padding: 0 40px;
    margin-top: 110px;
    gap: 60px;
    align-items: center;
    display: flex;
}

/* Activities Styling */
.boxes-section-activities {
    padding-top: 40px !important;
    padding: 0 40px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.box-activities {
    display: block;
    background-color: #EAE6E0;
    border-radius: 20px;
    overflow: hidden;
}

.box-image-activities img {
    width: 100%;
    height: auto;
}

.box-content {
    height: 250px;
    position: relative;
    padding: 20px;
}

/* Image Text Styling */
.image-text {
    padding-top: 110px;
    width: 100%;
    max-width: 1130px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
}

.image img {
    border-radius: 20px;
}

.text {
    color: #212136;
}

.text p {
    color: #5B5B6A;
}

/* Footer Styling */
footer {
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
    margin-top: 110px;
    padding: 40px;
    background-color: #212136;
    display: grid;
    grid-template-columns: 1.2fr 1.1fr 0.4fr;
    grid-gap: 50px;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.links-newsletter {
    color: #f3f1ee;
    z-index: 1;
}

.links {
    display: flex;
    flex-direction: row;
    gap: 45px;
    padding-bottom: 50px;
}

.links li {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 10px;
}

.links a {
    text-decoration: none;
    color: #f3f1ee;
    text-decoration: none;
    font-size: 22px;
    transition: color 0.3s ease;
}

.links a:hover {
    color: #3E7864;
}

.newsletter {
    padding-top: 20px;
}

.newsletter input {
    border-radius: 20px;
    border: 1px solid #f3f1ee;
    padding: 13px 116px 14px 21px;
    background: rgba(255, 255, 255, 0.40);
}

.newsletter input::placeholder {
    color: #f3f1ee;
}

.waveleft {
    bottom: 0;
    margin-left: -40px;
    position: absolute;
}

.waveright {
    right: -100px;
    position: absolute;
    top: 0px;
}



/* General Reset and Common Styles */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #3E7864;
    color: #F4F1EE;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    z-index: 9999;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

/* Cookie Banner Text and Links */
#cookie-banner p {
    margin: 0;
    padding-top: 20px;
    padding-bottom: 30px;
    /* Reduced spacing between text and buttons */
}

#cookie-banner a {
    color: #3E7864;
    text-decoration: none;
}

/* Cookie Banner Button Styling */
#cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* 20px spacing between the two buttons */
}

#cookie-banner button {
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    font-weight: 400;
    padding: 0 20px;
    border-radius: 20px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

#accept-cookies {
    background-color: #F4F1EE;
    /* Beige white */
    color: #3E7864;
    /* Dark green text */
    border-color: #F4F1EE;
}

#accept-cookies:hover {
    background-color: #ddd8d2;
    /* Slightly darker beige */
}

#reject-cookies {
    background-color: transparent;
    /* Transparent background */
    color: #F4F1EE;
    /* Beige white text */
    border: 2px solid #F4F1EE;
    /* Beige white border */
}

#reject-cookies:hover {
    background-color: #F4F1EE;
    /* Beige white background */
    color: #3E7864;
    /* Dark green text */
}

#learn-more {
    text-decoration: underline !important;
    cursor: pointer;
    background-color: transparent !important;
    /* Transparent background */
    color: #F4F1EE !important;
    /* Beige white text */
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    font-weight: 400;
}

#learn-more:hover {
    text-decoration: none;
}

/* Responsive design */

/* Extra Small Devices (phones, < 576px) */
@media (max-width: 575.98px) {

    /* Text Styles */
    h1 {
        font-size: 55px;
        letter-spacing: 1px;
    }

    h2 {
        font-size: 40px;
        margin-bottom: 15px;
    }

    h2.zero {
        margin-bottom: 0px;
    }

    h3 {
        margin-bottom: 10px;
        font-size: 30px;
    }

    h4 {
        margin-bottom: 6px;
        font-size: 20px;
    }

    p {
        font-size: 18px;
    }

    p.p2 {
        font-size: 14px;
    }

    p.medium {
        font-size: 24px;
    }

    /* Navigation */
    .hamburger {
        display: flex;
    }

    #navlinks {
        display: none;
        position: absolute;
        top: 100px;
        right: 0;
        background-color: #f3f1ee;
        padding: 10px;
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
        width: 100%;
        z-index: 1;
    }

    #navlinks li {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    #navlinks a.cta-button {
        text-align: center;
        width: 100%;
    }

    #navlinks.active {
        background-color: #f3f1ee;
        padding: 0 40px;
        display: block;
    }

    /* CTA Lodges Styling */
    .cta-lodges {
        padding-left: 0px !important;
        padding-right: 0px !important;
        overflow-x: hidden;
    }

    .content-lodges {
        margin-top: 110px;
        margin-bottom: 110px;
        padding: 40px 20px;
        border-radius: 0px;
        height: auto;
        flex-direction: column;
        justify-content: left;
        align-items: flex-start;
    }

    .text-lodges {
        width: 100%;
    }

    #lodge {
        width: 100%;
    }

    .tablet-lodge {
        display: none;
    }

    .image-lodge-cta {
        right: 40px;
        margin: 0;
    }

    #leafes {
        bottom: -40px;
        right: -40px;
        width: 200px;
    }

    .boxes-section-activities {
        grid-template-columns: repeat(1, 1fr);
    }

    .h2-button-section {
        flex-direction: column;
        align-items: start;
        gap: 60px;
    }

    #teaser {
        grid-template-columns: repeat(1, 1fr);
    }

    .image-text {
        padding-left: 20px;
        padding-right: 20px;
        flex-direction: column;
    }

    .image {
        width: 100%;
        order: 2;
    }

    .image img {
        width: 100%;
    }

    footer {
        grid-template-columns: repeat(1, 1fr);
    }

    .slogan img {
        width: 100%;
    }

    .links {
        flex-direction: column;
        gap: 0px;
    }

    .newsletter {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .newsletter button {
        width: 100%;
    }

    .logo img {
        padding-top: 20px;
    }

    header,
    #hero,
    #intro,
    .cta-lodges,
    #gallery,
    #teaser,
    .h2-button-section,
    .boxes-section-activities,
    footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    #intro-text {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 0px;
    }

    .text-block-section {
        display: flex;
        flex-direction: column;
        padding: 0px 20px 40px;
    }

    .box-content {
        height: 170px;
    }

    #cookie-banner p {
        padding-left: 20px;
        padding-right: 20px;
    }

    #cookie-policy {
        width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* Small to Medium Devices (tablets, small laptops, 576px - 869.98px) */
@media (min-width: 576px) and (max-width: 869.98px) {

    /* Text Styles */
    h1 {
        font-size: 55px;
        letter-spacing: 1px;
    }

    h2 {
        font-size: 40px;
        margin-bottom: 15px;
    }

    h2.zero {
        margin-bottom: 0px;
    }

    h3 {
        margin-bottom: 10px;
        font-size: 30px;
    }

    h4 {
        margin-bottom: 6px;
        font-size: 20px;
    }

    p {
        font-size: 18px;
    }

    p.p2 {
        font-size: 14px;
    }

    /* Navigation */
    .hamburger {
        display: flex;
    }

    #navlinks {
        display: none;
        position: absolute;
        top: 100px;
        right: 0;
        background-color: #f3f1ee;
        padding: 10px;
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
        width: 100%;
        z-index: 1;
    }

    #navlinks li {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    #navlinks a.cta-button {
        text-align: center;
        width: 100%;
    }

    #navlinks.active {
        background-color: #f3f1ee;
        padding: 0 40px;
        display: block;
    }

    #intro-text p {
        padding-left: 40px;
        padding-right: 40px;
    }

    p.medium {
        font-size: 24px;
    }

    /* CTA Lodges Styling */
    .cta-lodges {
        padding: 0 40px;
    }

    .content-lodges {
        margin-top: 110px;
        margin-bottom: 110px;
        height: auto;
        flex-direction: column;
        justify-content: left;
        align-items: flex-start;
    }

    .text-lodges {
        padding-top: 40px;
        width: 85%;
    }

    #lodge {
        display: none;
        width: 300px;
    }

    .tablet-lodge {
        display: block;
        width: 85%;
        height: 300px;
        border-radius: 20px;
        object-fit: cover;
    }

    .image-lodge-cta {
        width: 100%;
        right: 40px;
        margin: 40px 0;
    }

    #leafes {
        display: none;
    }

    .boxes-section-activities {
        grid-template-columns: repeat(2, 1fr);
    }

    .h2-button-section {
        flex-direction: column;
        align-items: start;
        gap: 0px;
    }

    #teaser {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-text {
        padding-left: 40px;
        padding-right: 40px;
        flex-direction: column;
    }

    .image {
        width: 100%;
        order: 2;
    }

    .image img {
        width: 85%;
        height: 300px;
        border-radius: 20px;
        object-fit: cover;
    }

    .text h1 {
        width: 85%;
    }

    .text p {
        width: 85%;
    }


    .text-block-section {
        display: flex;
        flex-direction: column;
    }

    .box {
        padding: 20px;
        height: 350px;
    }

    footer {
        grid-template-columns: repeat(1, 1fr);
    }

    .slogan img {
        width: 50%;
    }

    .links {
        flex-direction: column;
        gap: 0px;
    }

    .newsletter {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 50%;
    }

    .newsletter button {
        width: 100%;
    }

    .logo img {
        padding-top: 40px;
    }

    #cookie-policy {
        width: 80% !important;
    }
}

/* Large Devices (laptops, desktops, 992px - 1279.98px) */
@media (min-width: 870px) and (max-width: 1099.98px) {

    /* Text Styles */
    h1 {
        font-size: 75px;
        letter-spacing: 1px;
    }

    h2 {
        font-size: 50px;
        margin-bottom: 15px;
    }

    h2.zero {
        margin-bottom: 0px;
    }

    h3 {
        font-size: 32px;
    }

    h4 {
        font-size: 24px;
    }

    p {
        font-size: 20px;
    }

    p.p2 {
        font-size: 16px;
    }

    p.medium {
        font-size: 26px;
    }

    /* Navigation */
    #navlinks {
        gap: 30px;
    }

    #navlinks a {
        font-size: 18px;
    }

    #intro-text p {
        padding-left: 40px;
        padding-right: 40px;
    }

    .content-lodges {
        height: 680px;
        margin-top: 110px;
        margin-bottom: 110px;
    }

    #lodge {
        width: 300px;
    }

    .tablet-lodge {
        display: none;
    }

    #leafes {
        display: none;
    }

    /* Teaser Box Base Styling */
    .box {
        height: 350px;
    }

    .box-content {
        height: 300px;
    }

    .image-text {
        padding: 110px 40px 0px 40px;
    }

    footer {
        grid-template-columns: 1fr 1fr 0.4fr;
    }

    .slogan img {
        width: 100%;
    }

    .newsletter button {
        margin-top: 10px;
    }

    #cookie-policy {
        width: 80% !important;
    }
}

/* Large Devices (laptops, desktops, 992px - 1279.98px) */
@media (min-width: 1100px) and (max-width: 1279.98px) {

    /* Text Styles */
    h1 {
        font-size: 75px;
        letter-spacing: 1px;
    }

    h2 {
        font-size: 50px;
        margin-bottom: 15px;
    }

    h2.zero {
        margin-bottom: 0px;
    }

    h3 {
        font-size: 32px;
    }

    h4 {
        font-size: 24px;
    }

    p {
        font-size: 20px;
    }

    p.p2 {
        font-size: 16px;
    }

    p.medium {
        font-size: 26px;
    }

    /* Navigation */
    #navlinks {
        gap: 30px;
    }

    #navlinks a {
        font-size: 18px;
    }

    #intro-text p {
        padding-left: 40px;
        padding-right: 40px;
    }

    .content-lodges {
        margin-top: 110px;
        margin-bottom: 110px;
    }

    #lodge {
        margin-top: 30px;
        width: 400px;
    }

    .tablet-lodge {
        display: none;
    }

    #leafes {
        bottom: -90px;
        right: 330px;
        width: 300px;
    }

    .box-content {
        height: 340px;
    }

    .image-text {
        padding: 110px 40px 0px 40px;
    }

    footer {
        grid-template-columns: 1fr 1fr 0.4fr;
    }

    .slogan img {
        width: 100%;
    }

    .newsletter button {
        margin-top: 10px;
    }
}

#cookie-policy {
    padding-top: 10px;
    padding-bottom: 60px;
    margin: 0 auto;
    max-width: 1440px;
    width: 50%;
}

#cookie-policy h1,
#cookie-policy h2 {
    padding-top: 50px;
}

#cookie-policy h3 {
    padding-top: 30px;
}

#cookie-policy ul,
#cookie-policy li {
    padding-top: 10px;
}

#cookie-policy a {
    color: #3E7864;
}

#cookie-policy .bullets {
    padding-bottom: 30px;
    padding-left: 50px;
}

#message {
    font-size: 16px;
    /* Adjust text size */
    font-weight: bold;
    /* Make it stand out */
    color: green;
    /* Success message color */
    display: block;
    /* Ensure it appears properly */
}

/* Main Gallery Styling */
#gallery {
    width: 100%;
    max-width: 1440px;
    margin: 110px auto 110px;
    padding: 0 40px;
    position: relative;
}

.gallery-header {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 40px;
}

.gallery-header h2 {
    margin-bottom: 0;
}

.gallery-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Hide overflow for slider */
    border-radius: 20px;
}

/* Responsive adjustment for header */
@media (max-width: 870px) {
    .gallery-header {
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }
}

.gallery-slider {
    overflow: hidden;
    border-radius: 20px;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.gallery-item {
    width: calc((100% - 20px) / 2);
    /* 2 items visible, minus gap */
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

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

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    color: #212136;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s;
}

.slider-arrow:hover {
    background-color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Responsive adjustment */
@media (max-width: 900px) {
    .gallery-item {
        width: calc((100% - 20px) / 2);
        /* 2 items */
        height: 400px;
    }
}

@media (max-width: 600px) {
    .gallery-item {
        width: 100%;
        /* 1 item */
        height: 350px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

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

.gallery-empty {
    text-align: center;
    padding: 60px;
    background: #EAE6E0;
    color: #5B5B6A;
}

/* Lightbox Styling */
#lightbox {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

#lightbox.active {
    opacity: 1;
    pointer-events: all;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

#lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    background: none;
    border: none;
}