*  {
    font-family: "Playfair Display", serif, Arial, Helvetica, sans-serif, "SUSE";
}

/* span.Arial {
    font: Arial;
} */

body {
    background-color: rgb(175, 125, 107) ;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    position: relative;
    z-index: 20;
    height: 3rem;
}

.nav {
    background-color: blanchedalmond;
    color: rgb(125, 49, 49);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem;
    position: fixed;
    width: 100%;
    height: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav div:nth-child(1) img {
    padding: 0 .5rem;
}

.header-title {
    display: flex;
    color: black;
    position: absolute;
    left: 5vw;
    font-size: 1.4rem;
}

.menu {
    display: flex;
    align-items: center;
    padding-right: 1rem;
    font-weight: bolder;
    transition: background-color 0.3s ease;
}

.menu > a:not(.cta) {
    color: rgb(163, 83, 83);
    text-decoration: none;
    padding: 0 1rem;
}

.menu > a:not(.cta):hover {
    color: rgb(125, 49, 49);
}

.shop-nav {
    align-self: center;
    margin: 0 .5rem;
    padding: .5rem 0.85rem;
    background-color: rgb(163, 83, 83);
    color: black;
    border: none;
    border-radius: 1.5rem;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.shop-nav:hover {
    background-color: rgb(125, 49, 49);
}

.airbnb-nav {
    align-self: center;
    margin: 0 .5rem;
    padding: .5rem 1.3rem;
    background-color: rgb(125, 49, 49);
    color: black;
    border: none;
    border-radius: 1.5rem;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
}

.airbnb-menu {
    position: relative; /* Position relative for dropdown positioning */
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 140%;
    left: 0.5rem;
    background-color: rgb(125, 49, 49);
    border-radius: 1.5rem;
    padding: 0rem 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 5.395rem;
    color: black;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.airbnb-menu:hover .airbnb-nav{
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.airbnb-menu:hover .dropdown-menu {
    display: block; /* Show the dropdown on hover */
    opacity: 1;
    transform: translateY(0); /* Slide to original position */
}

.dropdown-menu ul {
    display: block;
    margin: 0; /* Remove any margins */
    padding: 0; /* Remove any padding */
    list-style-type: none;
}

.dropdown-menu ul li {
    padding: 0; /* Remove any padding */
    width: 100%;
    display: flex;
    justify-content: center; /* Align items to the start (left) */
}

.dropdown-menu ul li a {
    text-decoration: none;
    width: 100%;
    display: block;
    color: black;
    padding: 0.5rem; /* Adjust padding as needed */
    text-align: center; /* Align text to the center */
    transition: background-color 0.3s ease;
}

.dropdown-menu ul li a:hover {
    background-color: rgb(163, 83, 83); /* Highlight dropdown items on hover */
}

@media (min-width:801px) {
    .mobile-nav {
        display: none;
    }

}

@media (max-width:800px) {
    .full-nav {
        display: none;
    }
    .mobile-nav {
        padding: 0;
        height: 7.50%;
    }
    .fa-bars {
        padding: .5rem;
        font-size: 1.75rem;
    }
}

/* overlay */
/* mobile overlay nav */
#overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.overlay-text a {
    display: block;
    color: white;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.5rem;
    padding: .5rem 2rem;
    transition: all 200ms ease-in-out;
}

.fa-times {
    font-size: 4rem;
    color: white;
    padding: 1rem;
    transition: all 200ms ease-in-out;
}

.fa-times:hover {
    animation: rotateAnimation 200ms ease-in-out;
}

/* animation */
@keyframes rotateAnimation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(90deg);
    }
}

.airbnb-hero-btn {
    align-self: center;
    margin-right: 0.5rem;
    padding: .725rem 2rem;
    background-color: rgb(125, 49, 49);
    color: black;
    border: none;
    border-radius: 1.5rem;
    font-size: 1.125rem;
    text-decoration: none;
    font-weight: bolder;
}

.shop-hero-btn {
    align-self: center;
    margin: 0 .5rem;
    padding: .725rem 1.5rem;
    background-color: rgb(163, 83, 83);
    color: black;
    border: none;
    border-radius: 1.5rem;
    font-size: 1.125rem;
    text-decoration: none;
    font-weight: bolder;
    transition: background-color 0.3s ease;
}

.shop-hero-btn:hover {
    background-color: rgb(125, 49, 49);
}

/* start of dropdown for hero image */

.airbnb-menu2 {
    position: relative; /* Position relative for dropdown positioning */
    width: fit-content;
}

.dropdown-menu2 {
    display: none;
    position: absolute;
    top: 97%;
    background-color: rgb(125, 49, 49);
    border-radius: 1.5rem;
    padding: 0rem 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 7.13rem;
    color: black;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.airbnb-menu2:hover .airbnb-hero-btn {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.airbnb-menu2:hover .dropdown-menu2 {
    display: block; /* Show the dropdown on hover */
    opacity: 1;
    transform: translateY(0); /* Slide to original position */

}

.dropdown-menu2 ul {
    display: block;
    margin: 0; 
    padding: 0; 
    list-style-type: none;
}

.dropdown-menu2 ul li {
    padding: 0; 
    width: 100%;
    display: flex;
    justify-content: center; 
}

.dropdown-menu2 ul li a {
    text-decoration: none;
    width: 100%;
    display: block;
    color: black;
    padding: 0.5rem; 
    text-align: center; 
    font-weight: bolder;
    transition: background-color 0.3s ease;
}

.vrbo2 {
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
}

.dropdown-menu2 ul li a:hover {
    background-color: rgb(163, 83, 83); 
}

/* end of dropdown for hero image */

.hero-cta {
    display: flex; /* Use flexbox to align items */
    gap: 1rem; /* Add spacing between buttons */
    align-items: center; /* Vertically align buttons */
    justify-content: left; /* Adjust this if you want buttons centered or to the right */
    margin-top: 1rem; /* Add margin if needed to space from text above */
}

.airbnb-menu2, 
.shop-hero-btn {
    display: flex;
    align-items: center;
}

.airbnb-hero-btn {
    margin-right: 0.25rem; 
}

.shop-hero-btn {
    margin-left: 0.25rem; 
}

@media (max-width: 768px) {
    .hero-text {
        font-size: 1rem;
    }
}

/* Style for the Popular Bookings Section */
.popular-bookings {
    padding: 1rem 2rem;
    background-color: #af7d6b;
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 3rem;
}

.popular-bookings h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: black;
    margin-top: 1rem;
}

.booking-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    border: none;
}

.booking-card {
    position:relative;
    flex: 1;
    max-width: 400px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background-color: #f8f8f8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booked-out {
    position: absolute;
    top: 17px;
    left: -27px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    transform: rotate(-45deg);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 5px;
    z-index: 1000;
    background: rgb(163, 83, 83);
    padding: 5px 20px;
    display: block;
}

.booking-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.booking-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    z-index:1;
}

