/* Font Imports */
@font-face {
    font-family: 'Photograph Signature';
    src: url(assets/fonts/photograph_signature-webfont.woff2) format('woff2'),
        url(assets/fonts/photograph_signature-webfont.woff) format('woff');
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: "Futura", sans-serif;
    src: url(assets/fonts/futura-condensedlight-webfont.woff2) format('woff2'),
        url(assets/fonts/futura-condensedlight-webfont.woff) format('woff');
    font-style: normal;
    font-weight: 300;
}


/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    font-family: "Futura", sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Header with Video Background */
.header {
    height: calc(100vh - 40px);
    margin: 10px;
    position: relative;
    overflow: hidden;
    color: #f8f8f8;
}

.header-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.header-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Header Content */
.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 20px;
}

.header-content h1 {
    font-family: "Photograph Signature", sans-serif;
    font-weight: 100;
    font-size: 100px;
}

.header-content p {
    color: #f8f8f8;
    font-size: 18px;
}

/* Main Container for responsive and centering*/
.main {
    display: flex;
    justify-content: center;
}

.content-container {
    width: 1340px;
    position: relative;
}

/* Main Font Styling */
.main h2 {
    background: linear-gradient(180deg, #33E28C 19%, #4F94D9 82%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-weight: 350;
    font-size: 50px;
    line-height: 115%;

    margin: 5px 0px 17px 0px;
}

.main h7 {
    font-weight: 900;
    color: #4E544D;
    font-size: 14px;
}

.main p {
    color: #4E544D;
    font-size: 16px;
    font-weight: 200;
}


/* About Styling */
.about {
    display: flex;
    justify-content: space-between;
    margin: 60px 0px 0px 0px;
    height: auto;
}

.about-content {
    width: 40%;
    height: 100%;
    margin: 0px 0px 0px 70px;
}

/* About Book Button */
.about-book {
    position: absolute;
    top: 5%;
    /* Position relative to parent */
    right: 15%;
    /* Shift right */
    z-index: 2;
    /* Ensures the button text stays above the pseudo-element */
    padding: 63px 10px;
    color: #f8f8f8;
    /* Change text color to white when hovered */
    background: #71c9ff;
    /* Initial background color */
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-decoration: none;
    font-weight: normal;
    font-size: 20px;
    border-radius: 4px;
    overflow: hidden;
    transition: color 0.5s ease;
    /* Smooth text color transition */
}

/* Pseudo-element used for hover effect */
.about-book:before {
    content: "";
    /* Creates an empty pseudo-element */
    position: absolute;
    bottom: 100%;
    /* Initially places the pseudo-element below the button */
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(230, 157, 191);
    /* Initial background color (red) */
    transition: bottom 0.5s ease, background 0.5s ease;
    /* Smooth transition for position and background color */
    z-index: -1;
    /* Ensures the pseudo-element is below the text */
}

/* Hover effect for the pseudo-element */
.about-book:hover:before {
    bottom: 0;
    /* Moves the pseudo-element up to cover the button */
    background: #5de9c6;
    /* Changes the background color to Facebook blue */
}


/* Rectangle Shape */
.about-rectangle-shape {
    top: 10%;
    /* Position relative to parent height */
    left: 20%;
    /* Shift right by percentage */
    width: 68%;
    /* Responsive width */
    height: 450px;
    border: 3px solid #3EE090;
    margin: 0px;
    overflow: hidden;
    position: absolute;
    z-index: 0;
    border-radius: 4px;
}


/* Overlaps Images */
.about-image-stack {
    position: relative;
    width: 690px;
    height: 810px;
    margin: 0;
}

.about-image-stack__item {
    position: absolute;
    transition: 0.3s ease;
}

/* Top Image Container */
.about-image-stack__item--top {
    top: -17%;
    left: -20%;
    width: 60%;
    height: 420px;
    margin: 0px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border-radius: 2%;
}

/* Bottom Image Container */
.about-image-stack__item--bottom {
    top: 0%;
    left: 15%;
    width: 68%;
    height: 500px;
    margin: 0px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 2%;
}

.about-image-stack__item--top img,
.about-image-stack__item--bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Room Styling */
.room {
    display: flex;
    flex-direction: row;
    height: auto;
}

.room-content {
    width: 37.9%;
    height: 100%;
    margin: 70px 0px 0px 0px;

}

/* Overlaps Images */
.room-image-stack {
    position: relative;
    width: 100%;
    width: 690px;
    height: auto;
    margin: 0;
}

.room-image-stack__item {
    position: absolute;
    transition: 0.3s ease;
}

.room-explore {
    top: 2.7%;
    left: 28.5%;
    z-index: 2;
    position: absolute;
    padding: 10px 77px;
    background: #71c9ff;
    text-decoration: none;
    font-weight: normal;
    font-size: 20px;
    /* Adjust for smaller screens */
    color: #F8F8F8;
    border-radius: 4px;
    overflow: hidden;
    /* Hide overflow to create a clean effect */
}

/* Pseudo-element used for hover effect */
.room-explore:before {
    content: "";
    /* Creates an empty pseudo-element */
    position: absolute;
    top: 0;
    /* Initially position at the top of the button */
    left: 0;
    /* Start at the left edge of the button */
    width: 0%;
    /* Initially, the pseudo-element has no width */
    height: 100%;
    /* Full height of the button */
    background: rgb(230, 157, 191);
    /* Initial background color */
    transition: width 0.5s ease, background 0.5s ease;
    /* Smooth transition for width and background */
    z-index: -1;
    /* Ensures the pseudo-element is below the text */
}

/* Hover effect for the pseudo-element */
.room-explore:hover:before {
    width: 100%;
    /* Expands the pseudo-element to cover the full width of the button */
    background: #5de9c6;
    /* Changes the background color when hovered */
}


/* Top Image Container */
.room-image-stack__item--top {
    top: -9%;
    left: 46%;
    width: 85%;
    height: 400px;
    margin: 0px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border-radius: 2%;
}

/* Bottom Image Container */
.room-image-stack__item--bottom {
    top: 5%;
    left: 14%;
    width: 70%;
    height: 500px;
    margin: 0px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 2%;
}

.room-image-stack__item--top img,
.room-image-stack__item--bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Rectangle Shape */
.room-rectangle-shape {
    top: 30%;
    /* Position relative to parent height */
    left: 5%;
    /* Shift right by percentage */
    width: 68%;
    /* Responsive width */
    height: 430px;
    border: 3px solid #3EE090;
    margin: 0px;
    overflow: hidden;
    position: absolute;
    z-index: 0;
    border-radius: 4px;
}


/* TOUR */
.tour {
    display: flex;
    flex-wrap: wrap;
    /* Wrap for responsiveness */
    margin: 60px 0px;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

.tour-container {
    padding: 0px;
    width: 650px;
    height: 100%;
}

#tour-title {
    text-align: center;
}

.tour-content p {
    width: 80%;
    margin-top: 20px;
    line-height: 1.6;
    margin-left: 125px;
}

#tour-description {
    font-size: 16px;
    margin: 0 0px 0px 1.5rem;
}

