/* Reset some default styles */
@import url(../Assets/marthin/Marthin/Marthin.otf);
@import url(../Assets/HelveticaFontFamily/Helvetica.ttf);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.all-text {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #fff; /* Improved text contrast for readability */
}

/* Homepage */
#header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 80px;
    background: #000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}

.nav-full{
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.nav-home{
    display: flex;
    align-items: center;
    justify-content: center;  
    width: 100%; 
    text-align: center; 
}

.nav-home img{
    width: 170px !important;
    height: auto !important;
    margin-top: 10px ;
    text-align: center;
}

.navbar{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;    
    width: 100%;
}

#navbar{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;    
}

.navbar img{
    width: 50px !important;
    height: auto !important;
}

#navbar li{
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    transition: 0.3s ease;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

#navbar li a:hover{
    color: #088178;
}

#navbar li a:hover,
#navbar li a.active{
    color: #088178;
}

#navbar li a.active::after, 
#navbar li a:hover::after{
    content: "";
    width: 30%;
    height: 2px;
    background: #088178;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

#close{
    display: none; /* Initially hidden */
}

.icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
}

/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown button */
.dropbtn {
    display: inline-block;
    text-decoration: none;
    padding: 10px;
    color: #fff;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #000;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Dropdown items */
.dropdown-content li {
    list-style: none;
}

.dropdown-content li a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Show the dropdown content on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content li a:hover {
    background-color: #088178;
}

/* Full-screen sections */
#layout-content > div {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
    padding: 20px; /* Responsive padding for content */
    background-color: #fff;
}

/* Background images cover full area */
.uk-background-cover {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

/* Welcome section */
.section-welcome{
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Skewed Image */
.skewed-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 50% 100%, 0% 85%);
}

.skewed-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ensure text content is on top of the gallery */
.w-h-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    z-index: 1; /* Ensure content stays on top */
}

.w-h-container h1{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 55px;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Shadow effect */
    padding-bottom: 21px;
    font-weight: 500;
}

.w-h-container p{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    justify-content: center;
}

.w-h-container a{
    background-color: #000 !important;
    border-color: #000;
    justify-content: center;
    color: #fff;
}

.w-h-container a:hover{
    background-color: #fff !important;
    color: #000;
}

/* Accommodation section */
.section-h-accommodation {
    background-color: #fff !important;
}

.acc-info{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.a-head{
    text-align: center;
    width: 100%;
    padding-bottom: 85px;
    padding-top: 55px;
}

.a-head h2{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #000;
    font-size: 3rem;
    font-weight: 500;
}

.a-items{
    flex-direction: column;
    justify-content: center;
}

.a-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.a-info-box {
    border: 2.5px solid #104d6f; /* This includes width, style, and color */
    margin: 20px;
}

.a-information img{
    height: 70%;
    width: 70%;
}

.a-information h2{
    padding: 17px;
    color: #104d6f;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
}

.a-btn a {
    color: #fff !important;  /* Text color */
    border-color: #fff !important; /* Border color */
    border-width: 2px; /* Optional: Adjust the border thickness */
    border-style: solid; /* Ensures the border appears solid */
    background-color: #000;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.a-btn {
    margin-top: 35px;
    justify-content: center;
    align-content: center;
}

.a-btn p {
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.a-p{
    padding-top: 21px;
    text-align: center;
    width: 100%;
}

.a-p p{
    font-family: 'Marthin Slant';
    color: #000;
    font-size: 4rem;
}

/* Nature Watching section */
.section-h1-nature{
    background-image: url(../Assets/Home/Pool.webp);
    background-size: cover;
    opacity: 65%;
}

/* Information section */
.section-ihf {
    background-color: #343331 !important;
}

.ihf-container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.hf-container{
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.hf-img1{
    width: 25%;
    padding-bottom: 14px;
}

.hf-img1 h2{
    color: #fff;
    margin-top: 14px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
}

.hf-img1 img{
    width: 50%;
}

/* Nature Watching section */
.section-h2-nature{
    background-image: url(../Assets/Home/23.webp);
    background-size: cover;
}

/* General content padding */
.uk-padding {
    padding: 20px;
}

/* Container width */
.uk-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Main heading */
.mainheading {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Subheadings for sections */
h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

/* Paragraph styling */
p {
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Button styling */
.uk-button {
    padding: 10px 20px;
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s, color 0.3s;
}

/* Hover effect on buttons */
.uk-button:hover {
    background-color: #fff;
    color: #000 !important;
}

/* Flexbox centering for inner content */
.uk-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Margin for large sections */
.uk-margin-large {
    margin: 40px 0;
}

/* Footer section */
footer {
    background-color: #000;
    padding: 10px 10px;
    color: #fff;
    text-align: center;
}

footer p {
    color: #fff !important; /* Light gray text color */
    margin: 5px 0; /* Space between each paragraph */
    font-size: 1em; /* Default font size for the text */
    text-align: left; /* Center the text inside each paragraph */
    display: inline-block; /* Shrink to the width of the text */
    width: 100%; /* Ensures the text takes up the full width of the container */
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.copyright {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    flex-direction: row;    
    gap: 55px;
    padding: 38px;    
}

.ft-box {
    flex: 1;
    padding: 20px;
    min-width: 300px;
    width: 30%;
    padding-left: 38px;
    padding-right: 38px;
}

.ft-box h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-align: center;
}

.ft-txt{
    display: flex;
    justify-content: center;
    flex-direction: row;  
}

.ft-txt p {
    text-align: left !important;
    margin-left: 28px;
}

.ft-txt img{
    margin-top: 6.5px;
    height: 33px;
    width: 33px;
}

.ft-txt, .ft-txt2, .ft-txt3 {
    font-size: 1.4rem;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-align: center;
}

.ft-txt2 p{
    text-align: center !important;
}

.ft-txt3{
    display: flex;
    justify-content: center;
    flex-direction: row; 
    color: #fff !important;
    gap: 14px;
}

.ft-txt3 img{
    height: 35px;
    width: 35px;
}

.ft-txt3 a img {
    width: 40px;
    height: 40px;
    margin: 0 10px;
}

.ft-btn {
    padding: 10px 20px;
    border: 1.5px solid #fff;
    border-radius: 14px;
    color: #fff;
    cursor: pointer;
    font-size: 1em;
    background-color: #000;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin-left: 85px;
    margin-top: 11px;
}

.ft-btn:hover {
    background-color: #f8b400;
}

/* Media queries for responsiveness */
/* Laptops/Desktops (1024px - 1280px) */
@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    body {
        font-size: 20px;
    }

    /* Navbar adjustments */
    #header {
        padding: 20px 60px;
    }

    #navbar {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    /* Welcome Section */
    .section-welcome {
        height: 90vh; /* Slightly reduced height for better proportions */
    }
      
    .image-container {
        min-height: 90vh;
        clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 50% 100%, 0% 90%);
    }

    .w-h-container {
        margin-top: 0 !important;
        min-height: 0;
        line-height: 5rem;
    }

    .w-h-container h1 {
        font-size: 65px;
    }

    .w-h-container a {
        font-size: 1rem;
        padding: 8px 16px;
    }

    .w-h-container p{
        padding-top: 0;
    }

    /* Accommodation Section */
    .a-container {
        padding-top: 28px;
        flex-direction: column;
        justify-content: space-around;
    }

    .a-information img {
        width: 86%;
        height: auto;
    }

    .a-info-box{
        margin-left: 80px;
        margin-right: 80px;
    }

    /* Information Section */
    .ihf-container{
        flex-direction: column;
        width: 100%;
    }

    .hf-container{
        flex-direction: column;
        width: 100%;
    }

    .hf-img1{
        width: 100%;
    }

    .hf-img1 img {
        width: 35%; /* Adjust image size */
    }

    .hf-img1 h2 {
        font-size: 49px; /* Adjust font size */
        padding-bottom: 14px;
        text-align: center;
    }

    /* Footer adjustments */
    .copyright {
        flex-direction: row;
        gap: 40px;
    }

    .ft-box {
        width: 40%;
        padding: 25px;
    }

    .ft-txt img {
        margin-top: 8.5px;
        height: 28px;
        width: 28px;
    }

    .ft-btn {
        margin-left: 35px;
    }
}

/* Tablets/Larger Tablets (768px - 1024px) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    body{
        font-size: 18px;
    }
    
    /* Navbar adjustments */
    #header {
        padding: 15px 40px;
    }

    #navbar {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    /* Welcome Section */ 
    .section-welcome {
        min-height: 80vh;
    }

    .image-container {
        height: 80vh;
        clip-path: polygon(0% 0%, 100% 0%, 100% 88%, 50% 100%, 0% 88%);
    }

    .w-h-container h1 {
        font-size: 65px;
    }

    .w-h-container p {
        padding-top: 0;
    }

    .w-h-container a {
        font-size: 0.9rem;
        padding: 7px 14px;
    }

    /* Accommodation Section */
    .a-head h2 {
        font-size: 2.5rem;
    }

    .a-items{
        flex-direction: column;
    }

    .a-container {
        flex-direction: column;
        justify-content: space-between;
    }

    .a-information img {
        width: 83%;
        height: auto;
    }

    .a-info-box{
        margin-left: 80px;
        margin-right: 80px;
    }

    .a-btn{
        margin-top: 21px;
    }

    /* Information Section */
    .hsf{
        width: 100%;
        justify-content: center;
    }

    .hsf-container{
        flex-direction: column;
        width: 100%;
    }

    .hf-container{
        flex-direction: column;
        width: 100%;
    }

    .hf-img1{
        width: 100%;
    }

    .hf-img1 img {
        width: 35%; /* Adjust image size */
    }

    .hf-img1 h2 {
        font-size: 35px; /* Adjust font size */
        padding-bottom: 14px;
    }

    /* Footer adjustments */
    .copyright {
        flex-direction: row;
        gap: 30px;
    }

    .ft-box {
        width: 45%;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }

    .ft-box h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .ft-txt p{
        margin-left: 0 !important;
        text-align: center !important;
    }

    .ft-txt img{
        margin-top: 8.5px;
        height: 28px;
        width: 28px;
    }

    .ft-box1 h1{
        margin-bottom: 0;
    }

    .ft-txt3 {
        margin-bottom: 0;
    }

    .ft-btn {
        margin-bottom: 4px;
        display: flex;
        justify-content: center !important;
        text-align: right !important;
        margin-left: 0;
    }
}

@media only screen and (min-width: 769px) {
    #navbar {
        display: flex; /* Ensure navbar is displayed */
    }

    .navbar-toggle {
        display: none; /* Hide toggle button on larger screens */
    }
}

/* Tablets (up to 768px) */
@media only screen and (max-width: 768px) {
    /* General adjustments */
    body {
        font-size: 16px;
        padding: 0 !important ;
        margin: 0 !important;
    }    
    
    /* Header */
    #header {
        flex-direction: column;
        padding: 10px 20px;
        width: 100%;
        position: sticky;
        background-color: #000;
        color: #fff;
    }

    .nav-home{
        display: none !important;
    }

    /* Make navbar items stack vertically */
    #navbar {
        display: flex; /* Initially hide navbar */
        flex-direction: column !important;
        align-items: flex-start;
        justify-content: flex-start;
        position: sticky;
        top: 60px;
        left: 0 !important; /* Ensure it aligns left */
        width: 100%;
        background-color: #000;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.01);
        padding: 10px 0; /* Adjusted padding */
        transition: all 0.3s ease; /* Smooth transition */
        opacity: 0; /* Initially hide navbar */
        transform: translateY(-100%);
    }

    #navbar:hover{
        cursor: pointer;
    }

    #navbar.show {
        display: flex; /* Show navbar when toggled */
        opacity: 1; /* Ensure it's fully visible */
        transform: translateY(0); /* Move navbar into view */
    }

    .navbar-toggle {
        display: block; /* Show toggle button */
        cursor: pointer; /* Change cursor to pointer */
    }

    #navbar li {
        margin-bottom: 25px;
    }

    #navbar li a {
        font-size: 14px;
        color: #fff;
    }

    #close {
        display: block; /* Show close button */
        font-size: 24px; /* Adjust close button size */
        color: #fff;
        cursor: pointer; /* Change cursor to pointer */
        position: absolute;
        top: 10px; /* Position close button */
        right: 20px; /* Position close button */
    }

    .icon {
        display: block;
        position: absolute;
        top: 10px;
        right: 20px;
    }

    .dropdown-content {
        position: static;
        background-color: #000;
        display: none;
        width: 100%;
        text-align: center;
    }

    /* Show dropdown on clicking the parent */
    .dropdown.active .dropdown-content {
        display: flex; /* Show the dropdown when active */
    }
    .dropdown-content li {
        padding: 10px 0;
    }

    .dropdown-content li a {
        color: #fff;
    }

    /* Show dropdown on clicking the parent */
    .dropdown.active .dropdown-content {
        display: block; /* Show the dropdown when active */
    }

    /* Welcome Section */
    .section-welcome {
        min-height: 65vh;
    }
      
    .image-container {
        height: 65vh;
        clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 50% 100%, 0% 85%);
    }

    .w-h-container h1 {
        font-size: 100px;
    }

    .w-h-container a {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    /* Accommodation Section */
    .a-container {
        flex-direction: column;
        background-color: #efebe5;
    }

    .a-information img {
        width: 100%;
        height: auto;
    }

    .a-info-box{
        margin: 0;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .a-btn {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
    }

    /* Information Section */
    .ihf{
        width: 100%;
        justify-content: center;
    }

    .ihf-container{
        flex-direction: column;
        width: 100%;
    }

    .hf-container{
        flex-direction: column;
        width: 100%;
    }

    .hf-img1{
        width: 100%;
    }

    .hf-img1 img {
        width: 35%; /* Adjust image size */
    }

    .hf-img1 h2 {
        font-size: 35px; /* Adjust font size */
        padding-bottom: 14px;
    }
   
    /* Footer */
    .copyright {
        flex-direction: column;
        gap: 20px; /* Reduce gap */
    }

    .ft-box {
        width: 100%;
        padding: 10px;
        text-align: center;
    }

    footer {
        text-align: center;
    }

    .ft-txt, .ft-txt2, .ft-txt3 {
        font-size: 1.4rem;
        font-family:  Helvetica;
        text-align: center;
    }

    .ft-txt img {
        margin-top: 8.5px;
        height: 28px;
        width: 28px;
    }

    .ft-txt, .ft-txt3 {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .ft-txt2{
        padding-bottom: 0;
    }
    
    .ft-btn{
        margin-bottom: 25px;
        margin-top: 14px;
    } 
}

/* Add media queries for responsive design */
/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767px) {
    #header {
        padding: 10px 40px;
    }

    .nav-home{
        display: none !important;
    }

    #navbar li {
        padding: 0 10px;
    }

    #navbar li a {
        font-size: 14px;
    }

    .text-center h2 {
        font-size: 40px;
        margin-left: 20px;
    }

    .text-center p {
        font-size: 20px;
        margin-left: 20px;
    }
}