.booking-card h3 {
    margin: 1rem;
    font-size: 1.5rem;
    color: #333;
}

.booking-card p {
    margin: 0 1rem 1rem;
    color: #555;
    font-size: 1rem;
}

.booking-btn {
    display: block;
    margin: 1rem auto;
    padding: 0.75rem 1.5rem;
    background-color: #a35353;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.booking-btn:hover {
    background-color: #7d3131;
}

/* About Us Section Styles */
.about-us {
    padding: 3rem 2rem;
    background-color: blanchedalmond;
    display: flex;
    justify-content: center;
}

.about-container {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
}

.about-image {
    /*flex: 1;*/
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    margin-right: 2rem; 
}

.about-content {
    flex: 1;
    text-align: left;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.about-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #a35353;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.about-btn:hover {
    background-color: #7d3131;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-content {
        text-align: center;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 2rem 5%;
    text-align: center;
    background-color: #f9f9f9;
}

.reviews-section h1 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #333;
}

/* Slider Container */
.reviews-slider {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    display: flex;
    align-items: center;
}

/* Reviews Container */
.reviews-container {
    display: flex;
    transition: transform 0.4s ease-in-out;
    gap: 1rem;
}

/* Individual Review Card */
.review-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1rem;
    min-width: 29.75%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.review-card h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #444;
}

.review-card .stars {
    color: #ffcc00;
    margin-bottom: 0.75rem;
}

