/* 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: Helvetica;
    color: #333; /* Improved text contrast for readability */
}

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

#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: 600;
    color: #1a1a1a;
    transition: 0.3s ease;
}

#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: #333;
}

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

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

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    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: black;
    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: #ddd;
}

/* 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 images cover full area */
.uk-background-cover {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

/* Welcome section */
.scnry-w-section{
    background-image:  url(../Assets/Home/Background.webp);
    background-size: cover;
}

.scn-w-img{
    margin-bottom: 255px;
    text-align: center;
    margin-top: -15px;
}

.scn-w-img img{
    height: 435px;
    width: 435px;
}

.scn-w-img h1{
    font-size: 28px;
    color: #000;
    font-family: Helvetica;
    margin-top: 14px;
}

/* Lighthouse section */
.section-lght{
    background-color: #fff;
}

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

.l-row img {
    height: 50%;
    width: 50%;
}

.l-text-content {
    width: 45%;
    text-align: left;
    padding-left: 85px;
}

.l-text-content p {
    line-height: 1.6;
    font-size: 28px;
    color: #000;
    font-family: Helvetica;
}

/* Love MosselBaai 1 section */
.section-mossel1{
    background-image: url(../Assets/Home/16.webp);
    background-size: cover;
}

.msl-img{
    width: 45%;
}

.msl-img h2{
    color: #000;
    margin-top: 14px;
    text-align: center;
    font-family: Helvetica;
    font-size: 49px;
}

.msl-img img{
    width: 165%;
    margin-left: -235px;
}

.msl-txt3{
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 14px;
}

.msl-txt3 img{
    height: 70px;
    width: 70px;
    margin-top: 35px;
}

.msl-txt3 a img {
    width: 80px;
    height: 80px;
    margin: 0 10px;
    margin-top: 35px;
}

/* Attractions section */
.section-accommodation {
    background-color: #efebe5;
}

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

.i-cnt {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ensure space between text and right image */
    flex-direction: column;
    width: 30%; 
}

.i-img-left {
    position: absolute; /* Float it behind the text */
    top: 0;
    left: 0;
    width: 100%; /* Set width as needed */
    z-index: 0; /* Ensure it's behind the text */
}

.i-img-left img {
    width: 80%;
    height: 80%;
    object-fit: cover;
}

/* Ensure text container is centered */
.text-center {
    position: relative;
    z-index: 1; /* Ensure the text is on top */
    width: 50%; /* Adjust width as needed */
    color: black;
    margin-top: 235px;
}

.text-center a{
    text-decoration: none;
}

.text-center h2{
    font-size: 65px;
    text-align: center;
    color: #fff;
    font-family: Helvetica;
}

.text-center p{
    font-size: 45px;
    text-align: right;
    color: #fff;
    font-family: Helvetica;
    margin-top: -14px;
}

/* Love MosselBaai 2 section */
.section-scnry {
    background-image: url(../Assets/Home/12.webp);
}

.scn-row{
    display: flex;
    justify-content: left;
    flex-direction: column;
}

.scn-1-img{
    width: 45%;
    margin-right: 155px;
}

.scn-1-img img{
    width: 65%;
}

.scn-2-img{
    width: 45%;
    margin-right: 155px;
}

.scn-2-img img{
    width: 115%;
}

.ft-txt3{
    display: flex;
    justify-content: left;
    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;
}

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

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

.isf{
    max-width: 100%;
    width: 100%;
}

.isf h2{
    color: #000;
    width: 100%;
    font-family: 'Marthin Slant' ;
    font-size: 70px;
    font-weight: bold;
    padding-bottom: 35px;
}

.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: Helvetica;
}

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

/* 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;
}

/* 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: #211f60;
    padding: 40px 20px;
    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 */
    margin-left: 35px;
    font-family:  Helvetica;
}

.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%;
    border: 5px solid #fff;
    padding-left: 38px;
    padding-right: 38px;
}

.ft-box h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
    font-family:  Helvetica;
}

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

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

.ft-txt, .ft-txt2, .ft-txt3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family:  Helvetica;
}

.ft-txt i{
    padding-top: 5px;
    padding-left: 25px;
    color: #fff;
    font-family:  Helvetica;
}

.ft-txt2{
    padding-bottom: 35px;
}

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

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

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

.ft-btn {
    padding: 10px 20px;
    border: 1.5px solid #000;
    border-radius: 14px;
    cursor: pointer;    
    background-color: #fff;
    font-family:  Helvetica;
    text-decoration: none !important;
}

.ft-btn a{
    text-decoration: none !important;    
    color: #000;
    font-size: 1.4em;
}