/* Inquire Button Styling */
.tour-inquire-button {
    display: flex;
    justify-self: center;
    border: 1px solid #4E544D;
    /* Independent border size */
    padding: 10px 50px;
    /* Adjust padding for desired size */
    color: #4E544D;
    /* Text color */
    text-align: center;
    /* Center the text */
    font-size: 16px;
    /* Adjust font size */
    font-weight: bold;
    /* Make it stand out */
    cursor: pointer;
    /* Pointer cursor for interactivity */
    transition: background-color 0.3s ease, color 0.3s ease;
    /* Smooth hover effect */
    margin-top: 50px;
    position: relative;
    /* Added position: relative for the pseudo-element positioning */

}

.tour-inquire-button p {
    margin: 0;
    /* Remove default paragraph margins */
    text-decoration: none;
    color: #4E544D;
}

.tour-inquire-button:hover p {
    color: #f8f8f8;
    /* Change text color on hover */
}

/* The pseudo-element that will be animated */
.tour-inquire-button:before {
    content: "";
    /* Creates an empty pseudo-element (no text) */
    position: absolute;
    /* Position it absolutely inside the button */
    top: 0;
    /* Initially position it at the top edge of the button */
    left: 0;
    /* Position it at the left edge of the button */
    width: 0%;
    /* Initially, the pseudo-element has no width, so it's invisible */
    height: 100%;
    /* The pseudo-element will cover the full height of the button */
    background: #71c9ff;
    /* The initial background color of the pseudo-element */
    transition: width 0.5s ease, background 0.5s ease;
    /* Smooth transition for width change and background color change */
    z-index: -1;
    /* Ensures the pseudo-element stays behind the text (so text is visible) */
}