/* Extra small devices (phones, less than 575px) */
@media (max-width: 575px) {
    #header {
        padding: 5px 20px;
    }

    .nav-home{
        display: none !important;
    }

    #navbar li {
        padding: 0 5px;
    }

    #navbar li a {
        font-size: 12px;
    }

   /* Welcome Section */
   .w-h-container h1 {
    font-size: 75px !important;
    }

    .w-h-container p{
        padding-top: 0;
    }

    /* Accomodation Section */
    .a-container {
        flex-direction: column;
    }

    .a-information img {
        width: 100%;
        height: auto;
    }

    .a-info-box {
        margin: 0 10;
    }

    /* Information Section */
    .ihf{
        width: 100%;
        justify-content: center;
    }

    .ihf-container{
        flex-direction: column;
        width: 100%;
    }

    .hf-container{
        flex-direction: column;
        width: 100%;
    }

    .hf-img1{
        width: 100%;
    }

    .hf-img1 img {
        width: 35%; /* Adjust image size */
    }

    .hf-img1 h2 {
        font-size: 35px; /* Adjust font size */
        padding-bottom: 14px;
    }   
}

@media only screen and (min-width: 488px) and (max-width: 768px) {
    body {
        font-size: 16px;
        padding: 10px;
    }

    /* Header adjustments */
    #header {
        padding: 10px 20px;
        flex-direction: column; /* Stack header items */
        position: sticky;
        background-color: #000;
        color: #fff;
    }

    .nav-home{
        display: none !important;
    }

    #navbar {
        display: none; /* Hide navbar by default */
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: sticky;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #000;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.01);
        padding: 10px 0;
    }

    #navbar.show {
        display: flex; /* Show navbar when toggled */
        opacity: 1;
    }

    .navbar-toggle {
        display: block; /* Show the toggle button */
    }

    #navbar li {
        margin-bottom: 25px;
    }

    #navbar li a {
        font-size: 16px;
        color: #fff;
    }

    #close {
        display: block;
        font-size: 24px;
        position: absolute;
        top: 10px;
        right: 20px;
    }

    /* Welcome Section */
    .section-welcome {
        min-height: 60vh !important;
    }
      
    .image-container {
        height: 60vh !important;
        clip-path: polygon(0% 0%, 100% 0%, 100% 84%, 50% 100%, 0% 84%);
    }

    .w-h-container {
        text-align: center;
        padding: 0 15px; /* Add some padding for smaller screens */
    }

    .w-h-container h1 {
        font-size: 45px !important;
        line-height: 1.1;
    }

    .w-h-container p {
        font-size: 35px;
        padding-top: 0;
    }

    .w-h-container a {
        font-size: 1rem;
        padding: 8px 16px;
    }

    /* Accommodation Section */
    .a-head h2 {
        font-size: 40px !important;
    }

    .a-items {
        flex-direction: column;
        align-items: center;
    }

    .a-container {
        flex-direction: column;
        align-items: center;
    }

    .a-information img {
        width: 100%;
        height: auto;
    }

    /* Information Section */
    .ihf{
        width: 100%;
        justify-content: center;
    }

    .ihf-container{
        flex-direction: column;
        width: 100%;
    }

    .hf-container{
        flex-direction: column;
        width: 100%;
    }

    .hf-img1{
        width: 100%;
    }

    .hf-img1 img {
        width: 35%; /* Adjust image size */
    }

    .hf-img1 h2 {
        font-size: 35px; /* Adjust font size */
        padding-bottom: 14px;
    }

    .section-h1-nature {
        min-height: 70vh !important;
    }

    .section-h2-nature {
        min-height: 70vh !important;
    }

    /* Footer */
    .copyright {
        flex-direction: column;
        gap: 20px;
    }

    .ft-box {
        width: 100%;
        padding: 10px;
        text-align: center;
    }

    .ft-box h2{
        font-size: 2.5rem;
        font-family:  Helvetica;
        text-align: center;
    }

    .ft-txt p {
        text-align: center !important;
        margin-left: 0;
    }

    .ft-txt img {
        margin-top: 0;
        height: 21px;
        width: 21px;
    }

    .ft-txt, .ft-txt3 {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    footer p {
        font-size: 16px;
    }

    .ft-btn {
        margin-left: 0;
    }
}

/* Mobile Devices (up to 488px) */
@media only screen and (min-width: 418px) and (max-width: 488px) {
    /* General adjustments */
    body {
        font-size: 14px;
        padding: 10px;
    }    
    
    #header {
        padding: 10px 20px;
        flex-direction: column; /* Stack header items */
        position: sticky;
        background-color: #000;
        color: #fff;
    }

    .nav-home{
        display: none !important;
    }

    #navbar {
        display: none; /* Hide navbar by default */
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: sticky;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #000;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.01);
        padding: 10px 0;
    }

    #navbar.show {
        display: flex; /* Show navbar when toggled */
        opacity: 1;
    }

    .navbar-toggle {
        display: block; /* Show the toggle button */
    }

    #navbar li {
        margin-bottom: 25px;
    }

    #navbar li a {
        font-size: 16px;
        color: #fff;
    }

    #close {
        display: block;
        font-size: 24px;
        position: absolute;
        top: 10px;
        right: 20px;
    }

    /* Welcome Section */
    .section-welcome {
        height: 350px !important;
        min-height: 350px !important;
    }
      
    .image-container {
        clip-path: polygon(0% 0%, 100% 0%, 100% 82%, 50% 100%, 0% 82%);
    }

    .w-h-container {
        margin-top: 0;
    }

    .w-h-container h1 {
        font-size: 35px !important; ;
    }

    .w-h-container p {
        font-size: 21px;
    }

    .w-h-container a {
        font-size: 1rem;
        padding: 5px 10px;
    }

   /* Accommodation Section */
   .a-container {
    flex-direction: column;
    }

    .a-head h2 {
        font-size: 1.7rem;
    }

    .a-information img {
        width: 100%;
        height: auto;
    }

    .a-btn {
        padding-top: 10px;
        padding-left: 0;
        padding-right: 0;
    }

    .a-p p {
        font-size: 2rem;
    }

    /* Information Section */
    .ihf{
        width: 100%;
        justify-content: center;
    }

    .ihf-container{
        flex-direction: column;
        width: 100%;
    }

    .hf-container{
        flex-direction: column;
        width: 100%;
    }

    .hf-img1{
        width: 100%;
    }

    .hf-img1 img {
        width: 35%; /* Adjust image size */
    }

    .hf-img1 h2 {
        font-size: 21px; /* Adjust font size */
        padding-bottom: 14px;
    }

    .section-h1-nature {
        min-height: 70vh !important;
    }

    .section-h2-nature {
        min-height: 70vh !important;
    }

    /* Footer Section */
    .copyright {
        flex-direction: column;
    }

    .ft-box {
        width: 100%;
        margin-bottom: 10px;
        min-width: 0;
    }

    .ft-txt p{
        margin-left: 0 !important;
        text-align: center !important;
    }

    .ft-txt, .ft-txt3 {
        flex-direction: row;
        align-items: center;
    }

    footer p {
        font-size: 15px;
    }

    .ft-btn {
        margin-left: 0;
    }
}

@media only screen and (min-width: 318px) and (max-width: 418px){
    body, html {
        overflow-x: hidden;
    }

    /* Ensure all containers take full width */
    #header, #navbar, .cnt-column, .l-row, .copyright, .ft-box {
        width: 100% !important;
        padding: 0 10px; /* Add inner padding for content */
    }

    /* Images and text blocks */
    .scn-w-img img, .i-img-left img, .scn-1-img img, .scn-2-img img, .ft-txt img {
        max-width: 100%;
        height: auto;
    }
    
    body {
        font-size: 14px;
        padding: 0 !important;
    }    
    
    /* Header adjustments */
    #header {
        padding: 10px;
        flex-direction: column; /* Stack header items */
        position: sticky;
        background-color: #000;
        color: #fff;
    }

    .nav-home{
        display: none !important;
    }

    #navbar {
        display: none; /* Hide navbar by default */
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: sticky;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #000;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.01);
        padding: 10px 0;
    }

    #navbar.show {
        display: flex; /* Show navbar when toggled */
        opacity: 1;
    }

    .navbar-toggle {
        display: block; /* Show the toggle button */
    }

    #navbar li {
        margin-bottom: 25px;
    }

    #navbar li a {
        font-size: 16px;
        color: #fff;
    }

    #close {
        display: block;
        font-size: 24px;
        position: absolute;
        top: 10px;
        right: 20px;
    }

    /* Welcome Section */
    .section-welcome {
        height: 45vh !important;
        min-height: 45vh !important;
    }
      
    .image-container {
        height: 60vh;
        clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 50% 100%, 0% 80%);
    }

    .w-h-container h1 {
        font-size: 28px !important;
    }

    .w-h-container a {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    /* Accommodation Section */
    .a-container {
        flex-direction: column;
    }

    .a-information img {
        width: 100%;
        height: auto;
    }

    .a-btn {
        padding-top: 10px;
        padding-left: 0;
        padding-right: 0;
    }

    /* Information Section */
    .ihf{
        width: 100%;
        justify-content: center;
    }

    .ihf-container{
        flex-direction: column;
        width: 100%;
    }

    .hf-container{
        flex-direction: column;
        width: 100%;
    }

    .hf-img1{
        width: 100%;
    }

    .hf-img1 img {
        width: 35%; /* Adjust image size */
    }

    .hf-img1 h2 {
        font-size: 35px; /* Adjust font size */
        padding-bottom: 14px;
    }

    .section-h1-nature {
        min-height: 70vh !important;
    }

    .section-h2-nature {
        min-height: 70vh !important;
    }

    /* Footer Section */
    footer {
        padding: 40px 20px !important;
        width: 100%;
    }

    .copyright {
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0 !important;
    }

    .ft-box {
        width: 100%;
        padding: 10px;
        text-align: center;
        margin-bottom: 10px;
        min-width: 0;
    }

    .ft-txt p{
        margin-left: 0 !important;
        text-align: center !important;
    }

    .ft-txt img {
        margin-top: 0;
        margin-right: -14px;
        height: 21px;
        width: 21px;
    }

    .ft-txt, .ft-txt3 {
        flex-direction: row;
        align-items: center;
    }

    footer p {
        font-size: 13px;
    }

    .ft-txt3 img{
        height: 35px;
        width: 35px;
    }

    .ft-txt3 a img {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }

    .ft-btn {
        padding: 8px 16px;
        font-size: 12px;
        margin-left: 0;
    }

    .ft-btn:hover {
        background-color: #f8b400;
    }

    .ft-txt3 {
        margin-bottom: 0;
    }

    .ft-box1{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }

    .ft-box1 h1{
        margin-bottom: 0;
    }

    .ft-box1 p{
        margin-bottom: 0;
    }

    .ft-box1 img{
        height: 35px;
        width: 35px;
    }

    .ft-box1 a img {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }

}