.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 */
    .scn-w-img{
        margin-bottom: 85px;
    }

    .scn-w-img h1{
        font-size: 50px;
    }

    /* Attractions Section */
    .cnt-column{
        flex-direction: column;
        width: 100%;
        gap: 100px;
        margin-top: 0;
        padding-top: 35px;
        padding-bottom: 70px;
    }

    .i-cnt {
        width: 100%; /* Adjust width */
        height: 100%;
        padding-bottom: 135px;
    }

    .i-img-left img {
        height: 450px;
        width: 300px;
    }

    .text-center {
        width: 50%; /* Adjust width */
        margin-top: 200px; /* Adjust margin */
    }

    .text-center h2 {        
        margin-top: -35px; /* Adjust margin */
    }

    .text-center p {
        text-align: center;
        margin-left: 85px; /* Adjust margin */
    }

    /* #Love Mosselbaai 1 Section */
    .msl-img img {
        margin-bottom: 85px;
    }

    .msl-img h2 {
        margin-bottom: 45px;
    }

    .msl-txt3 img {
        height: 40px;
        width: 40px;
    }

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

    .l-row img {
        width: 80%; /* Adjust image size */
        justify-content: center;
        text-align: center;
        padding-bottom: 55px;
    }

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

    /* #Love Mosselbaai 2 Section */
    .scn-img img {
        width: 70%; /* Adjust image size */
    }

    .scn-2-img{
        width: 70%;
    }

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

    .isf-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: 49px; /* Adjust font size */
        padding-bottom: 14px;
    }

    /* 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;
    }
}

/* 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 */ 
    .scn-w-img{
        margin-bottom: 85px;
        text-align: center;
    }

    .scn-w-img h1{
        font-size: 40px;
    }

    /* Attractions Section */
    .cnt-column{
        flex-direction: column;
        width: 100%;
        gap: 100px;
        margin-top: 0;
        padding-top: 35px;
        padding-bottom: 70px;
    }

    .i-cnt {
        width: 100%; /* Adjust width */
        height: 100%;
        padding-bottom: 85px;
    }

    .i-img-left img {
        height: 450px;
        width: 300px;
    }

    .text-center {
        width: 50%; /* Adjust width */
        margin-top: 200px; /* Adjust margin */
    }

    .text-center h2 {        
        margin-top: -35px; /* Adjust margin */
    }

    .text-center p {
        text-align: center;
        margin-left: 85px; /* Adjust margin */
    }

    /* 3Love Mosselbaai 1 Section */
    .msl-img img {
        width: 155%;
        margin-bottom: 85px;
    }

    .msl-img h2 {
        margin-bottom: 45px;
    }

    .msl-txt3 img {
        height: 40px;
        width: 40px;
    } 

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

    .l-row img {
        width: 80%; /* Adjust image size */
        justify-content: center;
        text-align: center;
        padding-bottom: 55px;
    }

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

    /* #Love Mosselbaai 2 Section */
    .scn-img img {
        width: 70%; /* Adjust image size */
    }

    .scn-2-img{
        width: 55%;
        margin-bottom: 45px;
    } 

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

    .isf-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 adjustments */
    .copyright {
        flex-direction: row;
        gap: 30px;
    }

    .ft-box {
        width: 45%;
        padding: 20px;
    }

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

    .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;
    }
}