/* Hover effect for the pseudo-element */
.tour-inquire-button:hover:before {
    width: 100%;
    /* On hover, expand the pseudo-element to cover the full width of the button */
    background: #4E544D;
    /* Change the background color to a new color */
}

.pavilion-book {
    position: absolute;
    top: -2%;
    right: 15%;
    padding: 8px 85px;
    font-size: 20px;
    background: #71c9ff;
    color: #F8F8F8;
    text-decoration: none;
    border-radius: 4px;
    z-index: 2;
    text-align: left;
}

/* The pseudo-element that will be animated */
.pavilion-book:before {
    content: "";
    /* Creates an empty pseudo-element (no text) */
    position: absolute;
    /* Position it absolutely inside the button */
    top: 0;
    /* Position it at the top edge of the button */
    left: 0;
    /* Position it at the left edge of the button */
    width: 0%;
    /* Initially, the pseudo-element has no width, so it's invisible */
    height: 100%;
    /* The pseudo-element will cover the full height of the button */
    background: rgb(230, 157, 191);
    /* The initial background color of the pseudo-element */
    transition: width 0.5s ease, background 0.5s ease;
    /* Smooth transition for width change and background color change */
    z-index: -1;
    /* Ensures the pseudo-element stays behind the text (so text is visible) */
}

/* Hover effect for the pseudo-element */
.pavilion-book:hover:before {
    width: 100%;
    /* On hover, expand the pseudo-element to cover the full width of the button */
    background: #5de9c6;
    /* Change the background color to a new color */
}

/* Overlaps Images */
.tour-image-stack {
    display: flex;
    justify-self: flex-end;
    align-content: flex-start;
    flex-direction: column;
    position: relative;
    width: 100%;
    width: 690px;
    height: 650px;
    margin: 0;
}

.tour-image-stack__item {
    position: absolute;
    transition: 0.3s ease;
}

/* Image Container */
.tour-image-stack__item--top {
    top: 0%;
    left: 13%;
    width: 80%;
    height: 80%;
    margin: 0px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 2%;
}

.tour-image-stack__item--top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cottage Container Styling */
.cottage {
    display: flex;
    flex-direction: row;
    margin-top: 70px;
    height: auto;
    align-items: center;
    overflow: hidden;
}

/* Left Container (Title and Description) */
.cottage-container-left {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 50%;
    justify-content: center;
    /* Vertically center the content */
    position: relative;
}

/* Right Container (Image and Additional Content) */
.cottage-container-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /* Ensure button is positioned within this container */
}

/* Text Styling */
.cottage-description {
    width: 60%;
    text-align: right;
    margin: 20px 0px;
}

.cottage-title {
    width: 79%;
    /* Set width to 100% for better layout */
    text-align: left;
    margin: 0px 0px 20px 0px;
}

/* Relax Button Styling */
.relax {
    background-color: #71c9ff;
    padding: 7px 80px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    color: #f8f8f8;
    font-size: 22px;
    margin-top: 30px;
    position: absolute;
    top: 34%;
    left: 21%;
    z-index: 2;
}

/* Pseudo-element used for hover effect */
.relax:before {
    content: "";
    /* Creates an empty pseudo-element */
    position: absolute;
    top: 0;
    /* Initially position at the top of the button */
    left: 0;
    /* Start at the left edge of the button */
    width: 0%;
    /* Initially, the pseudo-element has no width */
    height: 100%;
    /* Full height of the button */
    background: rgb(230, 157, 191);
    /* Initial background color */
    transition: width 0.5s ease, background 0.5s ease;
    /* Smooth transition for width and background */
    z-index: -1;
    /* Ensures the pseudo-element is below the text */
}