@media only screen and (min-width: 200px) and (max-width: 318px){
    body, html {
        overflow-x: hidden;
    }

    /* Ensure full-width for containers and prevent extra padding/margins */
    #header, #navbar, .cnt-column, .l-row, .copyright, .ft-box {
        width: 100% !important;
        padding: 0 5px; /* Adjust padding to fit smaller screens */
    }

    /* Images and text blocks */
    .scn-w-img img, .i-img-left img, .scn-1-img img, .scn-2-img img, .ft-txt img {
        max-width: 100%;
        height: auto;
    }
    
    body {
        font-size: 12px;
    }    
    
    /* Header adjustments */
    #header {
        padding: 5px 8px;
        flex-direction: column; /* Stack header items */
        position: sticky;
        background-color: #000;
        color: #fff;
    }

    .nav-home{
        display: none !important;
    }

    #navbar {
        display: none; /* Hide navbar by default */
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: sticky;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #000;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.01);
        padding: 10px 0;
    }

    #navbar.show {
        display: flex; /* Show navbar when toggled */
        opacity: 1;
    }

    .navbar-toggle {
        display: block; /* Show the toggle button */
    }

    #navbar li {
        padding: 4px 0;
        margin-bottom: 25px;
    }

    #navbar li a {
        font-size: 10px;
        color: #fff;
    }

    #close {
        display: block;
        font-size: 24px;
        position: absolute;
        top: 10px;
        right: 20px;
    }

    /* Welcome Section */
    .section-welcome {
        height: 45vh !important; /* Reduced height for very small screens */
        min-height: 45vh !important; /* Reduced height for very small screens */
    }
      
    .image-container {
        clip-path: polygon(0% 0%, 100% 0%, 100% 78%, 50% 100%, 0% 78%);
    }

    .w-h-container h1 {
        font-size: 21px !important;
    }

    .w-h-container a {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    /* Accomodation Section */
    .a-head h2 {
        font-size: 1.5rem;
    }

    .a-p p {
        font-size: 1.5rem;
    }

    /* Information Section */
    .ihf{
        width: 100%;
        justify-content: center;
    }

    .ihf-container{
        flex-direction: column;
        width: 100%;
    }

    .ihf h2 {
        font-size: 21px !important;
    }

    .hf-container{
        flex-direction: column;
        width: 100%;
    }

    .hf-img1{
        width: 100%;
    }

    .hf-img1 img {
        width: 35%; /* Adjust image size */
    }

    .hf-img1 h2 {
        font-size: 35px; /* Adjust font size */
        padding-bottom: 14px;
    }

    .section-h1-nature {
        min-height: 70vh !important;
    }

    .section-h2-nature {
        min-height: 70vh !important;
    }

    /* Footer Section */
    footer {
        padding: 40px 20 !important;
        width: 100%;
    }

    .copyright {
        flex-direction: column;
    }

    .ft-box {
        width: 100%;
        margin-bottom: 10px;
        padding: 8px;
        min-width: 0;
    }

    .ft-txt p {
        margin-left: 0 !important;
        text-align: center !important;
    }

    .ft-txt img {
        margin-top: 0;
        margin-right: -14px;
        height: 18px;
        width: 18px;
    }

    .ft-txt, .ft-txt3 {
        flex-direction: row;
        align-items: center;
    }

    footer p {
        font-size: 13px;
    }

    .ft-btn{
        margin-bottom: 25px;
        margin-top: 14px;
        margin-left: 0;
    }

    .ft-txt3 img{
        height: 35px;
        width: 35px;
    }

    .ft-txt3 a img {
        width: 28px;
        height: 28px;
        margin: 0 10px;
    }
}

/* Rooms Page */
/* Full-screen sections */
#r-layout-content > div {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

/* Background images cover full area and stay fixed */
.r-uk-background-cover {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Room Background 2 section */
.section-r1-nature{
    background-image: url(../Assets/Rooms/10.webp);
    background-size: cover;
}

/* Rooms section */
.s-section-welcome {
    display: flex;
    flex-direction: column;
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 20px;
}

.rooms-s-row {
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    padding: 0;
}

.rms-l{
    background-color: #818181ad !important;
    color: #fff !important;
}

.rms-r{
    background-color: #fff !important;
    color: #000 !important;
}

.rooms-s-info {
    width: 50%;
    text-align: left;
    color: #000;
    display: flex;
    justify-content: center;
    flex-direction: row !important;
}

.rooms-s-info img {
    padding: 20px;
    height: 300px;
    width: 300px;
}

.s-head h2 {
    margin-top: -10px;
    font-size: 2.5rem;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-align: center;
    font-weight: 500;
}

.s-p p {
    margin: 10px 0;
    font-size: 1.4rem !important;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1 !important;
    text-align: left;
}

.rm-items{
    flex-direction: column;
    justify-content: center;
    margin-top: 55px;
}

.rm-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.rm-information img{
    height: 90%;
    width: 90%;
    padding: 0;
}

.rm-information-r img{
    height: 90%;
    width: 90%;
    padding: 0;
    margin-left: 20px;
}

.rm-img img {
  transition: transform 0.3s ease;
}

.rm-img img:hover {
  transform: scale(1.2);
}

.rm-btn a {
    color: #fff !important;  /* Text color */
    border-color: #000 !important; /* Border color */
    border-width: 2px; /* Optional: Adjust the border thickness */
    border-style: solid; /* Ensures the border appears solid */
    background-color: #000;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.rm-btn {
    margin-top: 21px;
    justify-content: center;
    align-content: center;
    text-align: center;
}

.rm-btn p {
    color: #34b4b0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.rooms-s-info1{
    width: 50%;
    height: 80vh;
    padding-bottom: 20px;
}

.section-r2-nature{
    background-image: url(../Assets/Rooms/54.webp);
    background-size: cover;
    opacity: 65%;
}

/* For screens between 1600px and 1920px */
@media only screen and (min-width: 1600px) and (max-width: 1920px){
    body {
        font-size: 20px; /* Adjust font size for better readability */
        padding: 0 !important; /* Remove padding for better layout */
        margin: 0 !important; /* Remove margin for better layout */
    }

    #header {
        padding: 15px 50px; /* Adjust padding to fit smaller screen widths */
    }

    /* Navbar */
    #navbar {
        justify-content: space-between;
        padding: 0 15px;
    }

    /* Rooms section */
    .rooms-s-row{
        flex-direction: row;        
    }

    .rooms-s-info {
        width: 50%; /* Make room info full-width */
        padding: 10px; /* Adjust padding */
        flex-direction: column !important;
    }

    .rooms-s-info1 {
        width: 50%; /* Make room info full-width */
        height: auto;
    }

    .s-head h2{
        margin-top: 0;
    }

    .s-p p{
        margin-left: 75px;
    }

    .rm-container {
        padding-top: 28px;
        justify-content: space-around;
    }

    .rm-information img {
        width: 100%;
        height: auto;
        margin-left: 0 !important;
        padding: 10px;
    }

    .rm-information-r img {
        width: 100%;
        height: auto;
        margin-left: 0 !important;
        padding: 10px;
    }

    .rm-info-box{
        margin-left: 80px;
        margin-right: 80px;
    }

    /* Adjust footer layout */
    .ft-box {
        width: 45%; /* Adjust width for the footer boxes */
    }
}

/* For screens between 1280px and 1600px */
@media only screen and (min-width: 1280px) and (max-width: 1600px){
    body {
        font-size: 18px; /* Adjust font size for better readability */
        padding: 0 !important; /* Remove padding for better layout */
        margin: 0 !important; /* Remove margin for better layout */
    }

    #header {
        padding: 15px 50px; /* Adjust padding to fit smaller screen widths */
    }

    /* Navbar */
    #navbar {
        justify-content: space-between;
        padding: 0 15px;
    }

    /* Rooms section */
    .rooms-s-row{
        flex-direction: row;        
    }

    .rooms-s-info {
        width: 50%; /* Make room info full-width */
        padding: 10px; /* Adjust padding */
        flex-direction: column !important;
    }

    .rooms-s-info1 {
        width: 50%; /* Make room info full-width */
        height: auto;
    }

    .s-head h2{
        margin-top: 0;
    }

    .s-p p{
        margin-left: 75px;
    }

    .rm-container {
        padding-top: 28px;
        justify-content: space-around;
    }

    .rm-information img {
        width: 100%;
        height: auto;
        margin-left: 0 !important;
        padding: 10px;
    }

    .rm-information-r img {
        width: 100%;
        height: auto;
        margin-left: 0 !important;
        padding: 10px;
    }

    .rm-info-box{
        margin-left: 80px;
        margin-right: 80px;
    }

    /* Adjust footer layout */
    .ft-box {
        width: 45%; /* Adjust width for the footer boxes */
    }
}

/* For screens between 1024px and 1280px */
@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    body {
        font-size: 18px; /* Adjust font size for better readability */
        padding: 0 !important; /* Remove padding for better layout */
        margin: 0 !important; /* Remove margin for better layout */
    }

    #header {
        padding: 15px 50px; /* Adjust padding to fit smaller screen widths */
    }

    /* Navbar */
    #navbar {
        justify-content: space-between;
        padding: 0 15px;
    }

    /* Rooms section */
    .s-section-welcome {
        padding: 0 !important;
    }

    .rooms-s-row{
        flex-direction: column-reverse;        
    }

    .s-rev {
        flex-direction: column;
    }

    .rooms-s-info {
        width: 100%; /* Make room info full-width */
        padding: 10px; /* Adjust padding */
        flex-direction: column !important;
    }

    .rooms-s-info1 {
        width: 100%; /* Make room info full-width */
        height: auto;
    }

    .s-head h2{
        margin-top: 0;
    }

    .s-p p{
        margin-left: 75px;
    }

    .rm-container {
        padding-top: 28px;
        justify-content: space-around;
    }

    .rm-information img {
        width: 100%;
        height: auto;
        margin-left: 0 !important;
        padding: 10px;
    }

    .rm-information-r img {
        width: 100%;
        height: auto;
        margin-left: 0 !important;
        padding: 10px;
    }

    .rm-info-box{
        margin-left: 80px;
        margin-right: 80px;
    }

    /* Adjust footer layout */
    .ft-box {
        width: 45%; /* Adjust width for the footer boxes */
    }
}

/* For screens up to 1024px */
@media only screen and (max-width: 1024px) {
    body {
        font-size: 16px; /* Further reduce font size */
    }

    #header {
        padding: 10px 20px; /* Reduce padding to fit smaller screens */
        flex-direction: column; /* Stack header items vertically */
    }

    /* Navbar */
    #navbar {
        flex-direction: column; /* Stack navbar items vertically */
        align-items: center;
    }

    /* Members Section */
    .rooms-s-row {
        flex-direction: column; /* Stack room info sections vertically */
    }
    
    .rooms-s-info {
        width: 100%; /* Make room info full-width */
        padding: 10px; /* Adjust padding */
    }

    .rooms-s-info1 {
        width: 100%; /* Make room info full-width */
        padding: 10px; /* Adjust padding */
    }    

    /* Footer */
    .copyright {
        flex-direction: column; /* Stack footer sections vertically */
    }

    .ft-box {
        width: 100%; /* Full width for footer boxes */
    }

    footer {
        padding: 20px 10px;
        text-align: center; /* Center-align footer text */
    }
}

/* For screens between 768px and 1024px */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    body {
        font-size: 16px; /* Adjust font size */
    }

    #header {
        padding: 15px 40px; /* Adjust padding for medium screens */
    }

    /* Navbar */
    #navbar {
        flex-direction: row; /* Maintain row layout */
        justify-content: space-between;
        padding: 0 20px;
    }

    .rsw-container p{
        font-size: 20px;
        text-align: center;
    }

    /* Members Section */
    .rooms-s-row {
        flex-direction: column-reverse; /* Stack room info vertically */
    }

    .s-rev {
        flex-direction: column;
    }

    .rooms-s-info {
        width: 100%; /* Full width for room info */
        padding: 20px; /* Adjust padding */
        flex-direction: column !important;
    }

    .rooms-s-info1 {
        width: 100%; /* Make room info full-width */
        padding: 20px; /* Adjust padding */
        flex-direction: column-reverse !important;
        height: auto;
    }

    .rooms-s-info img {
        width: 100%; /* Make images responsive */
        height: auto;
        margin-left: 0;
    }

    .rooms-s-info1 img {
        width: 100%; /* Make images responsive */
        height: auto;
        margin-left: 0;
    }

    .s-p p{
        font-size: 1.2rem !important;
        margin-left: 15px;
    }

    .rm-items{
        flex-direction: column;
    }

    .rm-container {
        flex-direction: column;
        justify-content: space-between;
    }

    .rm-information img {
        width: 450px;
        height: auto;
        text-align: center;
        justify-content: center;
    }

    .rm-information-r img {
        width: 450px;
        height: auto;
        text-align: center;
        justify-content: center;
    }

    .rm-btn{
        margin-top: 21px;
    }

    /* Footer */
    .copyright {
        flex-direction: column; /* Stack footer sections vertically */
        gap: 30px;
    }

    .ft-box {
        width: 45%; /* Adjust width of footer boxes */
        padding: 20px;
    }

    footer {
        text-align: center;
    }
}