.review-card p {
    font-size: 1rem;
    color: #666;
    text-align: left;
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 20%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.slider-btn-left {
    left: 10px;
}

.slider-btn-right {
    right: 10px;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.review-btn {
    align-self: center;
    justify-content: space-evenly;
    margin: 0rem .5rem;
    margin-top: 2rem;
    padding: 1rem 1.75rem;
    background-color: rgb(163, 83, 83);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: bold;
    display: inline-block;
}

.review-btn:hover {
    background-color: rgb(125, 49, 49);
}

/* CTA Section Styles */
.cta-section {
    position: relative;
    background-image:url('/Images/cta-background.jpg');
    background-size: cover;
    background-position: center;
    padding: 50px 20px;
    display: flex;
    justify-content:space-around;
    align-items: left;
}

.cta-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-header h1 {
    font-size: x-large;
    justify-content: center;
    margin-bottom: 0rem;
}

.cta-header p {
    font-size: 1.25rem;
    justify-content: center;
    margin-bottom: 0rem;
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 300px;
}

.form-group {
    display: flex;
    flex-direction: column;
    justify-content: left;
}

input,
textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    width: 118%;
}

.submit-btn {
    background-color: #a35353;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #7d3131;
}

.cta-btns {
    right: 50%;
    display: auto;
    position: absolute;
    justify-content: right;
    right: 25%;
    margin: 5rem 2rem;
}

/* Footer Styles */
.footer {
    background-color: #d6d2d2;
    padding: 40px 20px;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 20px;
}

.footer-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.logo-placeholder {
    width: 60px;
    height: 60px;
    background-color: #ddd;
    border-radius: 50%;
    margin-bottom: 10px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-section p {
    font-size: 0.9rem;
    margin: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #a35353;
}

.footer-bottom {
    margin-top: 25px;
}

.footer-bottom a {
    display: flex;
    justify-content: space-around;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    padding-left: 5rem;
    padding-right: 5rem;
    padding-bottom: 7.5px;
}

.footer-bottom a:hover {
    color: #a35353;
}

.footer .fas {
    margin-right: 10px;
    color: #a35353;
}


@media (max-width: 321px) {

/* Footer Styles */
.footer {
    background-color: #d6d2d2;
    padding: 20px 10px; /* Reduce padding to prevent overflow */
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden; /* Prevent horizontal overflow */
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%; /* Ensure the container doesn't exceed screen width */
    box-sizing: border-box; /* Include padding and border in width calculations */
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    width: 100%;
    box-sizing: border-box; /* Ensure section width respects padding */
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    background-color: #ddd;
    border-radius: 50%;
    margin-bottom: 8px;
}

.footer-section h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-section p {
    font-size: 0.8rem;
    margin: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 4px;
}

.footer-section ul li a {
    color: #333;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #a35353;
}

.footer-bottom {
    margin-top: 10px;
    width: 100%;
    text-align: center;
}

.footer-bottom a {
    color: #333;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #a35353;
}

.footer .fas {
    margin-right: 5px;
    color: #a35353;
}

}

/* Privacy Policy Section */
.privacy-policy-section {
    padding: 40px;
    background-color: #f9f9f9;
    color: #333;
    font-family: Arial, sans-serif;
}

.privacy-policy-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-policy-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.privacy-policy-section h3 {
    font-size: 22px;
    margin-top: 20px;
}

.privacy-policy-section p {
    margin: 10px 0;
}

.privacy-policy-section ul {
    margin: 10px 0;
    padding-left: 20px;
}

.privacy-policy-section li {
    margin: 5px 0;
}

/* Contact Info Section */
.contact-info-section {
    padding: 20px;
    background-color: #d6d2d2;
    text-align: center;
}

.contact-info-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    font-size: 24px;
    color: rgb(125, 49, 49);
}

.contact-details {
    text-align: left;
}

.contact-label {
    font-size: 12px;
    color: #999;
}

.contact-info {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.border {
    width: 100%;
    height: 1.5px;
    background-color: #464646;
}

/* Gallery */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.gallery-section {
    padding: 20px;
    text-align: center;
    background-color: #ebe9e9;
}

.gallery-section h2 {
    margin-bottom: 20px;
    font-size: 3.5rem;
    color: #333;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Controls how many images per row */
    gap: 10px;
    padding: 10px;
}

.gallery-container img {
    width: 100%;
    height: 300px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
}

.gallery-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 40px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

/* Lightbox navigation buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: rgb(0 0 0);
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s ease;
    user-select: none;
    
}

.next {
    right: 20px;
}

.prev {
    left: 20px;
}

.prev:hover, .next:hover {
    color: #333;
}

/* About Us Section Styles-right */
.about-us-right {
    padding: 3rem 2rem;
    background-color: #af7d6b;
    display: flex;
    justify-content: center;
}

.about-container-right {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    flex-direction: row-reverse;
}

.about-image-right {
    /*flex: 1;*/
    max-width: 35%;
    height: auto;
    border-radius: 10px;
    margin-right: 2rem; 
}

.about-content-right {
    flex: 1;
    text-align: left;
}

.about-content-right h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #242424;
}

.about-content-right p {
    font-size: 1.1rem;
    color: #181717;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* About Us Section Styles-left */
.about-us-left {
    padding: 3rem 2rem;
    background-color: blanchedalmond;
    display: flex;
    justify-content: center;
}

.about-container-left {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
}

.about-image-left {
    /*flex: 1;*/
    max-width: 50%;
    height: 500px;
    border-radius: 10px;
    margin-right: 2rem;
    object-fit: cover;
}

.about-content-left {
    flex: 1;
    text-align: left;
}

.about-content-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.about-content-left p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Staff Section Styles */
.staff-section {
    padding: 40px 20px;
    background-color: #f5efe8; /* Adjust color as needed */
    text-align: center;
}

.staff-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.staff-member {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 85%;
    align-items: center;
    justify-content: center;
}

.staff-img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
}

.staff-info {
    text-align: left;
}

.staff-info h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
}

.staff-info h4 {
    margin: 5px 0;
    font-size: 1.2rem;
    color: #777;
}

.staff-info p {
    margin-top: 10px;
    line-height: 1.5;
    color: #555;
    font-size: 1.1rem;
}

/*  */
/* Hosting Services Section */
.hosting-services {
    padding: 40px 20px;
    background-color: blanchedalmond;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hosting-header {
    text-align: left;
    margin-bottom: 20px;
    max-width: 95%;
}

.hosting-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hosting-header p {
    font-size: 1.1rem;
    max-width: 100%;
}

.hosting-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
    max-width: 95%;
}

.hosting-option {
    display: flex;
    flex-direction: column;
    flex: 1 1 45%;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.hosting-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.hosting-info {
    padding: 20px;
}

.hosting-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.hosting-info p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.learn-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgb(163, 83, 83);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: rgb(125, 49, 49);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hosting-option {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .hosting-header h2 {
        font-size: 2rem;
    }

    .hosting-info h3 {
        font-size: 1.5rem;
    }
}

/* Wedding Section Styling */
.wedding-section {
    padding: 3rem 2rem;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    padding-top: 5rem;
}

.wedding-container {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
}

.wedding-image {
    /*flex: 1;*/
    max-width: 50%;
    height: 500px;
    border-radius: 10px;
    margin-right: 2rem;
    object-fit: cover;
}

.wedding-content {
    flex: 1;
    text-align: left;
}

.wedding-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.wedding-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Styling for the Disclaimer Section */
.disclaimer-section {
    position: fixed;
    top: 100px;
    right: 40px;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Styling for the Close Button */
.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
    color: #555;
}

.close-button:hover {
    color: #000;
}

/* Content Styling */
.disclaimer-content h2 {
    margin-top: 0;
    font-size: 18px;
    color: #333;
}

.disclaimer-content p {
    font-size: 14px;
    color: #555;
}

.about-image-right2 {
    /*flex: 1;*/
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    /*margin-right: 2rem; */
}

/* Shop Section Styles */
.shop-section {
    padding: 20px;
    background-color: #f9f9f9;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.product-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    background-color: #fff;
    cursor: pointer;
    transition: transform 0.2s;
}

.product-item:hover {
    transform: scale(1.05);
}

.product-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Modal Styles */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.modal-content {
    position: relative;
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    width: 80%;
    max-width: 800px;
    z-index: 10;
}

.modal-image {
    position: relative;
    flex: 1;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: cover;
}

.prev-image,
.next-image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    border-radius: 50%;
    padding-right: 13px;
    padding-left: 13px;
}