@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%;
        background-color: #E3E6F3;
    }

    /* Make navbar items stack vertically */
    #navbar {
        display: flex; /* Initially hide navbar */
        flex-direction: column !important;
        align-items: flex-start;
        justify-content: flex-start;
        position: absolute;
        top: 60px;
        left: 0 !important; /* Ensure it aligns left */
        width: 100%;
        background-color: #E3E6F3;
        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: #333;
    }

    #close {
        display: block; /* Show close button */
        font-size: 24px; /* Adjust close button size */
        color: #222;
        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: #fff;
        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: #333;
    }

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

    /* Welcome Section */
    .scn-w-img{
        margin-bottom: 85px;
        text-align: center;
    }

    .scn-w-img h1 {
        font-size: 31px;
    }

    /* Attractions Section */
    .cnt-column{
        flex-direction: column;
        width: 100%;
        gap: 100px;
        margin-top: 0;
        padding-top: 35px;
        padding-bottom: 70px;
    }

    .i-cnt {
        width: 100%; /* Adjust width */
        height: 100%;
        padding-bottom: 85px !important;
    }

    .i-img-left img {
        height: 450px;
        width: 300px;
    }

    .text-center {
        width: 50%; /* Adjust width */
        margin-top: 200px; /* Adjust margin */
    }

    .text-center h2 {        
        margin-top: -35px; /* Adjust margin */
    }

    .text-center p {
        text-align: center;
        margin-left: 85px; /* Adjust margin */
    }

    /* 3Love Mosselbaai 1 Section */
    .msl-img img {
        width: 155%;
        margin-bottom: 85px;
    }

    .msl-img h2 {
        margin-bottom: 45px;
    }

    .msl-txt3 img {
        height: 40px;
        width: 40px;
    } 

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

    .l-row img {
        width: 80%; /* Adjust image size */
        justify-content: center;
        text-align: center;
        padding-bottom: 55px;
    }

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

    /* #Love Mosselbaai 2 Section */
    .scn-img img {
        width: 70%; /* Adjust image size */
    }

    .scn-2-img{
        width: 55%;
        margin-bottom: 45px;
    } 

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

    .isf-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;
        gap: 20px; /* Reduce gap */
    }

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

    footer {
        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-box1 h1{
        margin-top: 10px;
        margin-bottom: 25px;
    }

    .ft-box1 p{
        margin-top: 35px;
        margin-bottom: 35px;
    }
    
    .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;
    }

    #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;
    }

    #navbar li {
        padding: 0 5px;
    }

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

   /* Welcome Section */
   .scn-w-img{
        margin-bottom: 285px;
        text-align: center;
    }
    
    .scn-w-img img{
        height: 235px;
        width: 235px;
    }

    /* Attractions Section */
    .cnt-column{
        flex-direction: column;
        width: 100%;
        gap: 150px;
        margin-top: 0;
        padding-top: 35px;
        padding-bottom: 140px;
    }

    .i-cnt {
        width: 100%; /* Adjust width */
        height: 100%;
        padding-bottom: 35px;
    }

    .i-img-left img {
        height: 450px;
        width: 300px;
    }

    .text-center {
        width: 50%; /* Adjust width */
        margin-top: 200px; /* Adjust margin */
    }

    .text-center h2 {        
        margin-top: -35px; /* Adjust margin */
    }

    .text-center p {
        text-align: center;
        margin-left: 85px; /* Adjust margin */
        font-size: 34px;
    }

    /* 3Love Mosselbaai 1 Section */
    .msl-img img {
        width: 255%;
        height: auto;
        margin-bottom: 85px;
        margin-left: -125px;
    }

    .msl-img h2 {
        margin-bottom: 45px;
    }

    .msl-txt3 img {
        height: 40px;
        width: 40px;
    } 

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

    .l-row img {
        width: 80%; /* Adjust image size */
        justify-content: center;
        text-align: center;
        padding-bottom: 55px;
    }

    .l-text-content {
        width: 100%; /* Adjust text width */
        padding-left: 0;
    }

    /* #Love Mosselbaai 2 Section */
    .scn-1-img{
        margin-right: 0;
        width: 100%;
    }

    .scn-img img {
        width: 70%; /* Adjust image size */
    }

    .scn-2-img{
        width: 100%;
        margin-bottom: 45px;
        margin-right: 0;
    }
    
    .scn-2-img img{
        width: 100%;
    }

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

    .isf-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;
    }   
}

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

    /* Header adjustments */
    #header {
        padding: 10px 20px;
        flex-direction: column; /* Stack header items */
    }

    #navbar {
        display: none; /* Hide navbar by default */
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #E3E6F3;
        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: #333;
    }

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

    /* Welcome Section */
    .scn-w-img{
        margin-bottom: 85px;
        text-align: center;
    }

    /* Attractions Section */
    .cnt-column{
        flex-direction: column;
        width: 100%;
        gap: 150px;
        margin-top: 0;
        padding-top: 35px;
        padding-bottom: 140px;
    }

    .i-cnt {
        width: 100%; /* Adjust width */
        height: 100%;
        padding-bottom: 35px;
    }

    .i-img-left img {
        height: 450px;
        width: 300px;
    }

    .text-center {
        width: 50%; /* Adjust width */
        margin-top: 200px; /* Adjust margin */
    }

    .text-center h2 {        
        margin-top: -35px; /* Adjust margin */
    }

    .text-center p {
        text-align: center;
        margin-left: 85px; /* Adjust margin */
        font-size: 35px;
    }

    /* 3Love Mosselbaai 1 Section */
    .msl-img img {
        width: 155%;
        margin-bottom: 85px;
        margin-left: -55px;
    }

    .msl-img h2 {
        margin-bottom: 45px;
    }

    .msl-txt3 img {
        height: 40px;
        width: 40px;
    } 

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

    .l-row img {
        width: 80%; /* Adjust image size */
        justify-content: center;
        text-align: center;
        padding-bottom: 55px;
    }

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

    /* #Love Mosselbaai 2 Section */
    .scn-img img {
        width: 70%; /* Adjust image size */
    }

    .scn-2-img{
        width: 75%;
        margin-bottom: 45px;
        margin-left: 53px;
    } 

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

    .isf-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;
        gap: 20px;
    }

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

    .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;
    }
}