/* Media query for devices with a screen width of 768px or smaller */
@media screen and (max-width: 768px) {
    /* General adjustments */
    body {
        font-size: 16px;
    }

    /* Members Section */
    .rooms-s-row {
        flex-direction: column; /* Stack room info vertically */
    }

    .rooms-s-info {
        width: 100%; /* Full width for room info */
        padding: 20px; /* Adjust padding */
        flex-direction: column !important;
    }

    .rooms-s-info1 {
        width: 100%; /* Make room info full-width */
        padding: 20px; /* Adjust padding */
        flex-direction: column-reverse !important;
        height: auto;
    }

    .rooms-s-info img {
        width: 100%; /* Make images responsive */
        height: auto;
        margin-left: 0;
    }

    .rooms-s-info h2 {
        font-size: 1.6rem !important; /* Adjust heading size */
        width: 100%;
    }

    .rooms-s-info p {
        font-size: 0.9rem !important; /* Adjust paragraph size */
        width: 100%;
    }

    .rooms-s-info1 img {
        width: 100%; /* Make images responsive */
        height: auto;
        margin-left: 0;
    }

    .rooms-s-info1 h2 {
        font-size: 1.6rem !important; /* Adjust heading size */
        width: 100%;
    }

    .rooms-s-info1 p {
        font-size: 0.9rem !important; /* Adjust paragraph size */
        width: 100%;
    }

    .rm-container {
        flex-direction: column;
        background-color: #efebe5;
    }

    .rm-information img {
        width: 100%;
        height: auto;
    }

    .rm-info-box{
        margin: 0;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .rm-btn {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
    }

    /* Footer */
    .ft-box {
        width: 100%;
        padding: 10px;
    }

    footer {
        text-align: center;
    }

    .ft-txt, .ft-txt3 {
        flex-direction: row;
        align-items: center;
    }

    .ft-box1 h1{
        margin-top: 10px;
        margin-bottom: 25px;
    }

    .ft-box1 p{
        margin-top: 35px;
        margin-bottom: 35px;
    }
    
    .ft-btn{
        margin-bottom: 25px;
    } 
}

@media only screen and (min-width: 488px) and (max-width: 768px){
    body {
        font-size: 16px;
        padding: 0 !important;
    }    
    
    #header {
        flex-direction: column;
        padding: 5px 10px;
    }

    /* Navbar adjustments */
    #navbar {
        flex-direction: column !important;
        padding: 0;
        align-items: center;
    }

    #navbar li {
        padding: 5px 0;
    }

    #navbar li a {
        font-size: 14px;
    }

    .section-r1-nature {
        min-height: 70vh !important;
    }

    /* Rooms section */
    .rooms-s-row {
        flex-direction: column-reverse; /* Stack room info vertically */
    }

    .s-rev {
        flex-direction: column;
    }

    .rooms-s-info {
        width: 100%; /* Full width for room info */
        padding: 20px; /* Adjust padding */
        flex-direction: column !important;
    }

    .rooms-s-info1 {
        width: 100%; /* Make room info full-width */
        padding: 20px; /* Adjust padding */
        flex-direction: column-reverse !important;
        height: auto;
    }

    .rooms-s-info img {
        width: 100%; /* Make images responsive */
        height: auto;
        margin-left: 0;
    }

    .rooms-s-info1 img {
        width: 100%; /* Make images responsive */
        height: auto;
        margin-left: 0;
    }

    .s-head {
        margin-left: -75px;
    }

    .s-head h2{
        font-size: 2rem !important;
    }

    .s-p p{
        font-size: 1.2rem !important;
        margin-left: 15px;
    }

    .rm-items {
        flex-direction: column;
        align-items: center;
    }

    .rm-container {
        flex-direction: column;
        align-items: center;
    }

    .rm-information img {
        width: 450px;
        height: auto;
    }

    .section-r2-nature {
        min-height: 70vh !important;
    }
}

/* Media query for devices with a screen width of 488px or smaller */
@media only screen and (min-width: 418px) and (max-width: 488px) {
    #header {
        padding: 5px 10px;
    }

    #navbar {
        flex-direction: column;
        padding: 0;
    }

    #navbar li {
        padding: 5px 0;
    }

    #navbar li a {
        font-size: 14px;
    }

   /* Rooms Section */
   .rooms-s-row {
    flex-direction: column-reverse !important; /* Stack room info vertically */
    }

    .s-rev {
        flex-direction: column !important;
    }

    .rooms-s-info {
        width: 100%; /* Full width for room info */
        padding: 20px; /* Adjust padding */
        flex-direction: column !important;
    }

    .rooms-s-info1 {
        width: 100%; /* Make room info full-width */
        padding: 20px; /* Adjust padding */
        flex-direction: column-reverse !important;
        height: auto;
    }

    .rooms-s-info img {
        width: 100%; /* Make images responsive */
        height: auto;
        margin-left: 0;
    }

    .rooms-s-info1 img {
        width: 100%; /* Make images responsive */
        height: auto;
        margin-left: 0;
    }

    .s-head {
        margin-left: -45px;
    }

    .rm-container {
        flex-direction: column;
    }

    .rm-information img {
        width: 400px !important;
        height: auto;
    }

    .rm-information-r img {
        width: 400px !important;
        height: auto;
    }

    .rm-btn {
        padding-top: 10px;
        padding-left: 0;
        padding-right: 0;
    }

    .section-r2-nature {
        min-height: 70vh !important;
    }

    /* Footer */
    .ft-box {
        width: 100%;
        padding: 5px;
    }

    footer {
        padding: 20px 10px;
        text-align: center;
    }

    .ft-txt, .ft-txt3 {
        flex-direction: row;
        align-items: center;
    }
}

@media only screen and (min-width: 318px) and (max-width: 418px){
    body {
        font-size: 14px;
        padding: 10px;
    }    
    
    #header {
        flex-direction: column;
        padding: 5px 10px;
    }

    /* Navbar adjustments */
    #navbar {
        flex-direction: column !important;
        padding: 0;
        align-items: center;
    }

    #navbar li {
        padding: 5px 0;
    }

    #navbar li a {
        font-size: 12px;
    }

    /* Rooms section */
    .rooms-s-row {
        flex-direction: column-reverse; /* Stack room info vertically */
    }

    .s-rev {
        flex-direction: column;
    }

    .rooms-s-info {
        width: 100%; /* Full width for room info */
        padding: 20px; /* Adjust padding */
        flex-direction: column !important;
    }

    .rooms-s-info1 {
        width: 100%; /* Make room info full-width */
        padding: 20px; /* Adjust padding */
        flex-direction: column-reverse !important;
        height: auto;
    }

    .rooms-s-info img {
        width: 100%; /* Make images responsive */
        height: auto;
        margin-left: 0;
    }

    .rooms-s-info1 img {
        width: 100%; /* Make images responsive */
        height: auto;
        margin-left: 0;
    }

    .s-head {
        margin-left: -45px;
    }

    .rm-container {
        flex-direction: column;
    }

    .rm-information img {
        width: 100%;
        height: auto;
    }

    .rm-information-r img {
        width: 100%;
        height: auto;
    }

    .rm-btn {
        padding-top: 10px;
        padding-left: 0;
        padding-right: 0;
    }

    .section-r2-nature {
        min-height: 70vh !important;
    }
}

@media only screen and (min-width: 200px) and (max-width: 318px){
    body {
        font-size: 12px;
        padding: 0 !important;
    }    
    
    #header {
        flex-direction: column;
        padding: 5px 10px;
    }

    /* Navbar adjustments */
    #navbar {
        flex-direction: column !important;
        padding: 0;
        align-items: center;
    }

    #navbar li {
        padding: 5px 0;
    }

    #navbar li a {
        font-size: 12px;
    }


    /* Rooms Background 1 section */
    .section-r1-nature {
        min-height: 70vh !important;
    }

    /* Rooms section */
    .rooms-s-row {
        flex-direction: column-reverse; /* Stack room info vertically */
    }

    .s-rev {
        flex-direction: column;
    }

    .rooms-s-info {
        width: 100%; /* Full width for room info */
        padding: 20px; /* Adjust padding */
        flex-direction: column !important;
    }

    .rooms-s-info1 {
        width: 100%; /* Make room info full-width */
        padding: 20px; /* Adjust padding */
        flex-direction: column-reverse !important;
        height: auto;
    }

    .rooms-s-info img {
        width: 100%; /* Make images responsive */
        height: auto;
        margin-left: 0;
    }

    .rooms-s-info1 img {
        width: 100%; /* Make images responsive */
        height: auto;
        margin-left: 0;
    }

    .s-head {
        margin-left: -10px;
    }

    .s-p p {
        margin-left: -10px;
    }

    .section-r2-nature {
        min-height: 70vh !important;
    }
}

/* GalleryPage */
/* Full-screen sections */
#r-layout-content > div {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

/* Background images cover full area and stay fixed */
.r-uk-background-cover {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Welcome section styling */
.section-g-welcome{
    min-height: 35vh !important;
}

.rgw-container {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    min-height: 0;
}

.rgw-container h1 {
    font-size: 65px !important;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #000;
    font-weight: 500;
}

.rgw-container p {
    font-size: 25px;
    text-align: center;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

/* Gallery Background 1 section */
.section-g1-nature {
    background-image: url(../Assets/Gallery/Gallery.webp);
    min-height: 75vh !important;
}

/* Individual Room section */
.section-gsf {
    background-color: #fff !important;
    min-height: 75vh !important;
}

.gsf-container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.gf-head h2{
    width: 100%;
    font-size: 2.5rem;
    text-align: left;
    color: #000;
    padding-left: 90px;
    padding-bottom: 21px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
}

.gf-container{
    display: flex;
    justify-content: center;
    flex-direction: row;
    padding-bottom: 21px;
}

.gf-img1{
    width: 25%;    
}

.gf-img1 h2{
    color: #000;
    margin-top: 14px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.gf-img1 img{
    width: 235px;
    height: auto;
}

/* Gallery Background 2 section */
.section-g2-nature {
    background-image: url(../Assets/Gallery/Background-2.webp);
    background-size: cover;
    min-height: 75vh !important;
    opacity: 65%;
}

/* Lightbox overlay */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  user-select: none;
}

/* For screens between 1024px and 1280px */
@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    body {
        font-size: 18px; /* Adjust font size for better readability */
        padding: 0 !important; /* Remove padding for better layout */
        margin: 0 !important; /* Remove margin for better layout */
    }

    #header {
        padding: 15px 50px; /* Adjust padding to fit smaller screen widths */
    }

    /* Navbar */
    #navbar {
        justify-content: space-between;
        padding: 0 15px;
    }

    /* Welcome section styling */    
    .rgw-container{
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .rgw-container h1{
        font-size: 65px !important;
        text-align: center;
    }

    .rgw-container p{
        font-size: 25px;
        text-align: center;
    }   

    /* Room Section */
    .gsf-container{
        flex-direction: column;
        width: 100%;
    }

    .gf-container{
        flex-direction: column;
        width: 100%;
    }

    .gf-head h2 {
        text-align: center;
        padding-left: 0;
    }

    .gf-img1{
        width: 100%;
    }

    .gf-img1 img {
        width: 50%; /* Adjust image size */
    }

    .gf-img1 h2 {
        font-size: 49px; /* Adjust font size */
        padding-bottom: 14px;
    }
}

/* For screens up to 1024px */
@media only screen and (max-width: 1024px) {
    body {
        font-size: 16px; /* Further reduce font size */
    }

    #header {
        padding: 10px 20px; /* Reduce padding to fit smaller screens */
        flex-direction: column; /* Stack header items vertically */
    }

    /* Navbar */
    #navbar {
        flex-direction: column; /* Stack navbar items vertically */
        align-items: center;
    }

    .rsw-container{
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .rgw-container h1{
        font-size: 65px !important;
        text-align: center;
    }

    .rgw-container p{
        font-size: 25px;
        text-align: center;
    }

    /* Footer */
    .copyright {
        flex-direction: column; /* Stack footer sections vertically */
    }

    .ft-box {
        width: 100%; /* Full width for footer boxes */
    }

    footer {
        padding: 20px 10px;
        text-align: center; /* Center-align footer text */
    }
}

/* For screens between 768px and 1024px */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    body {
        font-size: 16px; /* Adjust font size */
    }

    #header {
        padding: 15px 40px; /* Adjust padding for medium screens */
    }

    /* Navbar */
    #navbar {
        flex-direction: row; /* Maintain row layout */
        justify-content: space-between;
        padding: 0 20px;
    }

    .rgw-container{
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .rgw-container h1{
        font-size: 60px !important;
        text-align: center;
    }

    .rgw-container p{
        font-size: 20px;
        text-align: center;
    }

    /* Room Section */
    .gsf{
        width: 100%;
        justify-content: center;
    }

    .gsf-container{
        flex-direction: column;
        width: 100%;
    }

    .gf-container{
        flex-direction: column;
        width: 100%;
    }

    .gf-head h2 {
        text-align: center;
        padding-left: 0;
    }

    .gf-img1{
        width: 100%;
    }

    .gf-img1 img {
        width: 50%; /* Adjust image size */
    }

    .gf-img1 h2 {
        font-size: 35px; /* Adjust font size */
        padding-bottom: 14px;
    }

    /* Footer */
    .copyright {
        flex-direction: column; /* Stack footer sections vertically */
        gap: 30px;
    }

    .ft-box {
        width: 45%; /* Adjust width of footer boxes */
        padding: 20px;
    }

    footer {
        text-align: center;
    }
}