/* Hover effect for the pseudo-element */
.relax:hover:before {
    width: 100%;
    /* Expands the pseudo-element to cover the full width of the button */
    background: #5de9c6;
    /* Changes the background color when hovered */
}

/* Rectangle Shape Styling */
.cottage-rectangle-shape {
    position: absolute;
    top: -10%;
    left: 13%;
    width: 69%;
    height: 300px;
    border: 3px solid #3EE090;
    z-index: -1;
    border-radius: 4px;
}

/* Image Container Styling */
.cotage-image-container-left,
.cotage-image-container-right {
    width: 80%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    position: relative;
    border-radius: 2%;
}

/* Left Image Container Styling */
.cotage-image-container-left {
    max-height: 540px;
    z-index: 1;
}

/* Right Image Container Styling */
.cotage-image-container-right {
    max-height: 370px;
    z-index: 2;
}

/* Image Styling */
.cotage-image-container-left img,
.cotage-image-container-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Event Section Styling */
.event {
    display: flex;
    flex-wrap: wrap;
    /* Wrap for responsiveness */
    margin: 60px 0px;
}

.event-container {
    padding: 0px;
    width: 650px;
    height: 100%;
}

.event-content {
    margin: 120px 0px 0px 0px;
    text-align: right;
}

.event-container h2 {
    width: 80%;
    margin-left: 133px;
}

.event-content p {
    width: 80%;
    margin-top: 20px;
    line-height: 1.6;
    margin-left: 125px;
}

/* Inquire Button Styling */
.inquire-button {
    display: flex;
    justify-self: center;
    border: 1px solid #4E544D;
    /* Independent border size */
    padding: 10px 50px;
    /* Adjust padding for desired size */
    color: #4E544D;
    /* Text color */
    text-align: center;
    /* Center the text */
    font-size: 16px;
    /* Adjust font size */
    font-weight: bold;
    /* Make it stand out */
    cursor: pointer;
    /* Pointer cursor for interactivity */
    transition: background-color 0.3s ease, color 0.3s ease;
    /* Smooth hover effect */
    margin-top: 50px;
    margin-left: 140px;
    position: relative;
    /* Added position: relative for the pseudo-element positioning */

}

.inquire-button p {
    margin: 0;
    /* Remove default paragraph margins */
    text-decoration: none;
    color: #4E544D;
}

.inquire-button:hover p {
    color: #f8f8f8;
    /* Change text color on hover */
}

/* The pseudo-element that will be animated */
.inquire-button:before {
    content: "";
    /* Creates an empty pseudo-element (no text) */
    position: absolute;
    /* Position it absolutely inside the button */
    top: 0;
    /* Initially position it at the top edge of the button */
    left: 0;
    /* Position it at the left edge of the button */
    width: 0%;
    /* Initially, the pseudo-element has no width, so it's invisible */
    height: 100%;
    /* The pseudo-element will cover the full height of the button */
    background: #71c9ff;
    /* The initial background color of the pseudo-element */
    transition: width 0.5s ease, background 0.5s ease;
    /* Smooth transition for width change and background color change */
    z-index: -1;
    /* Ensures the pseudo-element stays behind the text (so text is visible) */
}

/* Hover effect for the pseudo-element */
.inquire-button:hover:before {
    width: 100%;
    /* On hover, expand the pseudo-element to cover the full width of the button */
    background: #4E544D;
    /* Change the background color to a new color */
}

.pavilion-book {
    position: absolute;
    top: -2%;
    right: 15%;
    padding: 8px 85px;
    font-size: 20px;
    background: #71c9ff;
    color: #F8F8F8;
    text-decoration: none;
    border-radius: 4px;
    z-index: 2;
    text-align: left;
}