/* 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 {
        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 */
    .scn-w-img{
        margin-bottom: 85px;
        text-align: center;
    }

    /* Attractions Section */
    .cnt-column{
        flex-direction: column;
        width: 100%;
        gap: 150px;
        margin-top: 0;
        padding-top: 35px;
        padding-bottom: 140px;
    }

    .i-cnt {
        width: 100%; /* Adjust width */
        height: 100%;
        padding-bottom: 35px;
    }

    .i-img-left img {
        height: 450px;
        width: 300px;
    }

    .text-center {
        width: 50%; /* Adjust width */
        margin-top: 200px; /* Adjust margin */
    }

    .text-center h2 {        
        margin-top: -35px; /* Adjust margin */
    }

    .text-center p {
        text-align: center;
        margin-left: 85px; /* Adjust margin */
    }

    /* 3Love Mosselbaai 1 Section */
    .msl-img img {
        width: 155%;
        margin-bottom: 85px;
    }

    .msl-img h2 {
        margin-bottom: 45px;
    }

    .msl-txt3 img {
        height: 40px;
        width: 40px;
    } 

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

    .l-row img {
        width: 80%; /* Adjust image size */
        justify-content: center;
        text-align: center;
        padding-bottom: 55px;
    }

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

    /* #Love Mosselbaai 2 Section */
    .scn-img img {
        width: 70%; /* Adjust image size */
    }

    .scn-2-img{
        width: 55%;
        margin-bottom: 45px;
    } 

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

    .isf-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 Section */
    .copyright {
        flex-direction: column;
    }

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

    .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: 12px;
    }
}

@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 */
    }

    #navbar {
        display: none; /* Hide navbar by default */
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #E3E6F3;
        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: #333;
    }

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

    /* Welcome Section */
    .scn-w-img{
        margin-bottom: 85px;
        text-align: center;
    }

    .scn-w-img img{
        height: 200px;
        width: 200px;
    }

    /* Attractions Section */
    .cnt-column{
        flex-direction: column;
        width: 100%;
        gap: 20px;
        padding: 10px;
    }

    .i-cnt, .text-center {
        width: 100%; /* Adjust width */
        text-align: center;
        padding: 10px;
    }

    .i-cnt {
        width: 100%; /* Adjust width */
        height: 100%;
        padding-bottom: 155px !important;
    }

    .i-img-left img {
        height: 450px;
        width: 300px;
    }

    .text-center h2, .text-center p {
        margin: 5px;
    }

    .text-center {
        width: 100%; /* Adjust width */
        margin-top: 200px; /* Adjust margin */
    }

    .text-center h2 {        
        margin-top: -35px; /* Adjust margin */
    }

    .text-center p {
        font-size: 35px !important;
        text-align: center;
        margin-left: 85px; /* Adjust margin */
        margin-top: -15px;
    }

    /* 3Love Mosselbaai 1 Section */
    .msl-img img {
        margin-bottom: 85px;
        margin-left: -125px;
    }

    .msl-img h2 {
        margin-bottom: 45px;
        margin-left: -15px;
    }

    .msl-txt3 img {
        height: 40px;
        width: 40px;
    } 

    /* Light House Section */
    .l-row{
        flex-direction: column;
        align-items: center;
    }

    .l-row img {
        width: 80%; /* Adjust image size */
        justify-content: center;
        text-align: center;
        padding-bottom: 55px;
        margin: 10px 0;
    }

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

    /* #Love Mosselbaai 2 Section */
    .scn-img img {
        width: 100%; /* Adjust image size */
    }

    .scn-1-img img {
        width: 100%;
    }

    .scn-2-img{
        margin-bottom: 45px;
    }

    .scn-2-img img {
        width: 100% !important; 
    }

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

    .isf-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 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 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: 12px;
    }

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

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

    .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;
    }

    .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 */
    }

    #navbar {
        display: none; /* Hide navbar by default */
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #E3E6F3;
        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: #333;
    }

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

    /* Welcome Section */
    .scn-w-img{
        margin-bottom: 85px;
        text-align: center;
    }

    .scn-w-img h1{
        font-size: 21px !important;
    }

    .scn-w-img img{
        width: 150px;
        height: auto;
    }

    /* Attractions Section */
    .cnt-column{
        flex-direction: column;
        width: 100%;
        gap: 20px;
        margin-top: 0;
        padding: 15px 0;
    }

    .i-cnt {
        width: 100%; /* Adjust width */
        height: 100%;
        padding-bottom: 215px !important;
    }

    .i-img-left img {
        height: 450px;
        width: 300px;
    }

    .text-center {
        width: 100%; /* Adjust width */
        margin-top: 200px; /* Adjust margin */
    }

    .text-center h2 {        
        margin-top: -15px; /* Adjust margin */
        font-size: 31px;
        margin-right: 35px;
    }

    .text-center p {
        text-align: center;
        margin-left: 35px; /* Adjust margin */
        font-size: 24px;
    }

    /* 3Love Mosselbaai 1 Section */ 
    .msl-img img {
        width: 205%;
        margin-bottom: 85px;
        margin-left: -60px;
    }

    .msl-img h2 {
        margin-bottom: 45px;
        font-size: 28px;
    }

    .msl-txt3 img {
        height: 49px !important;
        width: 49px !important;
    }

    /* Light House Section */

    .l-row{
        flex-direction: column;
        text-align: center;
    }

    .l-row img {
        width: 75%; /* Adjust image size */
        justify-content: center;
        text-align: center;
        padding-bottom: 55px;
    }

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

    .l-text-content p {
        font-size: 14px;
        padding: 0 5px;
    }

    /* #Love Mosselbaai 2 Section */

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

    .scn-2-img{
        width: 100%;
        margin-bottom: 45px;
    }

    /* Information Section */

    .isf{
        width: 100%;
        justify-content: center;
    }

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

    .isf h2 {
        font-size: 45px !important;
    }

    .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 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 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: 10px;
    }

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

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

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

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

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

}