/* Media query for devices with a screen width of 768px or smaller */
@media screen and (max-width: 768px) {
    /* General adjustments */
    body {
        font-size: 16px;
    }
    
    .rgw-container{
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .rgw-container h1{
        font-size: 60px !important;
        text-align: center;
    }

    .rgw-container p{
        font-size: 20px;
        text-align: center;
    }

    /* Room Section */
    .gsf{
        width: 100%;
        justify-content: center;
    }

    .gsf-container{
        flex-direction: column;
        width: 100%;
    }

    .gf-container{
        flex-direction: column;
        width: 100%;
    }

    .gf-img1{
        width: 100%;
    }

    .gf-img1 img {
        width: 35%; /* Adjust image size */
    }

    .gf-img1 h2 {
        font-size: 35px; /* Adjust font size */
        padding-bottom: 14px;
    }

    .lightbox img {
        width: 100%;
        height: auto;
        max-height: 100%;
        border-radius: 0;
    }

    /* Footer */
    .ft-box {
        width: 100%;
        padding: 10px;
    }

    footer {
        text-align: center;
    }

    .ft-txt, .ft-txt3 {
        flex-direction: row;
        align-items: center;
    }
    
    .ft-btn{
        margin-bottom: 25px;
    } 
}

@media only screen and (min-width: 488px) and (max-width: 768px){
    body {
        font-size: 16px;
        padding: 0 !important;
    }    
    
    #header {
        flex-direction: column;
        padding: 5px 10px;
    }

    /* Navbar adjustments */
    #navbar {
        flex-direction: column !important;
        padding: 0;
        align-items: center;
    }

    #navbar li {
        padding: 5px 0;
    }

    #navbar li a {
        font-size: 14px;
    }

    /* Welcome Section*/
    .rgw-container{
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .rgw-container h1{
        font-size: 45px !important;
        text-align: center;
    }

    .rgw-container p{
        font-size: 20px;
        text-align: center;
    }

    /* Gallery Background 1 Section */
    .section-g1-nature {
        min-height: 70vh !important;
    }

    /* Room Section */
    .gsf{
        width: 100%;
        justify-content: center;
    }

    .gsf-container{
        flex-direction: column;
        width: 100%;
    }

    .gf-head h2 {
        text-align: center;
        padding-left: 0;
    }

    .gf-container{
        flex-direction: column;
        width: 100%;
    }

    .gf-img1{
        width: 100%;
    }

    .gf-img1 img {
        width: 65%; /* Adjust image size */
    }

    .gf-img1 h2 {
        font-size: 35px; /* Adjust font size */
        padding-bottom: 14px;
    }

    /* Gallery Background 2 Section */
    .section-g2-nature {
        min-height: 70vh !important;
    }

    .lightbox img {
        width: 100%;
        height: auto;
        max-height: 100%;
        border-radius: 0;
    }
}

/* Media query for devices with a screen width of 488px or smaller */
@media only screen and (min-width: 418px) and (max-width: 488px) {
    #header {
        padding: 5px 10px;
    }

    #navbar {
        flex-direction: column;
        padding: 0;
    }

    #navbar li {
        padding: 5px 0;
    }

    #navbar li a {
        font-size: 14px;
    }

   /* Welcome Section*/
    .rgw-container{
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .rgw-container h1{
        font-size: 45px !important;
        text-align: center;
    }

    .rgw-container p{
        font-size: 20px;
        text-align: center;
    }

    /* Gallery Background 1 Section */
    .section-g1-nature {
        min-height: 70vh !important;
    }

   /* Information Section */
   .gsf{
    width: 100%;
    justify-content: center;
    }

    .gsf-container{
        flex-direction: column;
        width: 100%;
    }

    .gf-head h2 {
        text-align: center;
        padding-left: 0;
    }

    .gf-container{
        flex-direction: column;
        width: 100%;
    }

    .gf-img1{
        width: 100%;
    }

    .gf-img1 img {
        width: 100% !important; /* Adjust image size */
    }

    .gf-img1 h2 {
        font-size: 35px; /* Adjust font size */
        padding-bottom: 14px;
    }

    /* Gallery Background 2 Section */
    .section-g2-nature {
        min-height: 70vh !important;
    }

    .lightbox img {
        width: 100%;
        height: auto;
        max-height: 100%;
        border-radius: 0;
    }

    /* Footer */
    .ft-box {
        width: 100%;
        padding: 5px;
    }

    footer {
        padding: 20px 10px;
        text-align: center;
    }

    .ft-txt, .ft-txt3 {
        flex-direction: row;
        align-items: center;
    }
}

@media only screen and (min-width: 318px) and (max-width: 418px){
    body {
        font-size: 14px;
        padding: 10px;
    }    
    
    #header {
        flex-direction: column;
        padding: 5px 10px;
    }

    /* Navbar adjustments */
    #navbar {
        flex-direction: column !important;
        padding: 0;
        align-items: center;
    }

    #navbar li {
        padding: 5px 0;
    }

    #navbar li a {
        font-size: 12px;
    }

    /* Welcome Section*/
    .rgw-container{
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .rgw-container h1{
        font-size: 45px !important;
        text-align: center;
    }

    .rgw-container p{
        font-size: 20px;
        text-align: center;
    }

    /* Gallery Background 1 Section */
    .section-g1-nature {
        min-height: 70vh !important;
    }

    /* Information Section */
    .gsf{
        width: 100%;
        justify-content: center;
    }

    .gsf-container{
        flex-direction: column;
        width: 100%;
    }

    .gf-head h2 {
        text-align: center;
        padding-left: 0;
    }

    .gf-container{
        flex-direction: column;
        width: 100%;
    }

    .gf-img1{
        width: 100%;
    }

    .gf-img1 img {
        width: 100%; /* Adjust image size */
    }

    .gf-img1 h2 {
        font-size: 21px; /* Adjust font size */
        padding-bottom: 14px;
    }

    /* Gallery Background 2 Section */
    .section-g2-nature {
        min-height: 70vh !important;
    }

    .lightbox img {
        width: 100%;
        height: auto;
        max-height: 100%;
        border-radius: 0;
    }
}

@media only screen and (min-width: 200px) and (max-width: 318px){
    body {
        font-size: 12px;
        padding: 0 !important;
    }    
    
    #header {
        flex-direction: column;
        padding: 5px 10px;
    }

    /* Navbar adjustments */
    #navbar {
        flex-direction: column !important;
        padding: 0;
        align-items: center;
    }

    #navbar li {
        padding: 5px 0;
    }

    #navbar li a {
        font-size: 12px;
    }

    /* Welcome Section*/
    .rgw-container{
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .rgw-container h1{
        font-size: 35px !important;
        text-align: center;
    }

    .rgw-container p{
        font-size: 17px;
        text-align: center;
    }

    /* Gallery Background 1 Section */
    .section-g1-nature {
        min-height: 70vh !important;
    }

    /* Information Section */
    .gsf{
        width: 100%;
        justify-content: center;
    }

    .gsf-container{
        flex-direction: column;
        width: 100%;
    }

    .gf-head h2 {
        text-align: center;
        padding-left: 0;
    }

    .gf-container{
        flex-direction: column;
        width: 100%;
    }

    .gf-img1{
        width: 100%;
    }

    .gf-img1 img {
        width: 100%; /* Adjust image size */
    }

    .gf-img1 h2 {
        font-size: 21px; /* Adjust font size */
        padding-bottom: 14px;
    }

    /* Gallery Background 2 Section */

    .lightbox img {
        width: 100%;
        height: auto;
        max-height: 100%;
        border-radius: 0;
    }
}

/* About Page */
/* Full-screen sections */
#r-layout-content > div {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

/* Background images cover full area and stay fixed */
.r-uk-background-cover {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* About Background 1 section */
.section-a1-nature {
    background-image: url(../Assets/About/13.webp);
}

/* Lighthouse section */
.section-a-lght {
    background-color: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
}

.la-clm{
    display: flex;
    flex-direction: column;
    padding-top: 21px;
}

.la-row{
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.la-text-content {
    width: 50%;
}

.la-text-content img{
    width: 600px;
    height: auto;
}

.la-text-content h2 {
    font-size: 3rem;
    color: #000;
    font-family: 'Marthin Slant';
    text-align: left;
    margin-left: -45px;
    width: 100%;
    font-weight: 500;
}

.la-text-content p {
    line-height: 1.3;
    font-size: 28px !important;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-align: left;
    margin-left: -35px;
    width: 100%;
}

.la-text1-content {
    width: 93%;
}

.la-text1-content p {
    line-height: 1.6;
    font-size: 28px !important;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-align: left;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 21px;
}

.section-a2-nature {
    background-image: url(../Assets/About/54.webp);
    opacity: 65%;
}

/* Laptops/Desktops (1600px - 1920px) */
@media only screen and (min-width: 1600px) and (max-width: 1920px){
    body {
        font-size: 20px;
        padding: 0 !important;
    }

    #header {
        padding: 15px 50px;
    }

    /* Navbar adjustments */
    #navbar {
        padding: 0 15px;
    }

    /* Light House Section */
    .la-row{
        flex-direction: row
    }

    .la-text-content {
        width: 50%; /* Adjust text width */
    }

    .la-text-content img {
        width: 580px;
        height: auto;
    }

    .la-text-content p {
        text-align: left;
        font-size: 28px;
        width: 100%;
    }

    .la-text1-content {
        width: 88%; /* Adjust text width */
    }

    .la-text1-content p {
        text-align: left;
        font-size: 28px;
    }

    /* Footer */
    .ft-box {
        width: 45%; /* Adjust width of footer boxes */
    }
}

/* For screens between 1280px and 1600px */
@media only screen and (min-width: 1280px) and (max-width: 1600px){
    body {
        font-size: 18px;
        padding: 0 !important;
    }

    #header {
        padding: 15px 50px;
    }

    /* Navbar adjustments */
    #navbar {
        padding: 0 15px;
    }

    /* Light House Section */
    .la-row{
        flex-direction: row
    }

    .la-text-content {
        width: 50%; /* Adjust text width */
    }

    .la-text-content img {
        width: 580px;
        height: auto;
    }

    .la-text-content p {
        text-align: left;
        font-size: 27px !important;
        width: 100%;
    }

    .la-text1-content {
        width: 91%; /* Adjust text width */
    }

    .la-text1-content p {
        text-align: left;
        font-size: 28px;
    }

    /* Footer */
    .ft-box {
        width: 45%; /* Adjust width of footer boxes */
    }
}

/* For screens between 1024px and 1280px */
@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    body {
        font-size: 18px; /* Adjust font size for better readability */
        padding: 0 !important; /* Remove padding for better layout */
        margin: 0 !important; /* Remove margin for better layout */
    }

    #header {
        padding: 15px 50px; /* Adjust padding to fit smaller screen widths */
    }

    /* Navbar */
    #navbar {
        justify-content: space-between;
        padding: 0 15px;
    }

    /* Welcome section styling */    
    .raw-container{
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .raw-container h1{
        font-size: 65px !important;
        text-align: center;
    }

    .raw-container p{
        font-size: 25px;
        text-align: center;
    }   

    /* Light House Section */
    .la-row{
        flex-direction: row !important;
    }

    .la-text-content {
        width: 100%; /* Adjust text width */        
    }

    .la-text-content h2 {
        margin-left: 15px;
    }

    .la-text-content p {
        margin-right: 5px !important;
        margin-left: 5px;
        text-align: left;
        width: 100%;
        font-size: 25px !important;
        padding: 10px;
    }

    .la-text1-content {
        width: 100%; /* Adjust text width */
    }

    .la-text1-content p {
        margin-right: 0 !important;
        text-align: left;
        width: 100%;
        font-size: 25px !important;
    }

    /* Adjust footer layout */
    .ft-box {
        width: 45%; /* Adjust width for the footer boxes */
    }
}

/* For screens up to 1024px */
@media only screen and (max-width: 1024px) {
    body {
        font-size: 16px; /* Further reduce font size */
    }

    #header {
        padding: 10px 20px; /* Reduce padding to fit smaller screens */
        flex-direction: column; /* Stack header items vertically */
    }

    /* Navbar */
    #navbar {
        flex-direction: column; /* Stack navbar items vertically */
        align-items: center;
    }

    .raw-container{
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .raw-container h1{
        font-size: 65px !important;
        text-align: center;
    }

    .raw-container p{
        font-size: 25px;
        text-align: center;
    }
    
    /* Light House Section */
    .la-row{
        flex-direction: column;
    }

    .la-text-content {
        width: 100%; /* Adjust text width */
    }

    .la-text-content p {
        margin-right: 0 !important;
        text-align: center;
    }

    .la-text1-content {
        width: 100%; /* Adjust text width */
    }

    /* Footer */
    .copyright {
        flex-direction: column; /* Stack footer sections vertically */
    }

    .ft-box {
        width: 100%; /* Full width for footer boxes */
    }

    footer {
        padding: 20px 10px;
        text-align: center; /* Center-align footer text */
    }
}