/* The pseudo-element that will be animated */
.pavilion-book:before {
    content: "";
    /* Creates an empty pseudo-element (no text) */
    position: absolute;
    /* Position it absolutely inside the button */
    top: 0;
    /* Position it at the top edge of the button */
    left: 0;
    /* Position it at the left edge of the button */
    width: 0%;
    /* Initially, the pseudo-element has no width, so it's invisible */
    height: 100%;
    /* The pseudo-element will cover the full height of the button */
    background: rgb(230, 157, 191);
    /* The initial background color of the pseudo-element */
    transition: width 0.5s ease, background 0.5s ease;
    /* Smooth transition for width change and background color change */
    z-index: -1;
    /* Ensures the pseudo-element stays behind the text (so text is visible) */
}

/* Hover effect for the pseudo-element */
.pavilion-book:hover:before {
    width: 100%;
    /* On hover, expand the pseudo-element to cover the full width of the button */
    background: #5de9c6;
    /* Change the background color to a new color */
}

/* Overlaps Images */
.event-image-stack {
    display: flex;
    justify-self: flex-end;
    align-content: flex-start;
    flex-direction: column;
    position: relative;
    width: 100%;
    width: 690px;
    height: 810px;
    margin: 0;
}

.event-image-stack__item {
    position: absolute;
    transition: 0.3s ease;
}

/* Image Container */
.event-image-stack__item--top {
    top: 0%;
    left: 13%;
    width: 80%;
    height: 80%;
    margin: 0px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 2%;
}

.event-image-stack__item--top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}