/* Vendors */
/* 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 */
.scnry-v-section{
    background-image:  url(../Assets/Places\ to\ Stay/Munro-Manor.webp);
    background-size: cover;
}

.scn-v h1{
    margin-top: -55px;
    text-align: center;
    font-family: 'Marthin Slant';
    color: #fff;
    font-size: 14rem;
}

.scn-v p{
    font-size: 4.5rem;
    font-family: 'Marthin Slant';
    color: #fff;
    font-weight: bold;
}

/* Members section */
.v-section-welcome {
    display: flex;
    flex-direction: column;
    padding: 0 !important;
}

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

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

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

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

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

.rf-v{
    padding-left: 14px;
    padding-right: 14px;
}

.rf-v h2 {
    margin-top: 20px;
    font-size: 1.5rem;
    font-family: Helvetica;
}

.rf-v p {
    margin: 10px 0;
    font-size: 1rem !important;
    font-family: Helvetica;
    line-height: 2 !important;
}

.rooms-v-info1{
    text-align: right !important;
    width: 50%;
    color: #000;
    display: flex;
    justify-content: center;
    flex-direction: row !important;
    height: 360px !important;
}

.rooms-v-info1 img{
    padding: 20px;
    height: 300px;
    width: 300px;
}

.rf-v-1{
    padding-left: 14px;
    padding-right: 14px;
}

.rf-v-1 h2 {
    margin-top: 20px;
    font-size: 1.5rem;
    font-family: Helvetica;
}

.rf-v-1 p {
    margin: 10px 0;
    font-size: 1rem !important;
    font-family: Helvetica;
    line-height: 2 !important;
}

/* Button styling */
.btn-v-room-info {
    padding: 10px 20px;
    background-color: #211f60 !important;
    border: none;
    cursor: pointer;
    margin-bottom: 28px;
}

.btn-v-room-info a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
}

.btn-v-room-info:hover {
    background-color: #f39c12 !important;
}