/* For screens between 768px and 1024px */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    body {
        font-size: 16px; /* Adjust font size */
    }

    #header {
        padding: 15px 40px; /* Adjust padding for medium screens */
    }

    /* Navbar */
    #navbar {
        flex-direction: row; /* Maintain row layout */
        justify-content: space-between;
        padding: 0 20px;
    }

    .raw-container{
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .raw-container h1{
        font-size: 60px !important;       
    }

    .raw-container p{
        font-size: 20px;
        text-align: center;
    }

    /* Light House Section */
    .la-row{
        flex-direction: column;
    }

    .la-text-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .la-text-content h2 {
        text-align: center;
        text-align: center;
        margin: 0 !important;
    }

    .la-text-content p {
        margin-right: 10px !important;
        margin-left: 10px;
        text-align: left;
        width: 100%;
        padding: 20px;
        font-size: 20px;
    }

    .la-text1-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .la-text1-content p {
        margin-right: 0 !important;
        text-align: left;
        width: 100%;
        padding: 20px;
        font-size: 20px;
    }

    /* Footer */
    .copyright {
        flex-direction: column; /* Stack footer sections vertically */
        gap: 30px;
    }

    .ft-box {
        width: 45%; /* Adjust width of footer boxes */
        padding: 20px;
    }

    footer {
        text-align: center;
    }
}

/* Media query for devices with a screen width of 768px or smaller */
@media screen and (max-width: 768px) {
    /* General adjustments */
    body {
        font-size: 16px;
    }
    
    .raw-container{
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .raw-container h1{
        font-size: 60px !important;
        text-align: center;
    }

    .raw-container p{
        font-size: 20px;
        text-align: center;
    }

    /* Light House Section */
    .la-row{
        flex-direction: column;
    }

    .la-text-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .la-text-content p {
        margin-right: 0 !important;
        text-align: center;
    }

    .la-text1-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    /* Footer */
    .ft-box {
        width: 100%;
        padding: 10px;
    }

    footer {
        text-align: center;
    }

    .ft-txt, .ft-txt3 {
        flex-direction: row;
        align-items: center;
    }

    .ft-box1 h1{
        margin-top: 10px;
        margin-bottom: 25px;
    }

    .ft-box1 p{
        margin-top: 35px;
        margin-bottom: 35px;
    }
    
    .ft-btn{
        margin-bottom: 25px;
    } 
}

@media only screen and (min-width: 488px) and (max-width: 768px){
    body {
        font-size: 16px;
        padding: 0 !important;
    }    
    
    #header {
        flex-direction: column;
        padding: 5px 10px;
    }

    /* Navbar adjustments */
    #navbar {
        flex-direction: column !important;
        padding: 0;
        align-items: center;
    }

    #navbar li {
        padding: 5px 0;
    }

    #navbar li a {
        font-size: 14px;
    }

    /* Welcome Section*/
    .raw-container{
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .raw-container h1{
        font-size: 60px !important;
        text-align: center;
    }

    .section-a1-nature {
        min-height: 70vh !important;
    }

    .raw-container p{
        font-size: 20px;
        text-align: center;
    }

    /* Light House Section */
    .la-row{
        flex-direction: column;
    }

    .la-text-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .la-text-content img {
        width: 80%;
        height: auto;
    }

    .la-text-content h2 {
        text-align: center;
        text-align: center;
        margin: 0 !important;
    }

    .la-text-content p {
        margin-right: 10px !important;
        margin-left: 10px;
        text-align: left;
        width: 100%;
        padding: 20px;
        font-size: 20px;
    }

    .la-text1-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .la-text1-content p {
        margin-right: 0 !important;
        text-align: left;
        width: 100%;
        padding: 20px;
        font-size: 20px;
    }

    .section-a2-nature {
        min-height: 70vh !important;
    }
}

/* Media query for devices with a screen width of 488px or smaller */
@media only screen and (min-width: 418px) and (max-width: 488px) {
    #header {
        padding: 5px 10px;
    }

    #navbar {
        flex-direction: column;
        padding: 0;
    }

    #navbar li {
        padding: 5px 0;
    }

    #navbar li a {
        font-size: 14px;
    }

   /* Welcome Section*/
    .raw-container{
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .raw-container h1{
        font-size: 45px !important;
        text-align: center;
    }

    .raw-container p{
        font-size: 20px;
        text-align: center;
    }

    .section-a1-nature {
        min-height: 70vh !important;
    }

   /* Light House Section */
   .la-row{
    flex-direction: column;
    }

    .la-text-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .la-text-content img {
        width: 80%;
        height: auto;
    }

    .la-text-content h2 {
        text-align: center;
        text-align: center;
        margin: 0 !important;
    }

    .la-text-content p {
        margin-right: 10px !important;
        margin-left: 10px;
        text-align: left;
        width: 100%;
        padding: 20px;
        font-size: 1.1rem;
    }

    .la-text1-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .la-text1-content p {
        margin-right: 0 !important;
        text-align: left;
        width: 100%;
        padding: 20px;
        font-size: 1.1rem;
    }

    .section-a2-nature {
        min-height: 70vh !important;
    }

    /* Footer */
    .ft-box {
        width: 100%;
        padding: 5px;
    }

    footer {
        padding: 20px 10px;
        text-align: center;
    }

    .ft-txt, .ft-txt3 {
        flex-direction: row;
        align-items: center;
    }    
}

@media only screen and (min-width: 318px) and (max-width: 418px){
    body {
        font-size: 14px;
        padding: 10px;
    }    
    
    #header {
        flex-direction: column;
        padding: 5px 10px;
    }

    /* Navbar adjustments */
    #navbar {
        flex-direction: column !important;
        padding: 0;
        align-items: center;
    }

    #navbar li {
        padding: 5px 0;
    }

    #navbar li a {
        font-size: 12px;
    }

    /* Welcome Section*/
    .raw-container{
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .raw-container h1{
        font-size: 45px !important;
        text-align: center;
    }

    .raw-container p{
        font-size: 20px;
        text-align: center;
    }

    .section-a1-nature {
        min-height: 70vh !important;
    }

    /* Light House Section */
    .la-row{
    flex-direction: column;
    }

    .la-text-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .la-text-content img {
        width: 80%;
        height: auto;
    }

    .la-text-content h2 {
        text-align: center;
        text-align: center;
        margin: 0 !important;
    }

    .la-text-content p {
        margin-right: 10px !important;
        margin-left: 10px;
        text-align: left;
        width: 100%;
        padding: 20px;
        font-size: 1.1rem;
    }

    .la-text1-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .la-text1-content p {
        margin-right: 0 !important;
        text-align: left;
        width: 100%;
        padding: 20px;
        font-size: 1.1rem;
    }

    .section-a2-nature {
        min-height: 70vh !important;
    }
}

@media only screen and (min-width: 200px) and (max-width: 318px){
    body {
        font-size: 12px;
        padding: 0 !important;
    }    
    
    #header {
        flex-direction: column;
        padding: 5px 10px;
    }

    /* Navbar adjustments */
    #navbar {
        flex-direction: column !important;
        padding: 0;
        align-items: center;
    }

    #navbar li {
        padding: 5px 0;
    }

    #navbar li a {
        font-size: 12px;
    }

    /* Welcome Section*/
    .raw-container{
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .raw-container h1{
        font-size: 35px !important;
        text-align: center;
    }

    .raw-container p{
        font-size: 17px;
        text-align: center;
    }

    .section-a1-nature {
        min-height: 70vh !important;
    }

    /* Light House Section */
    .la-row{
    flex-direction: column;
    }

    .la-text-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .la-text-content img {
        width: 80%;
        height: auto;
    }

    .la-text-content h2 {
        text-align: center;
        text-align: center;
        margin: 0 !important;
    }

    .la-text-content p {
        margin-right: 10px !important;
        margin-left: 10px;
        text-align: left;
        width: 100%;
        padding: 20px;
        font-size: 0.7rem !important;
    }

    .la-text1-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .la-text1-content p {
        margin-right: 0 !important;
        text-align: left;
        width: 100%;
        padding: 20px;
        font-size: 0.7rem !important;
    }

    .section-a2-nature {
        min-height: 70vh !important;
    }
}

/* Things to Do Page */
/* Full-screen sections */
#r-layout-content > div {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

/* Background images cover full area and stay fixed */
.r-uk-background-cover {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Welcome section styling */
.section-d-welcome {
    min-height: 45vh !important;
}

.rdw-container {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    min-height: 0;
}

.rdw-container h1 {
    font-size: 65px !important;
    text-align: center;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
}

.rdw-container p {
    font-size: 25px;
    text-align: center;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

/* Things to Do Background 1 section */
.section-d1-nature{
    background-image: url(../Assets/Destinations/Background-1.webp);
}

/* Lighthouse section */
.section-d-lght{
    background-color: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ld-clm{
    display: flex;
    flex-direction: row;
    padding-top: 45px;
}

.ld-row{
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.ld-text-content {
    width: 100%;      
}

.ld-text-content h2 {
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-align: center;
    font-size: 35px;
    padding-top: 14px;
    font-weight: 500;
}

.ld-text-content p {
    line-height: 1.6;
    font-size: 21px;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    padding: 20px;
    width: 75%;
    margin-left: 85px;
    text-align: left; 
}

.ld-text-content img{
    text-align: center !important;
    width: 450px;
    height: 550px;
}

/* Information section */
.section-isf {
    background-color: #fff !important;
}

.idf-clm{
    display: flex;
    flex-direction: column;
    padding-bottom: 21px;
}

.idf-container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.idf-h {
    font-size: 55px;
    text-align: center;
    color: #000;
    padding-bottom: 21px;
    padding-top: 28px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
}

.sf-container{
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.sf-img1{
    width: 25%;
    padding-bottom: 14px;
}

.sf-img1 h2{
    color: #000;
    margin-top: 14px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    width: 65%;
    margin-left: 60px;
    font-weight: 500;
}

.sf-img1 img{
    width: 50%;
}

.idf-h-2 {
    font-size: 49px;
    text-align: center;
    color: #000;
    padding-top: 40px;
    font-family: 'Marthin Slant';
    width: 100%;
}

/* Things to Do Background 1 section */
.section-d2-nature {
    background-image: url(../Assets/Destinations/Background-2.webp);
    min-height: 75vh !important;
    opacity: 65%;
}

/* For screens between 1600px and 1920px */
@media only screen and (min-width: 1600px) and (max-width: 1920px){
    body {
        font-size: 20px;
        padding: 0 !important;
    }

    #header {
        padding: 15px 50px;
    }

    /* Navbar adjustments */
    #navbar {
        padding: 0 15px;
    }

    /* Welcome Section*/
    .rdw-container{
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .rdw-container h1{
        font-size: 65px !important;
        text-align: center;
    }

    .rdw-container p{
        font-size: 25px;
        text-align: center;
    }

    /* Light House Section */
    .ld-row{
        flex-direction: column
    }

    .ld-text-content {
        width: 100%; /* Adjust text width */
    }

    .ld-text-content h2 {
        font-size: 35px;
    }

    .ld-text-content img {
        width: 500px;
        height: auto;
    }

    .ld-text-content p {
        text-align: left;
        font-size: 21px;
        width: 80%;
    }

    /* Information Section */
    .idf-container {
        margin-top: 35px;
    }

    .idf-h {
        text-align: left;
        padding-left: 0 !important;
    }

    .sf-container{
        flex-direction: row;
    }

    .sf-img1{
        width: 25%;
    }

    .sf-img1 img {
        width: 50%; /* Adjust image size */
    }

    .sf-img1 h2 {
        font-size: 35px; /* Adjust font size */
        margin-left: 80px;
    }

    /* Footer */
    .ft-box {
        width: 45%; /* Adjust width of footer boxes */
    }
}

/* For screens between 1024px and 1280px */
@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    body {
        font-size: 18px; /* Adjust font size for better readability */
        padding: 0 !important; /* Remove padding for better layout */
        margin: 0 !important; /* Remove margin for better layout */
    }

    #header {
        padding: 15px 50px; /* Adjust padding to fit smaller screen widths */
    }

    /* Navbar */
    #navbar {
        justify-content: space-between;
        padding: 0 15px;
    }

    /* Welcome section styling */    
    .rdw-container{
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .rdw-container h1{
        font-size: 65px !important;
        text-align: center;
    }

    .rdw-container p{
        font-size: 25px;
        text-align: center;
    }   

    /* Light House Section */
    .ld-row{
        flex-direction: column;
    }

    .ld-text-content {
        width: 100%; /* Adjust text width */
    }

    .ld-text-content h2 {
        font-size: 28px;
        margin-left: 55px;
    }

    .ld-text-content img {
        margin-left: 0;
    }

    .ld-text-content p {
        text-align: left;
        font-size: 21px;
        width: 80%;
        margin-left: 35px;
        margin-right: 35px;
    }

    /* Information Section */
    .idf-container{
        flex-direction: column;
        width: 100%;
    }

    .idf-h {
        text-align: center;
        padding-left: 0;
    }

    .sf-container{
        flex-direction: column;
        width: 100%;
    }

    .sf-img1{
        width: 100%;
    }

    .sf-img1 img {
        width: 100%; /* Adjust image size */
    }

    .sf-img1 h2 {
        padding-bottom: 14px;
        margin-left: 0;
        font-size: 28px;
        text-align: center;
        width: 100%;
    }
}

/* For screens up to 1024px */
@media only screen and (max-width: 1024px) {
    body {
        font-size: 16px; /* Further reduce font size */
    }

    #header {
        padding: 10px 20px; /* Reduce padding to fit smaller screens */
        flex-direction: column; /* Stack header items vertically */
    }

    /* Navbar */
    #navbar {
        flex-direction: column; /* Stack navbar items vertically */
        align-items: center;
    }

    .rdw-container{
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .rdw-container h1{
        font-size: 65px !important;
        text-align: center;
    }

    .rdw-container p{
        font-size: 25px;
        text-align: center;
    }
    
    /* Light House Section */
    .ld-clm{
        flex-direction: column;
    }

    .ld-row{
        flex-direction: column;
    }

    .ld-text-content {
        width: 100%; /* Adjust text width */
        text-align: center;
    }

    .ld-text-content img {
        margin-left: 0;
        width: 80%;
        text-align: center;
    }

    /* Information Section */
    .idf-h {
        text-align: center;
        padding-left: 0;
    }

    .sf-container{
        flex-direction: column;
        width: 100%;
    }

    .sf-img1{
        width: 100%;
    }

    .sf-img1 img {
        width: 100% !important; /* Adjust image size */
    }

    .sf-img1 h2 {
        padding-bottom: 14px;
        margin-left: 0;
        font-size: 28px;
        text-align: center;
        width: 100%;
    }

    /* Footer */
    .copyright {
        flex-direction: column; /* Stack footer sections vertically */
    }

    .ft-box {
        width: 100%; /* Full width for footer boxes */
    }

    footer {
        padding: 20px 10px;
        text-align: center; /* Center-align footer text */
    }
}

/* For screens between 768px and 1024px */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    body {
        font-size: 16px; /* Adjust font size */
    }

    #header {
        padding: 15px 40px; /* Adjust padding for medium screens */
    }

    /* Navbar */
    #navbar {
        flex-direction: row; /* Maintain row layout */
        justify-content: space-between;
        padding: 0 20px;
    }

    .rdw-container{
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .rdw-container h1{
        font-size: 60px !important;
        text-align: center;
    }

    .rdw-container p{
        font-size: 20px;
        text-align: center;
    }

    /* Light House Section */
    .ld-row{
        flex-direction: column;
    }

    .ld-text-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .ld-text-content h2 {
        font-size: 35px;
        margin-left: 55px;
    }

    .ld-text-content p {
        text-align: left;
        font-size: 21px;
        width: 80%;
        margin-left: 35px;
        margin-right: 35px;
    }

    /* Information Section */
    .isf{
        width: 100%;
        justify-content: center;
    }

    .idf-container{
        flex-direction: column;
        width: 100%;
    }

    .sf-container{
        flex-direction: column;
        width: 100%;
    }

    .sf-img1{
        width: 100%;
    }

    .sf-img1 img {
        width: 35%; /* Adjust image size */
    }

    .sf-img1 h2 {
        font-size: 35px; /* Adjust font size */
        padding-bottom: 14px;
    }

    /* Footer */
    .copyright {
        flex-direction: column; /* Stack footer sections vertically */
        gap: 30px;
    }

    .ft-box {
        width: 45%; /* Adjust width of footer boxes */
        padding: 20px;
    }

    footer {
        text-align: center;
    }
}