@media screen and (max-width: 768px) {

    /*TOUR*/
    .tour {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .tour-image-stack {
        width: 100vw !important;
        height: 600px !important;
    }

    .tour-image-stack__item--top {
        top: 5%;
        left: 0%;
        width: 100%;
        height: 70%;
        margin: 0px;
        overflow: hidden;
        position: relative;
        z-index: 1;
        border-radius: 2%;
    }

    .event-container {
        width: 650px !important;
    }
    /* Side Nav */
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 16px;
    }

    .header {
        height: calc(75vh - 40px);
    }

    /* About Styling */
    .about {
        display: flex;
        flex-wrap: wrap;
        height: auto;
    }

    .about-content {
        width: 100%;
        height: 100%;
        margin: 0px 20px;
        text-align: center;
    }

    #about-title h2 {
        font-size: 37px;
    }

    #about-description p {
        font-size: 13px;
    }

    .header-content #header-title {
        font-size: 70px;
    }

    .header-content #header-subtitle {
        font-size: 16px;
    }

    /* About Book Button */
    .about-book {
        top: 3%;
        /* Position relative to parent */
        right: 37%;
        /* Shift right */
        padding: 10px 25px;
        writing-mode: horizontal-tb;
        font-size: 13px;
    }

    /* Pseudo-element used for hover effect */
    .about-book:before {
        position: absolute;
        top: 0;
        left: -100%;
        /* Initially places the pseudo-element completely to the left */
        width: 100%;
        height: 100%;
        transition: left 0.5s ease, background 0.5s ease;
        /* Smooth transition for position and background color */
    }

    /* Hover effect to slide from left to right */
    .about-book:hover:before {
        left: 0;
        /* Moves the pseudo-element into view from the left */
    }

    /* Rectangle Shape */
    .about-rectangle-shape,
    /* Top Image Container */
    .about-image-stack__item--top {
        display: none;
    }

    .about-image-stack {
        top: 20%;
        width: 750px;
        height: auto;
        /* Let image stack resize based on content */
    }

    /* Bottom Image Container */
    .about-image-stack__item--bottom {
        top: 20%;
        left: 0%;
        width: 100%;
        height: 350px;
        margin: 0px 0px 30px 10px;
        border-radius: 2%;
    }

    /* Room Styling */
    .room {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .room-content {
        width: 100%;
        text-align: center;
        justify-items: center;
        margin: 70px 0px 0px 0px;
    }

    #room-title h2 {
        font-size: 34px;
    }

    #room-description p {
        font-size: 13px;
        width: 100%;
        margin: 0px 10px;
    }

    .room-explore {
        top: 4%;
        left: 40%;
        position: absolute;
        padding: 10px 50px;
        font-size: 13px;
        /* Adjust for smaller screens */
        color: #F8F8F8;

    }

    .room-rectangle-shape,
    .room-image-stack__item--top {
        display: none;
    }

    /* Bottom Image Container */
    .room-image-stack__item--bottom {
        top: 20%;
        left: 0%;
        width: 100%;
        height: 350px;
        margin: 80px 10px 0px 10px;
        border-radius: 1%;
    }

    .room-image-stack {
        width: 750px;
        height: auto;
        /* Let image stack resize based on content */
    }

    .avail-button {
        font-size: 13px;
        padding: 8.78px 50px;
        margin-top: 25px;
    }

    /* Icon Styling */
    .icon-section {
        gap: 30px;
    }

    .icon-container {
        margin-bottom: 90px;
    }

    .icon-container p {
        font-size: 10px;
    }

    .icon-image #car-icon {
        width: 70px;
        height: 70px;
    }

    .icon-image #bed-icon {
        width: 40px;
        height: 65px;
    }

    .icon-image #meal-icon,
    .icon-image #wifi-icon,
    .icon-image #boat-icon {
        margin-top: 10px;
        width: 30px;
        height: 50px;
    }

    /* Cottage Container Styling */
    .cottage {
        display: flex;
        flex-direction: column-reverse;
        flex-wrap: wrap;
    }

    .cotage-image-container-left{
        display: none;
    }

    .cottage-container-left,
    .cottage-container-right {
        width: 96%;
        margin: 5px 3px;
    }

    /* Text Styling */
    .cottage-description {
        width: 100%;
        text-align: center;
        margin: 20px 0px;
    }

    .cottage-description p {
        font-size: 13px;
    }

    .cottage-title {
        width: 100%;
        /* Set width to 100% for better layout */
        text-align: center;

    }

    .cottage-title h2 {
        font-size: 36px;
        ;
    }

    /* Relax Button Styling */
    .relax {
        background-color: #71c9ff;
        padding: 4px 53px;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        text-decoration: none;
        color: #f8f8f8;
        font-size: 21px;
        margin-top: 30px;
        position: absolute;
        top: 12%;
        left: 40%;
        z-index: 2;
    }

    /* Rectangle Shape Styling */
    .cottage-rectangle-shape {
        display: none;
    }

    /* Image Container Styling */
    .cotage-image-container-left,
    .cotage-image-container-right {
        width: 100%;
    }


    /* Event Section Styling */
    .event {
        display: flex;
        flex-wrap: wrap;
        /* Wrap for responsiveness */
        flex-direction: column;
        justify-content: center;
        margin: 0px;
    }

    .event-content {
        width: 760px;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .event-container h2,
    .event-content p {
        width: 100%;
        margin-left: 0px;
    }

    .event-container h2 {
        font-size: 35px;
    }

    .event-content p {
        font-size: 13px;
    }

    /* Inquire Button Styling */
    .inquire-button {
        padding: 10px 40px;
        /* Adjust padding for desired size */
        margin-top: 30px;
        margin-bottom: 30px;
        margin-left: 0px;
        left: 10%;
    }

    .inquire-button p {
        font-size: 13px;
    }

    .pavilion-book {
        display: none;
    }

    /* Image Container */
    .event-image-stack__item--top {
        left: 1%;
        width: 750px;
        height: 350px;
    }
}


@media screen and (max-width:1024px) {
    .main h2 {
        font-size: 35px;
    }

    .main p {
        font-size: 14px;
    }

    .event-container {
        width: 50%;
    }

    .event-image-stack {
        width: 50%;
    }

    .pavilion-book {
        padding: 8px 55px;
    }

    .tour-container {
        padding: 0px;
        width: 450px;
        height: 100%;
    }

    .tour-image-stack {
        width: 500px;
        height: 600px;
    }
}