/* For screens between 1480px and 1680px */
@media only screen and (min-width: 1480px) and (max-width: 1680px){
    body {
        font-size: 22px; /* Adjust font size for better readability */
    }

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

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

    /* Welcome section styling */
    .scn-v h1 {
        font-size: 11rem !important;
    }

    .scn-v p{
        font-size: 2.8rem;
    }

    /* Members section */
    .rooms-v-row{
        flex-direction: row;        
    }

    .rooms-v-info {
        width: 50%; /* Make room info full-width */
        height: 450px !important;
    }

    .rooms-v-info1 {
        width: 50%; /* Make room info full-width */
        height: 450px !important;
    }

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

/* For screens between 1280px and 1480px */
@media only screen and (min-width: 1280px) and (max-width: 1480px){
    body {
        font-size: 20px; /* Adjust font size for better readability */
    }

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

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

    /* Welcome section styling */
    .scn-v h1 {
        font-size: 10rem !important;
    }

    .scn-v p{
        font-size: 2.5rem;
    }

    /* Members section */
    .rooms-v-row{
        flex-direction: row;        
    }

    .rooms-v-info {
        width: 50%; /* Make room info full-width */
        height: 500px !important;
    }

    .rooms-v-info1 {
        width: 50%; /* Make room info full-width */
        height: 500px !important;
    }

    /* 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 */
    }

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

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

    /* Welcome section styling */
    .scn-v h1 {
        font-size: 9rem !important;
    }

    .scn-v p{
        font-size: 2.2rem;
    }

    /* Members section */
    .rooms-v-row{
        flex-direction: column;        
    }

    .rooms-v-info {
        width: 100%; /* Make room info full-width */
    }

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

    /* 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;
    }

    /* Welcome section styling */
    .scn-v h1 {
        font-size: 7rem !important;
    }

    .scn-v p{
        font-size: 2rem;
    }

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

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

    .btn-v-room-info {
        font-size: 0.8rem; /* Adjust button text size */
        padding: 8px 16px;
    }

    /* 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;
    }

    /* Welcome Section */
    .scn-v p{
        font-size: 1.8rem;
    }

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

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

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

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

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

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

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

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

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

    .btn-v-room-info {
        font-size: 0.9rem !important; /* Adjust button text size */
        padding: 10px 18px;
    }

    /* 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;
    }
    
    /* Welcome Section */
    .scn-v p{
        font-size: 1.8rem;
    }

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

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

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

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

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

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

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

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

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

    .rf-v {
        height: 300px !important;
    }

    .rf-v-1{
        height: 300px !important;
    }

    .btn-v-room-info {
        font-size: 0.9rem !important; /* Adjust button text size */
        padding: 10px 18px;
    }

    /* 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 */
    .scn-v h1{
        margin-top: 21px;
        font-size: 5rem !important;
    }

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

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

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

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

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

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

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

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

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

    .rf-v {
        height: 280px !important;
    }

    .rf-v-1{
        height: 280px !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 */
    .scn-v p{
        font-size: 1.8rem;
    }

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

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

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

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

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

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

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

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

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

    .btn-v-room-info {
        font-size: 0.9rem !important; /* Adjust button text size */
        padding: 10px 18px;
    }

    /* 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: 488px){
    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 */
    .scn-v h1{
        margin-top: 21px;
        font-size: 5rem !important;
    }

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

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

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

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

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

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

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

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

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

    .rf-v{
        margin-bottom: 135px;
    }

    .rf-v-1{
        margin-bottom: 135px;
    }
}

@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 */
    .scn-v h1{
        margin-top: 21px;
        font-size: 5rem !important;
    }

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

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

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

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

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

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

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

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

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

}

/* Places to Stay */
/* 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 */
.scnry-stay-section{
    background-image:  url(../Assets/Places\ to\ Stay/Munro-Manor.webp);
    background-size: cover;
}

.scn-stay h1{
    margin-top: -55px;
    text-align: center;
    font-family: 'Marthin Slant';
    color: #fff;
    font-size: 14rem;
}

.scn-stay p{
    font-size: 4.5rem;
    font-family: 'Marthin Slant';
    color: #fff;
    font-weight: bold;
}

/* Members section */
.s-section-welcome {
    display: flex;
    flex-direction: column;
    padding: 0 !important;
}

.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;
    height: 360px !important;
}

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

.rf{
    padding-left: 14px;
    padding-right: 14px;
}

.rf h2 {
    margin-top: 20px;
    font-size: 1.5rem;
    font-family: Helvetica;
}

.rf p {
    margin: 10px 0;
    font-size: 1rem !important;
    font-family: Helvetica;
    line-height: 2 !important;
}

.rooms-s-info1{
    text-align: right !important;
    width: 50%;
    color: #000;
    display: flex;
    justify-content: center;
    flex-direction: row !important;
    height: 360px !important;
}

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

.rf1{
    padding-left: 14px;
    padding-right: 14px;
}

.rf1 h2 {
    margin-top: 20px;
    font-size: 1.5rem;
    font-family: Helvetica;
}

.rf1 p {
    margin: 10px 0;
    font-size: 1rem !important;
    font-family: Helvetica;
    line-height: 2 !important;
}

/* Button styling */
.btn-room-info {
    padding: 10px 20px;
    background-color: #211f60 !important;
    border: none;
    cursor: pointer;
    margin-bottom: 28px;
}

.btn-room-info a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
}

.btn-room-info:hover {
    background-color: #f39c12 !important;
}