/* Media query for devices with a screen width of 768px or smaller */
@media screen and (max-width: 768px) {
    /* General adjustments */
    body {
        font-size: 16px;
    }
    
    .rdw-container{
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .rdw-container h1{
        font-size: 60px !important;
        text-align: center;
    }

    .rdw-container p{
        font-size: 20px;
        text-align: center;
    }

    /* Light House Section */
    .ld-row{
        flex-direction: column;
    }

    .ld-text-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    /* Information Section */
    .isf{
        width: 100%;
        justify-content: center;
    }

    .idf-container{
        flex-direction: column;
        width: 100%;
    }

    .sf-container{
        flex-direction: column;
        width: 100%;
    }

    .sf-img1{
        width: 100%;
    }

    .sf-img1 img {
        width: 35%; /* Adjust image size */
    }

    .sf-img1 h2 {
        font-size: 35px; /* Adjust font size */
        padding-bottom: 14px;
    }

    /* Footer */
    .ft-box {
        width: 100%;
        padding: 10px;
    }

    footer {
        text-align: center;
    }

    .ft-txt, .ft-txt3 {
        flex-direction: row;
        align-items: center;
    }

    .ft-box1 h1{
        margin-top: 10px;
        margin-bottom: 25px;
    }

    .ft-box1 p{
        margin-top: 35px;
        margin-bottom: 35px;
    }
    
    .ft-btn{
        margin-bottom: 25px;
    } 
}

@media only screen and (min-width: 488px) and (max-width: 768px){
    body {
        font-size: 16px;
        padding: 0 !important;
    }    
    
    #header {
        flex-direction: column;
        padding: 5px 10px;
    }

    /* Navbar adjustments */
    #navbar {
        flex-direction: column !important;
        padding: 0;
        align-items: center;
    }

    #navbar li {
        padding: 5px 0;
    }

    #navbar li a {
        font-size: 14px;
    }

    /* Welcome Section*/
    .rdw-container{
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .rdw-container h1{
        font-size: 60px !important;
        text-align: center;
    }

    .rdw-container p{
        font-size: 20px;
        text-align: center;
    }

    /* Things to Do Background 1 Section */
    .section-d1-nature {
        min-height: 70vh !important;
    }

    /* Light House Section */
    .ld-row{
        flex-direction: column;
    }

    .ld-text-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .ld-text-content h2 {
        font-size: 35px;
        margin-left: 75px;
    }

    .ld-text-content p {
        margin-left: 0;
        text-align: left;
        width: 100%;
    }

    .ld-text-content img {
        width: 80%;
        height: auto;
    }

    /* Information Section */
    .isf{
        width: 100%;
        justify-content: center;
    }

    .idf-container{
        flex-direction: column;
        width: 100%;
    }

    .sf-container{
        flex-direction: column;
        width: 100%;
    }

    .sf-img1{
        width: 100%;
    }

    .sf-img1 img {
        width: 35%; /* Adjust image size */
    }

    .sf-img1 h2 {
        font-size: 21px; /* Adjust font size */
        padding-bottom: 14px;
    }

    /* Things to Do Background 2 Section */
    .section-d2-nature {
        min-height: 70vh !important;
    }
}

/* Media query for devices with a screen width of 488px or smaller */
@media only screen and (min-width: 418px) and (max-width: 488px) {
    #header {
        padding: 5px 10px;
    }

    #navbar {
        flex-direction: column;
        padding: 0;
    }

    #navbar li {
        padding: 5px 0;
    }

    #navbar li a {
        font-size: 14px;
    }

   /* Welcome Section*/
    .rdw-container{
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .rdw-container h1{
        font-size: 45px !important;
        text-align: center;
    }

    .rdw-container p{
        font-size: 20px;
        text-align: center;
    }

    /* Things to Do Background 1 Section */
    .section-d1-nature {
        min-height: 70vh !important;
    }

   /* Light House Section */
   .ld-row{
    flex-direction: column;
    }

    .ld-text-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .ld-text-content h2 {
        font-size: 28px;
        margin-left: 45px;
    }

    .ld-text-content p {
        font-size: 20px;
        padding: 10px;
        width: 100%;
        margin-left: 0 !important;
    }

    .ld-text-content img {
        width: 80%;
        height: auto;
    }

    /* Information Section */
   .isf{
    width: 100%;
    justify-content: center;
    }

    .idf-container{
        flex-direction: column;
        width: 100%;
    }

    .sf-container{
        flex-direction: column;
        width: 100%;
    }

    .sf-img1{
        width: 100%;
    }

    .sf-img1 img {
        width: 80% !important; /* Adjust image size */
    }

    .sf-img1 h2 {
        font-size: 21px; /* Adjust font size */
        padding-bottom: 14px;
    }

    /* Things to Do Background 2 Section */
    .section-d2-nature {
        min-height: 70vh !important;
    }

    /* Footer */
    .ft-box {
        width: 100%;
        padding: 5px;
    }

    footer {
        padding: 20px 10px;
        text-align: center;
    }

    .ft-txt, .ft-txt3 {
        flex-direction: row;
        align-items: center;
    }
}

@media only screen and (min-width: 318px) and (max-width: 418px){
    body {
        font-size: 14px;
        padding: 10px;
    }    
    
    #header {
        flex-direction: column;
        padding: 5px 10px;
    }

    /* Navbar adjustments */
    #navbar {
        flex-direction: column !important;
        padding: 0;
        align-items: center;
    }

    #navbar li {
        padding: 5px 0;
    }

    #navbar li a {
        font-size: 12px;
    }

    /* Welcome Section*/
    .rdw-container{
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .rdw-container h1{
        font-size: 45px !important;
        text-align: center;
    }

    .rdw-container p{
        font-size: 20px;
        text-align: center;
    }

    /* Light House Section */
    .ld-row{
        flex-direction: column;
        align-items: center;
    }

    .ld-text-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .ld-text-content h2 {
        font-size: 28px;
        margin-left: 35px;
    }

    .ld-text-content p {
        font-size: 20px;
        padding: 10px;
        width: 100%;
        margin-left: 0 !important;
    }

    .ld-text-content img {
        width: 80%;
        height: auto;
    }

    /* Information Section */
    .isf{
        width: 100%;
        justify-content: center;
    }

    .idf-container{
        flex-direction: column;
        width: 100%;
    }

    .sf-container{
        flex-direction: column;
        width: 100%;
    }

    .sf-img1{
        width: 100%;
    }

    .sf-img1 img {
        width: 100% !important; /* Adjust image size */
    }

    .sf-img1 h2 {
        font-size: 28px; /* Adjust font size */
        padding-bottom: 14px;
    }
}

@media only screen and (min-width: 200px) and (max-width: 318px){
    body {
        font-size: 12px;
        padding: 0 !important;
    }    
    
    #header {
        flex-direction: column;
        padding: 5px 10px;
    }

    /* Navbar adjustments */
    #navbar {
        flex-direction: column !important;
        padding: 0;
        align-items: center;
    }

    #navbar li {
        padding: 5px 0;
    }

    #navbar li a {
        font-size: 12px;
    }

    /* Welcome Section*/
    .rdw-container{
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .rdw-container h1{
        font-size: 35px !important;
        text-align: center;
    }

    .rdw-container p{
        font-size: 17px;
        text-align: center;
    }

    /* Things to Do Background 1 Section*/
    .section-d1-nature {
        min-height: 70vh !important;
    }

    /* Light House Section */

    .ld-row{
        flex-direction: column;
        text-align: center;
    }

    .ld-text-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .ld-text-content h2 {
        font-size: 28px;
        margin-left: 28px;
    }

    .ld-text-content p {
        font-size: 17px;
        padding: 10px;
        width: 100%;
        margin-left: 0 !important;
    }

    .ld-text-content img {
        width: 80%;
        height: auto;
    }

    /* Information Section */
    .isf{
        width: 100%;
        justify-content: center;
    }

    .idf-container{
        flex-direction: column;
        width: 100%;
    }

    .idf-h {
        font-size: 35px;
        padding-left: 0;
    }

    .sf-container{
        flex-direction: column;
        width: 100%;
    }

    .sf-img1{
        width: 100%;
    }

    .sf-img1 img {
        width: 35%; /* Adjust image size */
    }

    .sf-img1 h2 {
        font-size: 35px; /* Adjust font size */
        padding-bottom: 14px;
    }

    /* Things to Do Background 2 Section */
    .section-d2-nature {
        min-height: 70vh !important;
    }
}

/* Contact Page */
.section-contact{
    background-color: #fff;
    min-height: 45vh;
}

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

.cnt-left-section {
    width: 60%;
    margin-right: 85px;
    margin-top: 38px;
}

.cnt-map img {
    width: 50%;
    height: auto;
    margin-bottom: 10px;
}

.cnt-map h1 {
    font-size: 49px;
    font-weight: bold;
    color: #000;
    text-align: left;
    margin-top: 5px;
    font-family: 'Marthin Slant';
}

.cnt-right-section {
    width: 40%;
    padding: 20px;
    justify-content: center;
}