@media screen and (max-width: 425px) {
    .content-container{
        width: 425px !important;
    }
    .header {
        height: calc(55vh - 40px);
    }

    .header-content #header-title {
        font-size: 50px;
    }

    .header-content #header-subtitle {
        font-size: 12px;
    }
    .room-image-stack__item--bottom img {
        width: 100vw;
        height: 100%;
        object-fit: cover;
    }
    /* About Styling */
    .about {
        display: flex;
        flex-wrap: wrap;
        width: auto;
        height: auto;
        margin-top: 10px;
    }

    .about-content {
        width: 100%;
        height: 100%;
        margin: 3px;
        text-align: center;

    }

    #about-title h2 {
        font-size: 30px;
    }

    #about-description p {
        font-size: 11px;
    }

    /* About Book Button */
    .about-book {
        top: 3%;
        right: 50% !important;
        padding: 10px 25px;
        writing-mode: horizontal-tb;
        font-size: 11px;
    }

    /* Pseudo-element used for hover effect */
    .about-book:before {
        position: absolute;
        top: 0;
        left: -100%;
        /* Initially places the pseudo-element completely to the left */
        width: 100%;
        height: 100%;
        transition: left 0.5s ease, background 0.5s ease;
        /* Smooth transition for position and background color */
    }

    /* Hover effect to slide from left to right */
    .about-book:hover:before {
        left: 0;
        /* Moves the pseudo-element into view from the left */
    }

    /* Rectangle Shape */
    .about-rectangle-shape,
    /* Top Image Container */
    .about-image-stack__item--top {
        display: none;
    }

    .about-image-stack {
        top: 20%;
        width: 586px;
        height: auto;
        /* Let image stack resize based on content */
    }

    /* Bottom Image Container */
    .about-image-stack__item--bottom {
        top: 20%;
        left: 0%;
        width: 586px;
        height: 240px !important;
        margin: 0 !important ;
        border-radius: 2%;
    }

    /* Room Styling */
    .room {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .room-content {
        width: 100%;
        text-align: center;
        justify-items: center;
        margin: 70px 0px 0px 0px;
    }

    #room-title h2 {
        font-size: 30px;
        width: 390px;
    }

    #room-title h7 {
        font-size: 11px;
    }

    #room-description p {
        font-size: 11px !important;
        width: 400px !important;
        margin: 0px !important;
    }

    .room-explore {
        top: 4%;
        left: 20% !important;
        position: absolute;
        padding: 10px 50px;
        font-size: 11px;
        /* Adjust for smaller screens */
        color: #F8F8F8;

    }

    .room-rectangle-shape,
    .room-image-stack__item--top {
        display: none;
    }

    /* Bottom Image Container */
    .room-image-stack__item--bottom {
        top: 20%;
        left: 0%;
        width: 100%;
        height: 240px !important;
        margin-top: 10% !important;
        margin-left: 0px !important;
        border-radius: 1%;
    }

    .room-image-stack {
        width: 750px;
        height: auto;
        /* Let image stack resize based on content */
    }

    /* TOUR */
    #tour-title h2{
        font-size: 30px;
    }
    .tour-container {
        width: 100vw !important;
    }
    #tour-description {
        font-size: 14px;
        margin: 0px 0px 0px 8.5rem;
    }

    .tour-image-stack {
        height: 250px !important;
    }
    .tour-image-stack__item--top {
        height: 100%;
        margin: 0px;
    }

    .tour-inquire-button {
        display: flex;
        justify-self: center;
        border: 1px solid #4E544D;
        padding: 7px 26px;
        color: #4E544D;
        text-align: center;
        font-size: 12px;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease;
        margin-top: 22px;
        position: relative;
    }

    /* Cottage Container Styling */
    .cottage {
        display: flex;
        flex-direction: column-reverse;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .cottage-container-left,
    .cottage-container-right {
        width: 100vw;
        margin: 0;
    }

    /* Text Styling */
    .cottage-description {
        width: 100vw;
        text-align: center;
        display: flex;
        margin: 20px 0px;
    }

    .cottage-description p {
        font-size: 11px;
    }

    .cottage-title {
        width: 100%;
        text-align: center;
    }

    .cottage-title h2 {
        font-size: 25px;
    }

    /* Relax Button Styling */
    .relax {
        background-color: #71c9ff;
        padding: 4px 53px;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        text-decoration: none;
        color: #f8f8f8;
        font-size: 18px;
        margin-top: 30px;
        position: absolute;
        top: 16%;
        left: 30%;
        z-index: 2;
    }

    /* Rectangle Shape Styling */
    .cottage-rectangle-shape {
        display: none;
    }

    /* Image Container Styling */
    .cotage-image-container-left {
        margin-bottom: 0px;
    }

    .cotage-image-container-right {
        width: 100vw;

    }

    .cottage-title h7 {
        font-size: 11px;
    }


    /* Event Section Styling */
    .event {
        display: flex;
        flex-wrap: wrap;
        /* Wrap for responsiveness */
        flex-direction: column;
        justify-content: center;
        margin-top: 0px;
    }

    .event-content {
        width: 100vw;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    .event-container {
        width: 100vw !important;
    }

    .event-container h2 {
        font-size: 27px;
        width: 100vw;

    }

    .event-container h7 {
        margin-left: 0px;
        font-size: 11px;

    }

    .event-content p {
        width: 400px;
        font-size: 11px;
        width: 100%;

    }

    /* Inquire Button Styling */
    .inquire-button {
        padding: 8px 27px;
        margin-top: 30px;
        margin-bottom: 30px;
        margin-left: 0px;
        left: 2%;
    }

    .inquire-button p {
        font-size: 11px;
    }

    .pavilion-book {
        display: none;
    }

    /* Image Container */
    .event-image-stack__item--top {
        left: 0%;
        width: 100vw;
        height: 230px;
    }

    .event-image-stack {
        height: 310px;
    }
}

@media screen and (max-width: 375px) {
    .header {
        height: calc(55vh - 40px);
    }

    .header-content #header-title {
        font-size: 50px;
    }

    .header-content #header-subtitle {
        font-size: 12px;
    }

    .content-container {
        width: 375px !important;
    }

    #about-title h2 {
        font-size: 22px;
    }

    .about-book {
        right: 55% !important;
    }
    .about-image-stack__item--top img, .about-image-stack__item--bottom img {
        width: 100vw;
    }

    .room-content {
        width: 100vw;
        justify-items: normal; 
    }
    #room-title{
        width: 100vw;
    }
    #room-description p {
        font-size: 11px !important;
        width: 100vw !important;
        margin: 0px !important;
    }
    .room-explore {
        left: 15% !important;
    }
    #tour-title h7{
        font-size: 13px;
    }
    #tour-title h2 {
        font-size: 25px;
    }
    #tour-description {
        font-size: 13px;
        margin: 0px 0px 0px 8.5rem;
    }
    .event {
        margin-top: -60px;
    }
    .inquire-button {
        left: 1%;
    }
}

@media screen and (max-width: 320px) {
    .header {
        height: calc(40vh - 40px);
    }

    .content-container {
        width: 320px !important;
    }

    #about-title h2 {
        font-size: 22px;
    }

    .about-book {
        right: 59% !important;
    }
    .about-image-stack__item--top img, .about-image-stack__item--bottom img {
        width: 100vw;
    }

    .room-content {
        width: 100vw;
        justify-items: normal; 
    }
    #room-title h2 {
        font-size: 30px;
        width: 100vw;
    }
    #room-description p {
        font-size: 11px !important;
        width: 100vw !important;
        margin: 0px !important;
    }
    .room-explore {
        left: 11% !important;
    }
    #tour-title h7{
        font-size: 13px;
    }
    #tour-title h2 {
        font-size: 25px;
    }
    #tour-description {
        font-size: 13px;
        margin: 0px 0px 0px 8.5rem;
    }
    .event {
        margin-top: -60px;
    }
    .inquire-button {
        left: 1%;
    }

    .relax {
        background-color: #71c9ff;
        padding: 4px 53px;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        text-decoration: none;
        color: #f8f8f8;
        font-size: 18px;
        margin-top: 30px;
        position: absolute;
        top: 18%;
        left: 25%;
        z-index: 2;
    }
}