/* For screens between 1480px and 1680px */
@media only screen and (min-width: 1480px) and (max-width: 1680px){
    body {
        font-size: 22px; /* Adjust font size for better readability */
    }

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

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

    /* Welcome section styling */
    .scn-stay h1 {
        font-size: 11rem !important;
    }

    .scn-stay p{
        font-size: 2.8rem;
    }

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

    .rooms-s-info {
        width: 50%; /* Make room info full-width */
        height: 450px !important;
    }

    .rooms-s-info1 {
        width: 50%; /* Make room info full-width */
        height: 450px !important;
    }

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

/* For screens between 1280px and 1480px */
@media only screen and (min-width: 1280px) and (max-width: 1480px){
    body {
        font-size: 20px; /* Adjust font size for better readability */
    }

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

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

    /* Welcome section styling */
    .scn-stay h1 {
        font-size: 10rem !important;
    }

    .scn-stay p{
        font-size: 2.5rem;
    }

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

    .rooms-s-info {
        width: 50%; /* Make room info full-width */
        height: 500px !important;
    }

    .rooms-s-info1 {
        width: 50%; /* Make room info full-width */
        height: 500px !important;
    }

    /* 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 */
    }

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

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

    /* Welcome section styling */
    .scn-stay h1 {
        font-size: 9rem !important;
    }

    .scn-stay p{
        font-size: 2.2rem;
    }

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

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

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

    /* 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;
    }

    /* Welcome section styling */
    .scn-stay h1 {
        font-size: 7rem !important;
    }

    .scn-stay p{
        font-size: 2rem;
    }

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

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

    .btn-room-info {
        font-size: 0.8rem; /* Adjust button text size */
        padding: 8px 16px;
    }

    /* 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;
    }

    /* Welcome Section */
    .scn-stay p{
        font-size: 1.8rem;
    }

    /* 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;
        height: 1250px !important;
    }

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

    .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%;
    }

    .btn-room-info {
        font-size: 0.9rem !important; /* Adjust button text size */
        padding: 10px 18px;
    }

    /* 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;
    }
    
    /* Welcome Section */
    .scn-stay p{
        font-size: 1.8rem;
    }

    /* 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;
    }

    .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%;
    }

    .rf {
        height: 300px !important;
    }

    .rf1{
        height: 300px !important;
    }

    .btn-room-info {
        font-size: 0.9rem !important; /* Adjust button text size */
        padding: 10px 18px;
    }

    /* 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 */
    .scn-stay h1{
        margin-top: 21px;
        font-size: 5rem !important;
    }

    /* 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;
        height: 950px !important;
    }

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

    .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%;
    }

    .rf {
        height: 280px !important;
    }

    .rf1{
        height: 280px !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 */
    .scn-stay p{
        font-size: 1.8rem;
    }

   /* 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;
        height: 900px !important;
    }

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

    .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%;
    }

    .btn-room-info {
        font-size: 0.9rem !important; /* Adjust button text size */
        padding: 10px 18px;
    }

    /* 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: 488px){
    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 */
    .scn-stay h1{
        margin-top: 21px;
        font-size: 5rem !important;
    }

    /* 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;
        height: 900px !important;
    }

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

    .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%;
    }

    .rf{
        margin-bottom: 135px;
    }

    .rf1{
        margin-bottom: 135px;
    }
}

@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 */
    .scn-stay h1{
        margin-top: 21px;
        font-size: 5rem !important;
    }

    /* 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;
        height: 1100px !important;
        padding-bottom: 135px;
    }

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

    .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%;
    }

}

/* Things to Do */
/* 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 */
.scnry-dst-section{
    background-image:  url(../Assets/Places\ to\ Be/2.webp);
    background-size: cover;
}

.scn-dst h1{
    margin-top: -55px;
    text-align: center;
    font-family: 'Marthin Slant';
    color: #000;
    font-size: 14rem;
}

/* Members section */
.dst-section-welcome {
    display: flex;
    flex-direction: column;
    padding: 0 !important;
}

.rooms-dst-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-dst-info {
    width: 50%;
    text-align: left;
    color: #000;
    display: flex;
    justify-content: center;
    flex-direction: row !important;
    background-color: #fff;
}

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

.rf{
    height: 300px;
    padding-left: 14px;
    padding-right: 14px;
}

.rf h2 {
    margin-top: 20px;
    font-size: 2rem;
    font-family: Helvetica;
}

.rf p {
    margin: 10px 0;
    font-size: 1rem !important;
    line-height: 2 !important;
    font-family: Helvetica;
}

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

.rooms-dst-info1 img{
    padding: 20px;
    height: 300px;
    width: 300px;
}

.rf1{
    height: 300px;
    padding-left: 14px;
    padding-right: 14px;
}

.rf1 h2 {
    margin-top: 20px;
    font-size: 2rem;
    font-family: Helvetica;
}

.rf1 p {
    margin: 10px 0;
    font-size: 1rem !important;
    line-height: 2 !important;
    font-family: Helvetica;
}

/* Button styling */
.btn-room-info {
    padding: 10px 20px;
    background-color: #f8b400;
    border: none;
    cursor: pointer;
}

.btn-room-info a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
}

.btn-room-info:hover {
    background-color: #f39c12;
}