.prev-image {
    left: 10px;
}

.next-image {
    right: 10px;
}

.modal-details {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    border: none;
    background: none;
    color: black;
    cursor: pointer;
}

/* Small Screen Media Queries */
@media (max-width: 320px) {
    body {
        font-size: 12px;
    }
    
    .privacy-policy-section h2 {
        font-size: 20px;
    }

    .privacy-policy-section h3 {
        font-size: 16px;
    }

    .privacy-policy-section p {
        font-size: 12px;
    }

    /* Overlay adjustments */
    #overlay {
        padding: 5px;
    }

    #overlay a, #overlay button {
        font-size: 12px;
    }
}

@media (max-width: 376px) {

    /* Footer Styles */
    .footer {
        background-color: #d6d2d2;
        padding: 20px 10px; /* Reduce padding to prevent overflow */
        color: #333;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow-x: hidden; /* Prevent horizontal overflow */
    }
    
    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%; /* Ensure the container doesn't exceed screen width */
        box-sizing: border-box; /* Include padding and border in width calculations */
    }
    
    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        width: 100%;
        box-sizing: border-box; /* Ensure section width respects padding */
    }
    
    .logo-placeholder {
        width: 50px;
        height: 50px;
        background-color: #ddd;
        border-radius: 50%;
        margin-bottom: 8px;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .footer-section p {
        font-size: 0.8rem;
        margin: 0;
    }
    
    .footer-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-section ul li {
        margin-bottom: 4px;
    }
    
    .footer-section ul li a {
        color: #333;
        text-decoration: none;
        font-size: 0.8rem;
        transition: color 0.3s;
    }
    
    .footer-section ul li a:hover {
        color: #a35353;
    }
    
    .footer-bottom {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
    
    .footer-bottom a {
        color: #333;
        text-decoration: none;
        font-size: 0.8rem;
        transition: color 0.3s;
    }
    
    .footer-bottom a:hover {
        color: #a35353;
    }
    
    .footer .fas {
        margin-right: 5px;
        color: #a35353;
    }
}

@media (max-width: 426px) {

    /* Footer Styles */
    .footer {
        background-color: #d6d2d2;
        padding: 20px 10px; /* Reduce padding to prevent overflow */
        color: #333;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow-x: hidden; /* Prevent horizontal overflow */
    }
    
    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%; /* Ensure the container doesn't exceed screen width */
        box-sizing: border-box; /* Include padding and border in width calculations */
    }
    
    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        width: 100%;
        box-sizing: border-box; /* Ensure section width respects padding */
    }
    
    .logo-placeholder {
        width: 50px;
        height: 50px;
        background-color: #ddd;
        border-radius: 50%;
        margin-bottom: 8px;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .footer-section p {
        font-size: 0.8rem;
        margin: 0;
    }
    
    .footer-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-section ul li {
        margin-bottom: 4px;
    }
    
    .footer-section ul li a {
        color: #333;
        text-decoration: none;
        font-size: 0.8rem;
        transition: color 0.3s;
    }
    
    .footer-section ul li a:hover {
        color: #a35353;
    }
    
    .footer-bottom {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
    
    .footer-bottom a {
        color: #333;
        text-decoration: none;
        font-size: 0.8rem;
        transition: color 0.3s;
    }
    
    .footer-bottom a:hover {
        color: #a35353;
    }
    
    .footer .fas {
        margin-right: 5px;
        color: #a35353;
    }
}

@media (max-width: 431px) {

    /* Footer Styles */
    .footer {
        background-color: #d6d2d2;
        padding: 20px 10px; /* Reduce padding to prevent overflow */
        color: #333;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow-x: hidden; /* Prevent horizontal overflow */
    }
    
    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%; /* Ensure the container doesn't exceed screen width */
        box-sizing: border-box; /* Include padding and border in width calculations */
    }
    
    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        width: 100%;
        box-sizing: border-box; /* Ensure section width respects padding */
    }
    
    .logo-placeholder {
        width: 50px;
        height: 50px;
        background-color: #ddd;
        border-radius: 50%;
        margin-bottom: 8px;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .footer-section p {
        font-size: 0.8rem;
        margin: 0;
    }
    
    .footer-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-section ul li {
        margin-bottom: 4px;
    }
    
    .footer-section ul li a {
        color: #333;
        text-decoration: none;
        font-size: 0.8rem;
        transition: color 0.3s;
    }
    
    .footer-section ul li a:hover {
        color: #a35353;
    }
    
    .footer-bottom {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
    
    .footer-bottom a {
        color: #333;
        text-decoration: none;
        font-size: 0.8rem;
        transition: color 0.3s;
    }
    
    .footer-bottom a:hover {
        color: #a35353;
    }
    
    .footer .fas {
        margin-right: 5px;
        color: #a35353;
    }
}

@media (max-width: 541px) {

    /* Footer Styles */
    .footer {
        background-color: #d6d2d2;
        padding: 20px 10px; /* Reduce padding to prevent overflow */
        color: #333;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow-x: hidden; /* Prevent horizontal overflow */
    }
    
    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%; /* Ensure the container doesn't exceed screen width */
        box-sizing: border-box; /* Include padding and border in width calculations */
    }
    
    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        width: 100%;
        box-sizing: border-box; /* Ensure section width respects padding */
    }
    
    .logo-placeholder {
        width: 50px;
        height: 50px;
        background-color: #ddd;
        border-radius: 50%;
        margin-bottom: 8px;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .footer-section p {
        font-size: 0.8rem;
        margin: 0;
    }
    
    .footer-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-section ul li {
        margin-bottom: 4px;
    }
    
    .footer-section ul li a {
        color: #333;
        text-decoration: none;
        font-size: 0.8rem;
        transition: color 0.3s;
    }
    
    .footer-section ul li a:hover {
        color: #a35353;
    }
    
    .footer-bottom {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
    
    .footer-bottom a {
        color: #333;
        text-decoration: none;
        font-size: 0.8rem;
        transition: color 0.3s;
    }
    
    .footer-bottom a:hover {
        color: #a35353;
    }
    
    .footer .fas {
        margin-right: 5px;
        color: #a35353;
    }
}

/* Footer Styles for Large Devices (min-width: 2560px) */
@media (min-width: 2559px) {
    .footer {
        padding: 60px 40px;
        font-size: 1.2rem;
    }

    .footer-container {
        max-width: 2200px;
        gap: 40px;
    }

    .footer-section {
        gap: 20px;
    }

    .footer-section h4 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .footer-section p {
        font-size: 1.1rem;
    }

    .footer-section ul li {
        margin-bottom: 10px;
    }

    .footer-section ul li a {
        font-size: 1.1rem;
        transition: color 0.2s;
    }

    .footer-bottom {
        margin-top: 30px;
    }

    .footer-bottom a {
        font-size: 1.1rem;
        transition: color 0.2s;
    }

    .logo-placeholder {
        width: 80px;
        height: 80px;
    }

    .footer .fas {
        margin-right: 15px;
        font-size: 1.5rem;
    }
}

/* Responsive Styling for Large Devices (min-width 2560px) */
@media (min-width: 2559px) {
    .privacy-policy-section {
        padding: 60px 80px; /* Increase padding for a more balanced look */
    }

    .privacy-policy-section .container {
        max-width: 1600px; /* Widen the max-width to utilize larger screen real estate */
    }

    .privacy-policy-section h2 {
        font-size: 36px; /* Increase font size for headers */
        margin-bottom: 30px;
    }

    .privacy-policy-section h3 {
        font-size: 28px; /* Increase font size for subheaders */
        margin-top: 30px;
    }

    .privacy-policy-section p {
        font-size: 18px; /* Slightly increase the paragraph font size for readability */
        margin: 15px 0;
        line-height: 1.6; /* Adjust line height for better text flow */
    }

    .privacy-policy-section ul {
        margin: 15px 0;
        padding-left: 25px; /* Slightly increase padding for lists */
    }

    .privacy-policy-section li {
        font-size: 18px; /* Match list item font size with paragraph font size */
        margin: 10px 0;
    }
}

/* Responsive Adjustments for Mobile Devices */
@media (max-width: 321px) {
    .contact-form {
        width: 100%;
        padding: 0 10px; /* Add some padding to the sides */
    }

    input,
    textarea {
        width: 100%; /* Make inputs and textareas fit within the screen */
        box-sizing: border-box; /* Ensure padding and border are included in the total width */
    }

    .cta-btns {
        position: static; /* Remove absolute positioning for better alignment on small screens */
        display: flex;
        justify-content: center; /* Center buttons */
        margin: 20px 0; /* Adjust margin for better spacing */
    }
}

/* Responsive Adjustments for Mobile Devices */
@media (max-width: 431px) {
    .contact-form {
        width: 100%;
        padding: 0 10px; /* Add some padding to the sides */
    }

    input,
    textarea {
        width: 100%; /* Make inputs and textareas fit within the screen */
        box-sizing: border-box; /* Ensure padding and border are included in the total width */
    }

    .cta-btns {
        position: static; /* Remove absolute positioning for better alignment on small screens */
        display: flex;
        justify-content: center; /* Center buttons */
        margin: 20px 0; /* Adjust margin for better spacing */
    }
}


/* Responsive Adjustments for Mobile Devices */
@media (max-width: 431px) {
    .contact-info-section {
        padding: 10px; /* Reduce padding for smaller screens */
    }

    .contact-info-container {
        flex-direction: column; /* Stack items vertically */
        align-items: flex-start; /* Align items to the start for a cleaner look */
        gap: 15px; /* Add spacing between stacked items */
    }

    .contact-item {
        justify-content: flex-start; /* Align icons and text to the start */
    }

    .contact-icon {
        font-size: 20px; /* Slightly reduce icon size */
    }

    .contact-label {
        font-size: 10px; /* Reduce label font size */
    }

    .contact-info {
        font-size: 14px; /* Adjust font size for better readability */
    }
}

/* Responsive Adjustments for Large Devices (min-width: 2560px) */
@media (min-width: 2559px) {
    .contact-info-section {
        padding: 40px; /* Increase padding for better spacing */
    }

    .contact-info-container {
        max-width: 2000px; /* Expand container width to utilize more screen space */
        gap: 50px; /* Increase gap between items */
    }

    .contact-item {
        gap: 20px; /* Increase gap between icon and text */
    }

    .contact-icon {
        font-size: 36px; /* Enlarge icon for visibility */
    }

    .contact-label {
        font-size: 16px; /* Increase label font size */
    }

    .contact-info {
        font-size: 20px; /* Increase info text size for better readability */
        font-weight: bold;
    }
}

/* Responsive Adjustments for Large Devices (min-width: 2560px) */
@media (min-width: 2559px) {
    .contact-form {
        gap: 30px; /* Increase gap between form elements */
        width: 800px; /* Increase the form width */
    }

    input,
    textarea {
        padding: 20px; /* Increase padding for a more spacious feel */
        font-size: 1.25rem; /* Increase font size for better readability */
        width: 90%; /* Adjust width for large screen balance */
    }

    .submit-btn {
        padding: 15px; /* Increase button padding */
        font-size: 1.2rem; /* Increase button font size */
    }

    .cta-btns {
        right: 20%; /* Adjust positioning to align properly on larger screens */
        margin: 6rem 4rem; /* Increase margins for better layout */
    }


}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-container-left {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-image-left {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-content-left {
        text-align: center;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-container-right {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-image-right {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-content-right {
        text-align: center;
    }
}

/* Responsive Adjustments for Small Devices (max-width: 320px) */
@media (max-width: 426px) {
    .staff-section {
        padding: 20px 10px; /* Reduce padding for smaller screens */
    }

    .staff-member {
        padding: 10px; /* Adjust padding inside staff cards */
        gap: 10px; /* Reduce gap between elements */
        display: flex;
        flex-direction: column;
    }

    .staff-img {
        width: 120px; /* Further reduce image size */
        height: 120px; /* Ensure a balanced image dimension */
    }

    .staff-info h3 {
        font-size: 1rem; /* Further adjust heading sizes for small screens */
    }

    .staff-info h4 {
        font-size: 0.9rem;
    }

    .staff-info p {
        font-size: 0.85rem; /* Ensure paragraph text is readable but not overwhelming */
    }
}

/* Responsive Adjustments for Large Devices (min-width: 2560px) */
@media (min-width: 2560px) {
    .about-us {
        padding: 5rem 4rem; /* Increase padding for a spacious feel */
    }

    .about-container {
        gap: 4rem; /* Increase gap between image and content */
        max-width: 1800px; /* Increase the max-width to better use the large screen */
    }

    .about-image {
        max-width: 60%; /* Allow the image to take up more space */
        border-radius: 15px; /* Slightly increase the border radius for a more elegant look */
        margin-right: 3rem; /* Adjust margin for visual balance */
    }

    .about-content h2 {
        font-size: 3rem; /* Increase heading size for impact */
        margin-bottom: 1.5rem;
    }

    .about-content p {
        font-size: 1.25rem; /* Increase paragraph font size for readability on large screens */
        line-height: 1.8; /* Increase line height for better readability */
        margin-bottom: 2rem;
    }

    .about-btn {
        padding: 1rem 2rem; /* Increase button padding */
        font-size: 1.25rem; /* Increase button text size */
        border-radius: 7px; /* Slightly larger radius for a more substantial feel */
    }
}

/* Responsive Adjustments for Large Devices (min-width: 2560px) */
@media (min-width: 2560px) {
    .about-us-left {
        padding: 5rem 4rem; /* Increase padding for a spacious feel */
    }

    .about-container-left {
        gap: 4rem; /* Increase gap between image and content */
        max-width: 1800px; /* Increase the max-width to better use the large screen */
    }

    .about-image-left {
        max-width: 60%; /* Allow the image to take up more space */
        border-radius: 15px; /* Slightly increase the border radius for a more elegant look */
        margin-right: 3rem; /* Adjust margin for visual balance */
        height: 600px;
        object-fit: cover;
    }

    .about-content-left h2 {
        font-size: 3rem; /* Increase heading size for impact */
        margin-bottom: 1.5rem;
    }

    .about-content-left p {
        font-size: 1.25rem; /* Increase paragraph font size for readability on large screens */
        line-height: 1.8; /* Increase line height for better readability */
        margin-bottom: 2rem;
    }

}

/* Responsive Adjustments for Large Devices (min-width: 2560px) */
@media (min-width: 2560px) {
    .about-us-right {
        padding: 5rem 4rem; /* Increase padding for a spacious feel */
    }

    .about-container-right {
        gap: 4rem; /* Increase gap between image and content */
        max-width: 1800px; /* Increase the max-width to better use the large screen */
    }

    .about-image-right {
        max-width: 60%; /* Allow the image to take up more space */
        border-radius: 15px; /* Slightly increase the border radius for a more elegant look */
        margin-right: 3rem; /* Adjust margin for visual balance */
        height: 600px;
        object-fit: cover;
    }

    .about-content-right h2 {
        font-size: 3rem; /* Increase heading size for impact */
        margin-bottom: 1.5rem;
    }

    .about-content-right p {
        font-size: 1.25rem; /* Increase paragraph font size for readability on large screens */
        line-height: 1.8; /* Increase line height for better readability */
        margin-bottom: 2rem;
    }

}


/* Responsive Adjustments for Large Devices (min-width: 2560px) */
@media (min-width: 2560px) {
    .staff-section {
        padding: 60px 40px; /* Increase padding for more spacing */
    }

    .staff-container {
        gap: 40px; /* Increase gap between staff members */
        flex-wrap: wrap; /* Allow wrapping if many staff members */
    }

    .staff-member {
        flex-direction: row;
        gap: 40px; /* Increase gap between image and text */
        padding: 30px; /* Add more padding for a spacious look */
        border-radius: 15px; /* Slightly increase border radius */
    }

    .staff-img {
        width: 300px; /* Increase image size for better visibility */
        height: 300px;
        border-radius: 15px;
    }

    .staff-info h3 {
        font-size: 2.5rem; /* Increase font size for larger screens */
    }

    .staff-info h4 {
        font-size: 1.8rem; /* Slightly larger subheading */
    }

    .staff-info p {
        font-size: 1.4rem; /* Larger text for better readability */
        line-height: 1.8; /* Increase line height for a more comfortable read */
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .wedding-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .wedding-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .wedding-content {
        text-align: center;
    }
}

/* Responsive Adjustments for Large Devices (min-width: 2560px) */
@media (min-width: 2560px) {

    .wedding-container {
        gap: 4rem; /* Increase gap between image and content */
        max-width: 1800px; /* Increase the max-width to better use the large screen */
    }

    .wedding-image {
        max-width: 60%; /* Allow the image to take up more space */
        border-radius: 15px; /* Slightly increase the border radius for a more elegant look */
        margin-right: 3rem; /* Adjust margin for visual balance */
    }

    .wedding-content h2 {
        font-size: 3rem; /* Increase heading size for impact */
        margin-bottom: 1.5rem;
    }

    .wedding-content p {
        font-size: 1.25rem; /* Increase paragraph font size for readability on large screens */
        line-height: 1.8; /* Increase line height for better readability */
        margin-bottom: 2rem;
    }

}

/* Responsive Styles for Small Devices (max-width: 768px) */
@media (max-width: 426px) {
    .popular-bookings {
        padding: 1rem; /* Reduce padding for smaller screens */
        margin-bottom: 2rem; /* Adjust margin to improve spacing */
    }

    .popular-bookings h2 {
        font-size: 1.5rem; /* Reduce font size for headings */
        margin-bottom: 1.5rem; /* Adjust bottom margin for headings */
    }

    .booking-cards {
        gap: 1rem; /* Reduce gap between cards */
        flex-direction: column; /* Stack cards vertically */
        align-items: center; /* Center align cards */
    }

    .booking-card {
        max-width: 90%; /* Reduce max-width for smaller screens */
        width: 100%; /* Ensure cards take full width */
        margin-bottom: 1.5rem; /* Add bottom margin to separate cards */
    }

    .booking-card img {
        height: 250px; /* Reduce image height to fit smaller screens */
        object-fit: cover;
    }

    .booking-card h3 {
        font-size: 1.25rem; /* Adjust heading size within cards */
    }

    .booking-card p {
        font-size: 0.9rem; /* Smaller font size for descriptions */
    }

    .booking-btn {
        padding: 0.5rem 1rem; /* Adjust button padding */
        font-size: 0.9rem; /* Reduce button text size */
    }
}

/* Responsive Styles for Small Devices (max-width: 768px) */
@media (max-width: 768px) {
    .popular-bookings {
        padding: 1rem; /* Reduce padding for smaller screens */
        margin-bottom: 2rem; /* Adjust margin to improve spacing */
    }

    .popular-bookings h2 {
        font-size: 1.5rem; /* Reduce font size for headings */
        margin-bottom: 1.5rem; /* Adjust bottom margin for headings */
    }

    .booking-cards {
        gap: 1rem; /* Reduce gap between cards */
        flex-direction: column; /* Stack cards vertically */
        align-items: center; /* Center align cards */
    }

    .booking-card {
        max-width: 90%; /* Reduce max-width for smaller screens */
        width: 100%; /* Ensure cards take full width */
        margin-bottom: 1.5rem; /* Add bottom margin to separate cards */
    }

    .booking-card h3 {
        font-size: 1.25rem; /* Adjust heading size within cards */
    }

    .booking-card p {
        font-size: 0.9rem; /* Smaller font size for descriptions */
    }

    .booking-btn {
        padding: 0.5rem 1rem; /* Adjust button padding */
        font-size: 0.9rem; /* Reduce button text size */
    }
}

@media (max-width: 768px) {
    /* Individual Review Card */
.review-card {

    min-width: 143%;

}

}

/* Hero Section Styles */
.sub-hero-section {
    position: relative;
    height: 58vh; /* Full screen height */
    background-image: url('/Images/possible-sub-hero.jpg'); /* Replace with your image path */
    background-size: cover; /* Ensures the image covers the section */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    top: 0;
}

.sub-hero-header {
    position: absolute;
    color: black;
    font-size: 5vw; /* Responsive font size based on viewport width */
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(165, 165, 165, 0.5); /* Subtle shadow for depth */
    top: 30%;
    left: 50%;
    transform: translate(-50%, 50%);
}

@media (max-width: 1100px) {
    .sub-hero-header {
        font-size: 8vw; /* Slightly larger for tablets */
    }
}

@media (max-width: 600px) {
    .sub-hero-section {
        display: flex;
        /* height: 30vh; */
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .sub-hero-header {
        font-size: 10vw; /* Larger for smaller screens */
    }
}

/* .fade-img {
    position: relative; 
  }
  
  .fade-img:after {
    content:""; 
    position: absolute; 
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgb(175, 125, 107) 100%);
    height: 15%;  
  } */

  /* Hero Section Styles */
.sub-hero-section-d {
    position: relative;
    height: 58vh; /* Full screen height */
    background-image: url('/Images/possible-sub-hero.jpg'); /* Replace with your image path */
    background-size: cover; /* Ensures the image covers the section */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    top: 0;
}

.sub-hero-header-d {
    position: absolute;
    color: black;
    font-size: 5vw; /* Responsive font size based on viewport width */
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(165, 165, 165, 0.5); /* Subtle shadow for depth */
    top: 15%;
    left: 50%;
    transform: translate(-50%, 50%);
    text-align: center;
}

@media (max-width: 1100px) {
    .sub-hero-header-d {
        font-size: 8vw; /* Slightly larger for tablets */
    }
}

@media (max-width: 600px) {
    .sub-hero-section-d {
        display: flex;
        /* height: 30vh; */
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .sub-hero-header-d {
        font-size: 10vw; /* Larger for smaller screens */
    }
}

.breaker-airport {
    width: 100%;
    height: 3rem;
    background-color: #af7d6b;
}

.about-us-right-a {
    padding: 3rem 2rem;
    padding-bottom: 0;
    background-color: #af7d6b;
    display: flex;
    justify-content: center;
}

/* 404 Page Styles */
.error-section {
    position: relative;
    height: 100vh;
    background-image: url('/Images/404.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-content {
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.6); /* Optional overlay for text readability */
    padding: 20px;
    border-radius: 10px;
}

.error-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.error-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.home-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #a35353;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.home-btn:hover {
    background-color: rgb(125, 49, 49);
}

@media (max-width: 600px) {
    .error-section {
        background-image: url('/Images/mobile-404.jpg'); /* Replace with your image path */
}
}

@media (max-width: 862px) {
    .error-content {
        height: 100%;
        align-content: center;
    }
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 88vh;
    background-image: url('/Images/GoatHero2.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: left;
}

.hero-text {
    color: black;
    padding: 2rem;
    top: 46%;
    height: 100%;
    align-content: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 550;
}

@media (min-width:1000px) {
    .hero-text p {
        width: 90%;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-section {
        height: 83vh;
    }

    .hero-text h1 {
        font-size: 2.125rem;
    }

    .hero-text p {
        font-size: 1rem;
    }
}

@media (max-width: 1000px) {

    .hero-cta {
        justify-content: center; /* Adjust this if you want buttons centered or to the right */
    }

    .hero-section {
        height: 83vh;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 83vh;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }
}


@media (max-width: 1000px) {
    .hero-section {
        background-image: url('/Images/mobile-hero.jpg'); /* Replace with your image path */
        background-size: cover;
        background-position: center;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        position: relative;
    }

    .hero-content {
        text-align: center;
        color: #fff;
        background: rgba(0, 0, 0, 0.6); /* Optional overlay for text readability */
        height: 100%;
        width: 150%;
        align-content: center;
}

    .hero-text {
        color: #fff;
        width: auto;
    }

}

.inclusion-section {
    padding: 50px;
    background-color: #f9f9f9;
    color: #333;
    font-family: Arial, sans-serif;
}

.inclusion-section .container {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.inclusion-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.inclusion-section p {
    margin: 18px 0;
}

@media (min-width: 1001px) {
.hero-content {
    height: 100%;
}

.hero-text-container {
    position: relative;
    width: 33%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    height: 100%;
    top: 0;
}

.hero-text {
    position: relative;
    color: black;
    padding: 2rem;
    top:0;
}

}

/* 
.hero-text-container::after {
    content:""; 
    position: relative; 
    top: 0;
    bottom: 0;
    height: 100%;
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.3) 100%,rgba(255, 255, 255, 0.3) 0%);
    width: 10%;   */

@media (min-width: 1800px) {
    .hero-content {
        height: 100%;
    }

    .hero-text-container {
        position: relative;
        width: 33vw;
        height: 100%;
        background: rgba(255, 255, 255, 0.3);
        height: 100%;
        top: 0;
        /* background: linear-gradient(to right rgba(255, 255, 255, 0.3) 100%, rgba(255, 255, 255, 0) 100%); */
    }

    .hero-text {
        position: relative;
        color: black;
        padding: 2rem;
        top:0;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        font-size: 1.75rem;
    }

}

/* Overlay Styling */
#overlay {
    position: fixed;
    display: none; /* Hidden by default */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(43, 43, 43); /* Dark semi-transparent background */
    z-index: 9999; /* Ensure it appears above all content */
    overflow-y: auto; /* Allows scrolling if content exceeds the viewport height */
    text-align: left;
    padding: 2rem 2rem; /* Space at the top and bottom */
}

#overlay > div {
    margin-bottom: 2rem; /* Space between logo and links */
}

#overlay a {
    display: block;
    margin: 1rem 0;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    margin-bottom: 2rem;
}

#overlay a:hover {
    color: #ffcc00; /* Highlight color on hover */
}

#overlay img {
    max-width: 150px; /* Limit logo size */
    margin-bottom: 2rem; /* Space below the logo */
}

/* Dropdown for Stay Menu */
.stay {
    display: block; /* Hidden by default */
    text-align: left;
    padding-left: 2rem;
}

.stay ul {
    list-style: none;
    padding: 0;
}

.stay-subclass {
    font-size: 1.2rem;
    color: #ffcc00; /* Link color for dropdown */
}

.stay-subclass:hover {
    color: #ff8800; /* Highlight color on hover */
}

/* Close Button for Overlay */
#overlay .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #overlay a {
        font-size: 1.2rem; /* Slightly smaller text on small screens */
    }
}

.overlay-close {
    position: fixed;
    font-size: 2rem;
    top: 5%;
    right: 10%;
    color: white;
}

.vrbo {
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
}

@media (max-width: 769px) {

    .reviews-container {
        display: grid;
    }

    .hfm {
        display: none;
    }

    .vfm {
        min-width: 82vw;
    }

}

.footer .fa-brands {
    margin-right: 10px;
    color: #a35353;
}

.contact a {
    text-decoration: none;
    color:#333;
}

.contact a :hover {
    color:#a35353;
}

.footer-section h4.contact {
    margin-top: 0px;
    margin-bottom: 0px;
}