form {
    display: flex;
    flex-direction: column;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

label {
    font-size: 16px;
    margin-bottom: 8px;
    margin-top: 20px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #000;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 3px solid #000;
    border-radius: 5px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
    background-color: lightgray;
}

.c-btn{
    text-align: center;
    padding-bottom: 35px;
}

.cnt-btn {
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    justify-content: center;
    text-align: center;
}

.cnt-btn:hover {
    background-color: #48BCA5;
}

/* For screens between 1024px and 1280px */
@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    body {
        font-size: 18px;
    }

    /* Header */
    #header {
        padding: 15px 50px;
    }

    #navbar {
        justify-content: space-between;
        padding: 0 15px;
    }

    #navbar li a {
        font-size: 14px;
    }

    /* Contact Section */
    .cnt-container {
        flex-direction: row;
    }

    .cnt-left-section, .cnt-right-section {
        width: 50%; /* Split the width evenly */
    }

    .cnt-right-section form {
        padding: 20px;
        margin-top: -33px;
    }

    /* Footer */
    .ft-box {
        width: 45%; /* Adjust the width of footer boxes */
        padding: 20px;
    }
}

/* For screens up to 1024px */
@media only screen and (max-width: 1024px) {
    body {
        font-size: 16px;
    }

    #header {
        padding: 10px 20px;
        flex-direction: column;
    }

    #navbar {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 15px;
    }

    /* Contact Section */
    .cnt-container {
        flex-direction: column;
    }

    .cnt-left-section, .cnt-right-section {
        width: 100%; /* Full width for sections */
    }

    .cnt-right-section form {
        padding: 15px;
    }

    /* Footer */
    .ft-box {
        width: 100%;
        padding: 15px;
    }

    footer {
        text-align: center;
    }
}

/* For screens up to 768px */
@media only screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }

    /* Contact Section */
    .cnt-container {
        flex-direction: column;
    }

    .cnt-left-section {
        width: 100%;
    }

    .cnt-right-section {
        width: 100%;
        padding: 10px;
    }

    /* Footer */
    .ft-box {
        width: 100%;
        padding: 10px;
    }

    footer {
        text-align: center;
    }
}

/* For screens up to 488px */
@media only screen and (min-width: 418px) and (max-width: 488px){
    body {
        font-size: 12px;
    }

    #header {
        padding: 5px 10px;
        flex-direction: column;
    }

    #navbar {
        flex-direction: column;
        padding: 0;
    }

    #navbar li {
        padding: 5px 0;
    }

    /* Contact Section */
    .cnt-container {
        flex-direction: column;
    }

    .cnt-left-section, .cnt-right-section {
        width: 100%;
    }

    .cnt-right-section form {
        padding: 10px;
    }

    /* Footer */
    .ft-box {
        width: 100%;
        padding: 5px;
    }

    footer {
        text-align: center;
        padding: 10px;
    }
}

/* Specials Page */
/* Full-screen sections */
#r-layout-content > div {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

/* Background images cover full area and stay fixed */
.r-uk-background-cover {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Lighthouse section */
.section-sp-lght {
    background-color: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
}

.lsp-hd {
    padding-bottom: 21px;
}

.lsp-hd h1 {
    font-size: 4rem;
    text-align: center;
    color: #000;
    font-family: 'Montserrat-Regular';
    width: 100%;
}

.lsp-hd p {
    font-size: 1.5rem;
    text-align: center;
    color: #000;
    font-family: 'Montserrat-Regular';
    width: 100%;
}

.lsp-clm{
    display: flex;
    flex-direction: column;
    padding-top: 21px;
}

.lsp-row {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.lsp-text-content {
    width: 40%;
    padding-left: 20px;
}

.lsp-text-content img{
    width: 600px;
    height: auto;
    text-align: left;    
}

.lsp-text1-content {
    width: 60%;
}

.lsp-text1-content p {
    line-height: 1.6;
    font-size: 25px !important;
    color: #000;
    font-family: 'Montserrat-Regular';
    text-align: left;
    padding-left: 50px;
    padding-right: 30px;
    padding-top: 15px;
}

/* Special Background  */
.section-sp1-nature {
    background-image: url(../Assets/Specials/Background.webp);
    min-height: 75vh !important;
}

/* Laptops/Desktops (1600px - 1920px) */
@media only screen and (min-width: 1600px) and (max-width: 1920px){
    body {
        font-size: 20px;
        padding: 0 !important;
    }

    #header {
        padding: 15px 50px;
    }

    /* Navbar adjustments */
    #navbar {
        padding: 0 15px;
    }

    /* Light House Section */
    .lsp-text-content {
        width: 50%; /* Adjust text width */
    }

    .lsp-text-content img {
        width: 580px;
        height: auto;
    }

    .lsp-text-content p {
        text-align: left;
        font-size: 28px;
        width: 75%;
    }

    .lsp-text1-content {
        width: 84%; /* Adjust text width */
    }

    .lsp-text1-content p {
        text-align: left;
        font-size: 28px;
    }

    /* Footer */
    .ft-box {
        width: 45%; /* Adjust width of footer boxes */
    }
}

/* For screens between 1280px and 1600px */
@media only screen and (min-width: 1280px) and (max-width: 1600px){
    body {
        font-size: 18px;
        padding: 0 !important;
    }

    #header {
        padding: 15px 50px;
    }

    /* Navbar adjustments */
    #navbar {
        padding: 0 15px;
    }

    /* Light House Section */
    .lsp-text-content {
        width: 50%; /* Adjust text width */
    }

    .lsp-text-content img {
        width: 580px;
        height: auto;
    }

    .lsp-text-content p {
        text-align: left;
        font-size: 28px;
        width: 75%;
    }

    .lsp-text1-content {
        width: 84%; /* Adjust text width */
    }

    .lsp-text1-content p {
        text-align: left;
        font-size: 28px;
    }

    /* Footer */
    .ft-box {
        width: 45%; /* Adjust width of footer boxes */
    }
}

/* For screens between 1024px and 1280px */
@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    body {
        font-size: 18px; /* Adjust font size for better readability */
        padding: 0 !important; /* Remove padding for better layout */
        margin: 0 !important; /* Remove margin for better layout */
    }

    #header {
        padding: 15px 50px; /* Adjust padding to fit smaller screen widths */
    }

    /* Navbar */
    #navbar {
        justify-content: space-between;
        padding: 0 15px;
    }

    /* Light House Section */
    .lsp-row {
        flex-direction: column;
    }

    .lsp-text-content {
        width: 100%; /* Adjust text width */        
    }

    .lsp-text1-content {
        width: 100%; /* Adjust text width */
    }

    .lsp-text1-content p {
        margin-right: 0 !important;
        text-align: center;
        width: 95%;
        font-size: 25px !important;
        margin-left: 14px;
    }

    /* Adjust footer layout */
    .ft-box {
        width: 45%; /* Adjust width for the footer boxes */
    }
}

/* For screens up to 1024px */
@media only screen and (max-width: 1024px) {
    body {
        font-size: 16px; /* Further reduce font size */
    }

    #header {
        padding: 10px 20px; /* Reduce padding to fit smaller screens */
        flex-direction: column; /* Stack header items vertically */
    }

    /* Navbar */
    #navbar {
        flex-direction: column; /* Stack navbar items vertically */
        align-items: center;
    }
    
    /* Light House Section */
    .lsp-text-content {
        width: 100%; /* Adjust text width */
    }

    .lsp-text-content p {
        margin-right: 0 !important;
        text-align: center;
    }

    .lsp-text1-content {
        width: 100%; /* Adjust text width */
    }

    /* Footer */
    .copyright {
        flex-direction: column; /* Stack footer sections vertically */
    }

    .ft-box {
        width: 100%; /* Full width for footer boxes */
    }

    footer {
        padding: 20px 10px;
        text-align: center; /* Center-align footer text */
    }
}

/* For screens between 768px and 1024px */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    body {
        font-size: 16px; /* Adjust font size */
    }

    #header {
        padding: 15px 40px; /* Adjust padding for medium screens */
    }

    /* Navbar */
    #navbar {
        flex-direction: row; /* Maintain row layout */
        justify-content: space-between;
        padding: 0 20px;
    }

    /* Light House Section */
    .lsp-row {
        flex-direction: column;
    }

    .lsp-text-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .lsp-text1-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .lsp-text1-content p {
        margin-right: 0 !important;
        text-align: center;
        width: 100%;
        padding: 20px;
        font-size: 20px;
    }

    /* Footer */
    .copyright {
        flex-direction: column; /* Stack footer sections vertically */
        gap: 30px;
    }

    .ft-box {
        width: 45%; /* Adjust width of footer boxes */
        padding: 20px;
    }

    footer {
        text-align: center;
    }
}

/* Media query for devices with a screen width of 768px or smaller */
@media screen and (max-width: 768px) {
    /* General adjustments */
    body {
        font-size: 16px;
    }

    /* Light House Section */
    .lsp-text-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .lsp-text-content p {
        margin-right: 0 !important;
        text-align: center;
    }

    .lsp-text1-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    /* Footer */
    .ft-box {
        width: 100%;
        padding: 10px;
    }

    footer {
        text-align: center;
    }

    .ft-txt, .ft-txt3 {
        flex-direction: row;
        align-items: center;
    }

    .ft-box1 h1{
        margin-top: 10px;
        margin-bottom: 25px;
    }

    .ft-box1 p{
        margin-top: 35px;
        margin-bottom: 35px;
    }
    
    .ft-btn{
        margin-bottom: 25px;
    } 
}

@media only screen and (min-width: 488px) and (max-width: 768px){
    body {
        font-size: 16px;
        padding: 0 !important;
    }    
    
    #header {
        flex-direction: column;
        padding: 5px 10px;
    }

    /* Navbar adjustments */
    #navbar {
        flex-direction: column !important;
        padding: 0;
        align-items: center;
    }

    #navbar li {
        padding: 5px 0;
    }

    #navbar li a {
        font-size: 14px;
    }

    /* Light House Section */
    .lsp-row {
        flex-direction: column;
    }

    .lsp-hd h1 {
        font-size: 3rem;
    }

    .lsp-text-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .lsp-text-content img {
        width: 80%;
        height: auto;
    }

    .lsp-text1-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .lsp-text1-content p {
        margin-right: 0 !important;
        text-align: center;
        width: 100%;
        padding: 20px;
        font-size: 20px;
    }

    .section-sp1-nature {
        min-height: 70vh !important;
    }
}

/* Media query for devices with a screen width of 488px or smaller */
@media only screen and (min-width: 418px) and (max-width: 488px) {
    #header {
        padding: 5px 10px;
    }

    #navbar {
        flex-direction: column;
        padding: 0;
    }

    #navbar li {
        padding: 5px 0;
    }

    #navbar li a {
        font-size: 14px;
    }

   /* Light House Section */
    .lsp-row {
        flex-direction: column;
    }

    .lsp-hd h1 {
        font-size: 2.5rem;
    }
    
    .lsp-text-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .lsp-text-content img {
        width: 80%;
        height: auto;
    }

    .lsp-text1-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .lsp-text1-content p {
        margin-right: 0 !important;
        text-align: center;
        width: 100%;
        padding: 20px;
        font-size: 1.1rem;
    }

    .section-sp1-nature {
        min-height: 70vh !important;
    }

    /* Footer */
    .ft-box {
        width: 100%;
        padding: 5px;
    }

    footer {
        padding: 20px 10px;
        text-align: center;
    }

    .ft-txt, .ft-txt3 {
        flex-direction: row;
        align-items: center;
    }    
}

@media only screen and (min-width: 318px) and (max-width: 418px){
    body {
        font-size: 14px;
        padding: 10px;
    }    
    
    #header {
        flex-direction: column;
        padding: 5px 10px;
    }

    /* Navbar adjustments */
    #navbar {
        flex-direction: column !important;
        padding: 0;
        align-items: center;
    }

    #navbar li {
        padding: 5px 0;
    }

    #navbar li a {
        font-size: 12px;
    }

    /* Light House Section */
    .lsp-row {
        flex-direction: column;
    }

    .lsp-hd h1 {
        font-size: 2rem;
    }

    .lsp-text-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .lsp-text-content img {
        width: 80%;
        height: auto;
    }

    .lsp-text1-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .lsp-text1-content p {
        margin-right: 0 !important;
        text-align: center;
        width: 100%;
        padding: 20px;
        font-size: 1.1rem;
    }

    .section-sp1-nature {
        min-height: 70vh !important;
    }
}

@media only screen and (min-width: 200px) and (max-width: 318px){
    body {
        font-size: 12px;
        padding: 0 !important;
    }    
    
    #header {
        flex-direction: column;
        padding: 5px 10px;
    }

    /* Navbar adjustments */
    #navbar {
        flex-direction: column !important;
        padding: 0;
        align-items: center;
    }

    #navbar li {
        padding: 5px 0;
    }

    #navbar li a {
        font-size: 12px;
    }

    /* Light House Section */
    .lsp-row {
        flex-direction: column;
    }

    .lsp-hd h1 {
        font-size: 1.8rem;
    }

    .lsp-text-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .lsp-text-content img {
        width: 80%;
        height: auto;
    }

    .lsp-text1-content {
        width: 100%; /* Adjust text width */
        padding-top: 21px;
    }

    .lsp-text1-content p {
        margin-right: 0 !important;
        text-align: center;
        width: 100%;
        padding: 20px;
        font-size: 0.7rem !important;
    }

    .section-sp1-nature {
        min-height: 70vh !important;
    }
}