/* 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 */
    }

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

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

    /* Welcome section styling */
    .scn-dst h1 {
        font-size: 9rem !important;
    }

    /* Members section */
    .rooms-dst-row{
        flex-direction: column;        
    }

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

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

    /* 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;
    }

    /* Welcome section styling */
    .scn-dst h1 {
        font-size: 7rem !important;
    }

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

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

    .btn-room-info {
        font-size: 0.8rem !important; /* Adjust button text size */
        padding: 8px 16px;
    }

    /* 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;
    }

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

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

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

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

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

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

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

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

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

    .btn-room-info {
        font-size: 0.9rem !important; /* Adjust button text size */
        padding: 10px 18px;
    }

    /* 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-dst-row {
        flex-direction: column; /* Stack room info vertically */
    }

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

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

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

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

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

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

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

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

    .rf {
        height: 300px !important;
    }

    .rf1{
        height: 300px !important;
    }

    .btn-room-info {
        font-size: 0.9rem !important;
        padding: 8px 16px;
    }

    .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 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;
    }

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

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

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

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

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

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

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

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

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

    .btn-room-info {
        font-size: 0.9rem !important; /* Adjust button text size */
        padding: 10px 18px;
    }

    /* 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: 488px){
    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 */
    .scn-dst h1{
        margin-top: 21px;
        font-size: 5rem !important;
    }

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

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

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

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

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

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

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

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

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

@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 */
    .scn-dst h1{
        margin-top: 21px;
        font-size: 5rem !important;
    }

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

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

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

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

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

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

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

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

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

/* Places to Eat */
/* 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 */
.scnry-eat-section{
    background-image:  url(../Assets/Places\ to\ Eat/Table.png);
    background-size: cover;
}

.scn-eat h1{
    margin-top: -55px;
    text-align: center;
    font-family: 'Marthin Slant';
    color: #000;
    font-size: 14rem;
}

/* Members section */
.eat-section-welcome {
    display: flex;
    flex-direction: column;
    padding: 0 !important;
}

.rooms-eat-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-eat-info {
    width: 50%;
    text-align: left;
    color: #000;
    display: flex;
    justify-content: center;
    flex-direction: row !important;
    background-color: #fff;
}

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

.rf{
    height: 250px !important;
    padding-left: 14px;
    padding-right: 14px;
}

.rf h2 {
    margin-top: 20px;
    font-size: 2rem;
    font-family: Helvetica;
}

.rf p {
    margin: 10px 0;
    font-size: 1rem !important;
    line-height: 2 !important;
    font-family: Helvetica;
}

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

.rooms-eat-info1 img{
    padding: 20px;
    height: 300px;
    width: 300px;
}

.rf1{
    height: 250px !important;
    padding-left: 14px;
    padding-right: 14px;
}

.rf1 h2 {
    margin-top: 20px;
    font-size: 2rem;
    font-family: Helvetica;
}

.rf1 p {
    margin: 10px 0;
    font-size: 1rem !important;
    line-height: 2 !important;
    font-family: Helvetica;
}

/* Button styling */
.btn-room-info {
    padding: 10px 20px;
    background-color: #f8b400;
    border: none;
    cursor: pointer;
}

.btn-room-info a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
}

.btn-room-info:hover {
    background-color: #f39c12;
}

/* 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 */
    }

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

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

    /* Welcome section styling */
    .scn-eat h1 {
        font-size: 9rem !important;
    }

    /* Members section */
    .rooms-eat-row{
        flex-direction: column;        
    }

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

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

    /* 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;
    }

    /* Welcome section styling */
    .scn-eat h1 {
        font-size: 7rem !important;
    }

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

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

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

    .btn-room-info {
        font-size: 0.8rem !important; /* Adjust button text size */
        padding: 8px 16px;
    }

    /* 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;
    }

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

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

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

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

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

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

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

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

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

    .btn-room-info {
        font-size: 0.9rem !important; /* Adjust button text size */
        padding: 10px 18px;
    }

    /* 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-eat-row {
        flex-direction: column; /* Stack room info vertically */
    }

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

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

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

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

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

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

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

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

    .rf {
        height: 300px !important;
    }

    .rf1{
        height: 300px !important;
    }

    .btn-room-info {
        font-size: 0.9rem !important; /* Adjust button text size */
        padding: 10px 18px;
    }

    .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 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;
    }

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

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

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

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

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

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

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

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

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

    .btn-room-info {
        font-size: 0.8rem !important;
        padding: 6px 12px;
    }

    .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: 488px){
    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 */
    .scn-eat h1{
        margin-top: 21px;
        font-size: 5rem !important;
    }

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

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

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

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

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

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

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

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

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

@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 */
    .scn-eat h1{
        margin-top: 21px;
        font-size: 5rem !important;
    }

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

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

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

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

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

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

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

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

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

/* 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: Helvetica;
}

label {
    font-size: 16px;
    margin-bottom: 8px;
    margin-top: 20px;
    font-family: Helvetica;
    color: #000;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 3px solid #000;
    border-radius: 5px;
    font-family: Helvetica;
    font-weight: 500;
    background-color: lightgray;
}

.c-btn{
    text-align: center;
    padding-bottom: 35px;
}

.cnt-btn {
    padding: 10px 20px;
    background-color: #5BDDC7;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    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;
    }
}