@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display+SC:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rochester&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    user-select: none;
}
html {
    scroll-behavior: smooth;
    width: 100vw;
    height: 100vh;
}


header {
    background-color: white;
    height: 64px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    border-bottom: .5px rgba(94, 94, 94, 0.218) solid;
}

.header_body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1216px;
    height: 100%;
    margin: auto;
}

.header_body nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    font-family: 'Poppins';
}
.logo {
    height: 40px;
    width: 40px;
}

.logo-container a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.logo-container a span {
    font-size: 24px;
    font-family: 'Pacifico';
    font-weight: bold;
    color: #3d3c41;
}

.header_body button {
    background-color: #3d3c41;
    color: #fdfcfe;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
}

.header_body button:hover {
    background-color: #ac966b;
    transition: background-color 0.3s ease-in-out;
}

.header_body button a {
    color: #fdfcfe;
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
}


#home {
    width: 100vw;
    height: fit-content;
    padding-bottom: 20px;
    background-image: url('/images/IMG_5072.jpg');
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.2);
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    margin: 0;
}

.hero {
    max-width: 1216px;
    margin: 0 auto;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-items: center;
    gap: 30px;
}

.hero h1 {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    color: #fefefc;
    margin-bottom: 24px;
    width: 60%;
}

.hero>p {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 20px;
    font-weight: normal;
    line-height: 28px;
    color: #fefefc;
    width: 60%;
    margin-bottom: 36px;
}

.four {
    display: flex;
    width: 60%;
    gap: 20px;
    justify-content: space-between;
}

.four div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 25%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 20px;
    gap: 15px;
}

.four div i {
    font-size: 24px;
    color: #3d3c41;
}

.four div span {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 14px;
    font-weight: 600;
}

.one {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 60%;
    height: fit-content;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 20px 0;
    gap: 20px;
}

.one p {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 18px;
    font-weight: 600;
    padding-left: 20px;
}

.one_one {
    display: flex;
    gap: 60px;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    padding-left: 20px;
}

.one_one div {
    display: flex;
    gap: 10px;
}

.one_one span {
    font-weight: normal;
}

.checkBtn {
    background-color: #b9997b;
    width: fit-content;
    padding: 20px;
    border-radius: 15px;
}

.checkBtn button {
    background-color: transparent;
    color: #fefefc;
    border: 0;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 18px;
}

.checkBtn a {
    color: #fefefc;
    text-decoration: none;
}

.checkBtn button:hover {
    cursor: pointer;
}

.checkBtn:hover {
    cursor: pointer;
    background-color: #ac966b;
}

#gallery {
    width: 100vw;
    height: fit-content;
    background-color: #f8f5eb;
    margin: 0;
    padding: 64px 0;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.gallery_body {
    max-width: 1216px;
    margin: 0 auto;
}

.gallery_body h2 {
    text-align: center;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
}

.grid_section {
    display: grid;
    width: 80%;
    margin: 0 auto;
    height: fit-content;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 350px 350px 350px;
    grid-template-areas:
        "One One Two"
        "One One Three"
        "Four Five Six";
    gap: 20px;
}
.grid_section #living {
    grid-area: One;
    position: relative;

}.grid_section #living::after {
    content: "Living Room";
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: rgb(0, 0, 0, .7);
    color: white;
    padding: 8px;
    border-radius: 10px;
}
#living img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

}
.grid_section #bd1 {
    grid-area: Two;
    position: relative;
}.grid_section #bd1::after {
    content: "First Bedroom";
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: rgb(0, 0, 0, .7);
    color: white;
    padding: 8px;
    border-radius: 10px;
}
#bd1 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;

}
.grid_section #bd2 {
    grid-area: Three;
    position: relative;
}.grid_section #bd2::after {
    content: "Second Bedroom";
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: rgb(0, 0, 0, .7);
    color: white;
    padding: 8px;
    border-radius: 10px;
}
#bd2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;

}

.grid_section #kitchen {
    grid-area: Four;
    position: relative;
}.grid_section #kitchen::after {
    content: "Kitchen";
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: rgb(0, 0, 0, .7);
    color: white;
    padding: 8px;
    border-radius: 10px;
}
#kitchen img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

}
.grid_section #bath {
    grid-area: Five;
    position: relative;
}.grid_section #bath::after {
    content: "Bathroom";
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: rgb(0, 0, 0, .7);
    color: white;
    padding: 8px;
    border-radius: 10px;
}
#bath img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

}
.grid_section #dining {
    grid-area: Six;
    position: relative;
}.grid_section #dining::after {
    content: "Dining Area";
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: rgb(0, 0, 0, .7);
    color: white;
    padding: 8px;
    border-radius: 10px;
}
#dining img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

}
.grid_section div {
    overflow: hidden;
    border-radius: 20px;
}
.grid_section img {
    width: 100%;
    height: auto;
    object-fit: fill;
}

.view_more_container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: flex-start;
    background-color: rgba(62, 61, 66, .9);
    color: #fefefc;
    z-index: 9999;
    overflow-y: auto;
}


#close_view_more {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 42px;
    line-height: 24px;
    color: #fefefc;
    cursor: pointer;
    padding: 5px 40px;
    background-color: transparent;
    border:#fefefc 1px solid;
    border-radius: 50px;
}

#close_view_more:hover {
    background-color: #ac966b;
    transition: background-color 0.3s ease-in-out;
}

.more_photos_container{
    width: 80%;
    margin-top: auto;
    padding: 40px 0;
    column-count: 4;
    column-gap: 10px;
    overflow-y: scroll;
}


.more_photos_container img{
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    margin: 5px 0;
}

.button_container{
    display: flex;
    justify-content: center;
    width: 100%;
    height: fit-content;
    padding: 20px 0;
}

#view_more:hover{
    cursor: pointer;
}

#view_more{
    padding: 10px 20px;
    border-radius: 20px;
    border:#3d3c41 1px solid;
    background-color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
}


#room_specs {
    width: 100vw;
    height: fit-content;
    margin: 0;
    padding: 64px 0;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.room_specs_body {
    max-width: 1216px;
    margin: 0 auto;
}

.room_specs_body h2 {
    text-align: center;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
}

.lower_portion {
    display: flex;
    gap: 40px;
    width: 100%;
}

.left_side,
.right_side {
    width: 50%;
    background-color: #f9fafc;
    height: fit-content;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.left_side > div {
    display: flex;
    gap: 20px;
}

.left_side > div:last-child {
    background-color: #e6e7e9;
    padding: 15px;
    border-radius: 10px;
}

.left_side > div > div > p:last-child {
    font-size: 14px;
    font-weight: 300;
}

.left_side > div > div > p:first-child {
    font-size: 16px;
    font-weight: 600;
}

.left_side > div:nth-child(3) > div > p:nth-child(2) {
    width: 60%;
}

.icon {
    background-color: #3d3c41;
    height: fit-content;
    border-radius: 50%;
    padding: 10px;
}

.right_side > div:not(.floor_plan) {
    display: flex;
    justify-content: space-between;
    border-bottom: rgba(128, 128, 128, 0.35) 1px solid;
}

.right_side > div > p {
    padding: 10px;
}

.floor_plan {
    border: rgba(128, 128, 128, 0.697) 2px dashed;
    width: 100%;
    height: 300px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
    gap: 20px;
    background-image: url('/images/floorplan.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.floor_plan p {
    font-weight: 300;
}

.right_side > div:last-child {
    border-bottom: none;
}

.right_side > div:not(.floor_plan) > p:last-child {
    font-weight: 600;
}

#amenities_features {
    width: 100vw;
    height: fit-content;
    margin: 0;
    padding: 64px 0;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    background-color: #f8f5eb;
}

.amenities_features_body {
    max-width: 1216px;
    margin: 0 auto;
}

.amenities_features_body h2 {
    text-align: center;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
}

.amenities_features_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
}

.amenities_features_grid div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 20px;
}

.amenities_features_grid div > div {
    background-color: #ebebeb;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.amenities_features_grid div > p:last-child {
    font-weight: 300;
    font-size: 14px;
}

.soon{
    position: relative;
}

.soon::after {
    content: "Coming Soon";
    position: absolute;
    top: 5px;
    left: 5px;
    width: fit-content;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    color: #d1624b;
    padding: 10px 20px;
}

.amenities_list {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
}

.amenities_list div {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
}

.amenities_list div i {
    color: #a37313;
    font-size: 20px;
}

.amenities_list div span {
    font-weight: normal;
    font-size: 16px;
}

#booking {
    width: 100vw;
    height: fit-content;
    margin: 0;
    padding: 64px 0;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.booking_body {
    max-width: 1216px;
    margin: 0 auto;
}

.booking_body h2 {
    text-align: center;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
}

.booking_form {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
}

.booking_form .booking_form_details,
.booking_form .booking_details {
    width: 50%;
    background-color: #f9fafc;
    height: fit-content;
    border-radius: 20px;
    padding: 40px;
    border: rgb(229, 231, 235, .2) 1px solid;
}

.booking_form_details {
    display: flex;
    flex-direction: column;
}

.booking_form_details h3 {
    margin-bottom: 24px;
    font-weight: 600;
    line-height: 28px;
}

.guest_details{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.guest_details label {
    font-size: 16px;
    font-weight: 600;
    color: rgb(55, 65, 81);
    display: block;
    margin-bottom: 10px;
}

.cost_calculator{
    font-size: 16px;
    font-weight: 600;
    color: rgb(55, 65, 81);
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
}

.guest_details input{
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: rgb(229, 231, 235) 1px solid;
    font-size: 16px;
    font-weight: 500;
    color: rgb(55, 65, 81);
}

.date-selector {
    display: flex;
    gap: 20px;
}

.date-selector div {
    width: 50%;
    height: fit-content;
}

.date-selector div > input {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: rgb(229, 231, 235) 1px solid;
    font-size: 16px;
    font-weight: 500;
    color: rgb(55, 65, 81);
    caret-color: transparent;
}

.date-selector div > input:hover {
    cursor: default;
}

.date-selector div > label {
    font-size: 16px;
    font-weight: 600;
    color: rgb(55, 65, 81);
    display: block;
    margin-bottom: 10px;
}

.guest-selector {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.guest {
    font-size: 14px;
    font-weight: 500;
    color: rgb(55, 65, 81);
    line-height: 20px;
}

.controls {
    display: flex;
    align-items: center;
}

.controls button {
    width: fit-content;
    height: fit-content;
    font-size: 18px;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 16px;
    border: rgb(229, 231, 235) 1px solid;
    font-size: 18px;
}

.controls #guests {
    width: fit-content;
    padding: 0 20px;
    margin-left: 12px;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    background-color: transparent;
    cursor: default;
}

.controls p {
    font-size: 14px;
    font-weight: 300;
    color: rgb(107, 114, 128);
    margin-left: 20px;
}

.cost_summary {
    display: flex;
    flex-direction: column;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    border: rgb(229, 231, 235) 1px solid;
    padding: 20px;
    margin-bottom: 5px;
}

.cost_summary_details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.cost_summary_details:not(:first-child) {
    padding: 5px 0;
    font-size: 14px;
    line-height: 20px;
    color: rgb(75, 85, 99);
}

.cost_summary_details:last-child {
    font-weight: 600;
    font-size: 14px;
    color: rgb(17, 24, 39);
    line-height: 20px;
}

.cost_summary_details:nth-child(3) {
    border-bottom: 1px solid rgb(229, 231, 235);
}

.cost_summary_details:first-child > p:first-child {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 30px;
}

.cost_summary_details:first-child > p:last-child {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 30px;
}

.check_availability {
    width: 100%;
    background-color: #3d3c41;
    color: #fefefc;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    cursor: pointer;
    margin: 0 auto;
    height: fit-content;
    text-align: center;
    text-decoration: none;
}

.check_availability:hover {
    background-color: #ac966b;
    transition: background-color 0.3s ease-in-out;
}

.disclaimer{
    font-size: 12px;
    color: rgb(107, 114, 128);
    margin-bottom:10px;
    text-align: start;
    font-style: italic;
}
.disclaimer span {
    font-weight: 700;
    color: rgb(107, 114, 128);
}
/* .booking_links{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;

} */

.or_book_via{
    width: 100%;
    text-align: center;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgb(75, 85, 99);
    font-size: 14px;
    font-weight: 400;
}

.or_book_via::after, .or_book_via::before {
    content: "";
    display: inline-block;
    width: 30%;
    height: 2px;
    background-color: rgb(216, 218, 222);
}

.booking_links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 600px;
  margin: auto;
}

.booking_links_item {
  flex: 1 1 45%;
  max-width: 200px;
  min-width: 80px;
  height: 50px;
  background: #ffffff;
  border-radius: 20px;
  border: rgb(229, 231, 235) 1px solid;
}

.booking_links_item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#booking_com {
    padding:0  30px;
}


.booking_details h3 {
    margin-bottom: 24px;
    font-weight: 600;
    line-height: 28px;
}

.booking_details h4 {
    margin: 20px 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.booking_details p {
    margin-top: 8px;
    color: rgb(75, 85, 99);
    font-weight: 200;
}

.allowed {
    color: green;
    font-size: 16px;
    margin-right: 20px;
    margin-left: 10px;
}

.disallowed {
    color: red;
    font-size: 16px;
    margin-right: 20px;
    margin-left: 10px;
}

.policy {
    margin-right: 20px;
    margin-left: 10px;
}

#location_and_access {
    width: 100vw;
    height: fit-content;
    margin: 0;
    padding: 64px 0;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    background-color: #f8f5eb;
}

.location_and_access_body {
    max-width: 1216px;
    margin: 0 auto;
}

.location_and_access_body h2 {
    text-align: center;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
}

.location_and_access_details {
    display: flex;
    gap: 40px;
    width: 100%;
}

.location_details {
    width: 50%;
    height: fit-content;
    border-radius: 20px;
    background-color: #fefefc;
    overflow: hidden;
    border: rgb(229, 231, 235) 1px solid;
}

.location_details div > iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.location_details div > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.location_details div > div p:first-child {
    font-size: 18px;
    font-weight: 600;
    color: rgb(17, 24, 39);
}

.location_details div > div a {
    font-size: 16px;
    font-weight: 500;
    color: rgb(17, 24, 39);
    text-decoration: none;
}

.location_details div > div a span > i {
    color: rgb(17, 24, 39);
    font-size: 12px;
    margin-left: 5px;
    cursor: pointer;
}

.location_details div > div a:hover {
    color: blue;
}

.location_details div > div a:hover span > i {
    color: blue;
}

.access_details{
    width: 50%;
    height: fit-content;
    padding: 0 20px;
}

.access_details h3 {
    font-size: 20px;
    font-weight: 600;
    color: rgb(17, 24, 39);
    margin-bottom: 30px;
}

.access_item {
    display: flex;
    align-items: start;
    gap: 15px;
    margin: 20px 0;
}

.access_item .icon {
    color: rgb(61, 60, 65);
    font-size: 16px;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(61, 60, 65, 0.1);
}

.access_text p{
    font-weight: 600;
    line-height: 20px;
    margin: 5px 0;
}

.access_text p:last-child{
    align-self: center;
}

.access_text p span, .access_text p.access_subtext {
    font-size: 15px;
    font-weight: 400;
    color: rgb(75, 85, 99)
}

#contact {
    width: 100vw;
    height: fit-content;
    margin: 0;
    padding: 64px 0;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.contact_body {
    max-width: 1216px;
    margin: 0 auto;
}
.contact_body h2 {
    text-align: center;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact_body> p{
    text-align: center;
}

.contact_details {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
    margin-top: 40px;
    padding: 40px 0;
}

.contact_item{
    width: fit-content;
    height: fit-content;
    border-radius: 20px;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.contact_icon{
    color: rgb(61, 60, 65);
    font-size: 24px;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(61, 60, 65, 0.1);
}

.contact_icon_red{
    color: rgb(220, 38, 38);
    font-size: 24px;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(254, 226, 226);
}

.contact_title{
    font-size: 16px;
    font-weight: 600;
    color: rgb(17, 24, 39);
}

.contact_info{
    font-weight: 400;
    color: rgb(107, 114, 128)
}

.contact_info2{
    color:rgb(75, 85, 99)
}

footer {
    width: 100%;
    height: fit-content;
    background-color: rgb(17, 24, 39);
    color: rgb(255, 255, 255);
    padding: 40px 0;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

footer a{
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.footer_body {
    width: 1216px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 32px;
    border-bottom: rgb(31, 41, 55) 1px solid;
}


.footer_links,
.footer_social,
.footer_policy{
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-items: flex-start;
}

.footer_logo{
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-items: flex-start;
}

.footer_logo a span {
    font-size: 24px;
    font-family: 'Pacifico';
    font-weight: bold;
    color: #fefefc;
}
.footer_logo p {
    font-size: 14px;
    font-weight: 400;
    color: rgb(156, 163, 175);
    width: 95%;
}

.footer_body h3{
    font-size: 16px;
    font-weight: 600;
    color: rgb(255, 255, 255);
}

.footer_body ul {
    list-style: none;
    padding: 0;
}

.footer_body ul li {
    margin-bottom: 10px;
}
.footer_body ul li a {
    font-size: 14px;
    font-weight: 400;
    color: rgb(156, 163, 175);
}

.footer_policy button {
    background-color: transparent;
    color: rgb(156, 163, 175);
    border: none;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}

.footer_last{
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 32px;
    font-size: 14px;
    font-weight: 400;
    color: rgb(156, 163, 175);
    margin-top: 20px;
}
.footer_last p {
    margin-bottom: 10px;
}
.footer_last a {
    color: rgb(156, 163, 175);
    text-decoration: none;
}
.footer_last a:hover {
    color: rgb(255, 255, 255);
    text-decoration: underline;
}


.modal-overlay,
.modal-overlay2,
.modal-overlay3,
.modal-overlay4 {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: none; /* hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-overlay p,
.modal-overlay2 p,
.modal-overlay3 p,
.modal-overlay4 p {
    margin: 20px 0;
    color:#3d3c41;
    font-size: 16px;
    text-align: start;
    line-height: 25px;
}

/* The modal box */
.modal,
.modal2,
.modal3,
.modal4 {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    color: #3d3c41;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}


/* Responsive Design */
/* Mobile devices */
@media (min-width: 0px) and (max-width: 640px) {
    header {
        width: 100vw;
    }
    .header_body {
        max-width: 640px;
        padding: 0 10px;
    }
    #home {
        background-size: cover;
    }

    .hero {
        width: 100vw;
        height: fit-content;
        gap: 20px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 36px;
        margin-bottom: 18px;
        width: 100%;
        text-align: center;
    }
    .hero>p {
        font-size: 18px;
        line-height: 18px;
        width: 100%;
        margin-bottom: 18px;
        text-align: center;
    }

    .four {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 0 20px;
    }

    .four div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.9);
        padding: 20px;
        border-radius: 20px;
        gap: 15px;
        height: fit-content;
    }

    .four div i {
        font-size: 20px;
        color: #3d3c41;
    }

    .four div span {
        font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
        font-size: 12px;
        font-weight: 600;
    }

    .one {
        width: 90%;
        border-radius: 16px;
        padding: 20px;
        align-items: space-between;
        gap: 18px;
        margin: 0 auto;
    }

    .one p {
        font-size: 16px;
        font-weight: 600;
        padding-left: 0px;
    }

    .one_one {
        gap:20px;
        padding-left: 0px;
    }

    .one_one div {
        gap: 10px;
    }

    .one_one span {
        font-weight: normal;
        font-size: 14px;
    }

    .checkBtn {
        margin-top: 30px;
        background-color:#3d3c41;
        align-self: center;
    }

    .gallery_body,
    .room_specs_body,
    .amenities_features_body,
    .booking_body,
    .location_and_access_body,
    .contact_body {
    width: 100%;
    margin: 0 auto;
    }

    .gallery_body h2,
    .room_specs_body h2,
    .amenities_features_body h2,
    .booking_body h2,
    .location_and_access_body h2,
    .contact_body h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 48px;
    }

    .grid_section{
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    .grid_section div {
    border-radius: 20px;
    width: 90vw;
    height: 30vh;
    margin: 0 auto;
    overflow: hidden;
    }
    .grid_section img {
    object-fit: cover;
    }
    .more_photos_container{
        width: 80%;
        margin-top: auto;
        padding: 40px 0;
        column-count: 2;
        column-gap: 10px;
        overflow-y: scroll;
    }

    .more_photos_container img{
        max-width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 20px;
        margin: 5px 0;
    }
    #close_view_more {
        position: fixed;
        top: 20px;
        right: 20px;
        font-size: 24px;
        line-height: 12px;
        color: #fefefc;
        cursor: pointer;
        padding: 5px 20px;
        background-color: transparent;
        border:#fefefc 1px solid;
        border-radius: 50px;
    }


    .lower_portion {
        display: flex;
        flex-direction: column;
        gap: 40px;
        width: 100%;
    }

    .left_side,
    .right_side {
        width: 90%;
        margin: 0 auto;
        background-color: #f9fafc;
        height: fit-content;
        border-radius: 20px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .left_side > div {
        display: flex;
        gap: 20px;
    }

    .left_side > div:last-child {
        background-color: #e6e7e9;
        padding: 15px;
        border-radius: 10px;
        font-size: 14px;
    }

    .left_side > div > div > p:last-child {
        font-size: 12px;
        font-weight: 300;
    }
    .left_side > div > div > p{
        font-size: 14px;
        font-weight: 400;
    }
    .left_side > div > div > p:first-child {
        font-size: 14px;
        font-weight: 600;
    }

    .left_side > div:nth-child(3) > div > p:nth-child(2) {
        width: 60%;
    }

    .floor_plan p {
        font-weight: 300;
        font-size: 14px;
    }

    .right_side > div:last-child {
        border-bottom: none;
    }

    .right_side > div:not(.floor_plan) > p:last-child {
        font-weight: 600;
        font-size: 14px;
    }
    .right_side > div:not(.floor_plan) > p:first-child {
        font-size: 14px;
    }

    .amenities_features_grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        width: 90vw;
        margin: 0 auto;
    }

    .amenities_features_grid div {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    .amenities_features_grid div > div {
        background-color: #ebebeb;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .amenities_features_grid div > p:last-child {
        font-weight: 300;
        font-size: 12px;
    }

    .amenities_list {
        font-size: 14px;
    }

    .booking_form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .booking_form .booking_form_details,
    .booking_form .booking_details {
        width: 90%;
        margin: 0 auto;
        padding: 20px;
    }

    .booking_form_details {
        display: flex;
        flex-direction: column;
    }

    .booking_form_details h3 {
        margin-bottom: 24px;
        font-weight: 600;
        line-height: 28px;
    }

    .date-selector div > label {
        font-size: 14px;
        font-weight: 600;
        color: rgb(55, 65, 81);
        display: block;
        margin-bottom: 10px;
    }

    .guest-selector {
        font-family: Arial, sans-serif;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    .guest {
        font-size: 12px;
    }

    .controls button {
        font-size: 16px;
    }

    .controls #guests {
        padding: 0px;
        margin-left: 20px;
    }

    .controls p {
        font-size: 14px;
        margin-left: 10px;
    }

    .cost_summary_details:not(:first-child) {
        padding: 5px 0;
        font-size: 14px;
        line-height: 14px;
    }

    .cost_summary_details:last-child {
        font-size: 14px;
        line-height: 14px;
    }


    .cost_summary_details:first-child > p:first-child {
        font-size: 16px;
    }

    .cost_summary_details:first-child > p:last-child {
        font-size: 18px;
    }

    .check_availability {
        font-size: 16px;
    }

    .booking_details h3 {
        margin-bottom: 24px;
        font-weight: 600;
        line-height: 16px;
    }

    .booking_details h4 {
        font-size: 14px;
        line-height: 14px;
    }

    .booking_details p {
        font-size: 14px;
        line-height: 14px;
    }

    .location_and_access_details {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .location_details {
        width: 90%;
        margin: 0 auto;
    }

    .location_details div > iframe {
        width: 100%;
        height: 400px;
        border: none;
    }

    .location_details div > div {
        gap: 10px;
    }

    .location_details div > div p:first-child {
        font-size: 16px;
    }
    .location_details div > div p{
        font-size: 14px;
    }
    .location_details div > div a {
        font-size: 14px;

    }

    .location_details div > div a span > i {
        font-size: 12px;
    }

    .access_details{
        width: 100%;
        margin-top: 40px;
    }

    .access_details h3 {
        font-size: 18px;
    }

    .access_text p{
        font-size: 16px
    }

    .access_text p span, .access_text p.access_subtext {
        font-size: 14px;
    }

    .contact_body > p{
        font-size: 14px;
        width: 80%;
        margin: -30px auto;
    }
    .contact_details {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        width: 90%;
        margin: 0 auto;
        padding: 20px 0;
        justify-items: center;
    }

    .contact_item{
        width: fit-content;
        height: fit-content;
        padding-top: 40px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .contact_title{
        font-size: 14px;
    }

    .contact_info{
        font-size: 12px;
    }

    .contact_info2{
        font-size: 12px;
        text-align: center;
    }

    .footer_body {
        width: 100vw;
        flex-direction: column;
        align-items: flex-start;
    }


    .footer_links,
    .footer_social,
    .footer_policy{
        width: 100%;
        height: fit-content;
        gap: 20px;
    }

    .footer_logo{
        width: 100%;
        height: fit-content;
        margin-bottom: 40px;
    }

    .footer_logo p {
        font-size: 12px;

    }

    .footer_body h3{
        font-size: 14px;
    }

    .footer_body ul li {
        margin-bottom: 10px;
    }
    .footer_body ul li a {
        font-size: 12px;
    }

    .footer_last{
        width: 100vw;
    }
}

@media (min-width: 641px) and (max-width: 768px) {
    header {
        width: 100vw;
    }
    .header_body {
        width: 100vw;
        padding: 0 20px;
    }
    #home {
        background-size: cover;
    }

    .hero {
        width: 80vw;
        height: fit-content;
        gap: 20px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 36px;
        margin-bottom: 18px;
        width: 100%;
        text-align: center;
    }
    .hero>p {
        font-size: 18px;
        line-height: 18px;
        width: 100%;
        margin-bottom: 18px;
        text-align: center;
    }

    .four {
        width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        padding: 0 20px;
    }

    .four div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.9);
        padding: 20px;
        border-radius: 20px;
        gap: 15px;
        height: fit-content;
    }

    .four div i {
        font-size: 20px;
        color: #3d3c41;
    }

    .four div span {
        font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
        font-size: 12px;
        font-weight: 600;
    }

    .one {
        width: 90%;
        border-radius: 16px;
        padding: 20px;
        align-items: space-between;
        gap: 18px;
        margin: 0 auto;
    }

    .checkBtn {
        margin-top: 30px;
        background-color:#3d3c41;
        align-self: center;
    }

    .gallery_body {
    width: 100%;
    margin: 0 auto;
    }
    .grid_section {
        width: 100%;
    }
    .more_photos_container{
        width: 80%;
        margin-top: auto;
        padding: 40px 0;
        column-count: 3;
        column-gap: 10px;
        overflow-y: scroll;
    }

    .more_photos_container img{
        max-width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 20px;
        margin: 5px 0;
    }
    #close_view_more {
        position: fixed;
        top: 20px;
        right: 20px;
        font-size: 32px;
        line-height: 16px;
        color: #fefefc;
        cursor: pointer;
        padding: 5px 30px;
        background-color: transparent;
        border:#fefefc 1px solid;
        border-radius: 50px;
    }

    .contact_details {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        width: 90%;
        margin: 0 auto;
        padding: 20px 0;
        justify-items: center;
    }

    .contact_item{
        width: fit-content;
        height: fit-content;
        padding-top: 40px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .contact_title{
        font-size: 14px;
    }

    .contact_info{
        font-size: 12px;
    }

    .contact_info2{
        font-size: 12px;
        text-align: center;
    }

    #contact,
    #location_and_access,
    #booking,
    #amenities_features,
    #room_specs,
    #gallery {
        width: 100vw;
        height: fit-content;
        margin: 0;
        padding-left: 20px;
        padding-right: 20px;
    }


    .footer_body {
        width: 100vw;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0 32px;
        border-bottom: rgb(31, 41, 55) 1px solid;
    }

    .footer_last{
        width: 100vw;
    }

    .footer_links,
    .footer_social,
    .footer_policy{
        width: 25%;
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-items: flex-start;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    header {
        width: 100vw;
    }
    .header_body {
        width: 100vw;
        padding: 0 20px;
    }
    #home {
        background-size: cover;
    }

    .hero {
        width: 80vw;
        height: fit-content;
        gap: 20px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 36px;
        margin-bottom: 18px;
        width: 100%;
        text-align: center;
    }
    .hero>p {
        font-size: 18px;
        line-height: 18px;
        width: 100%;
        margin-bottom: 18px;
        text-align: center;
    }

    .four {
        width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        padding: 0 20px;
    }

    .four div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.9);
        padding: 20px;
        border-radius: 20px;
        gap: 15px;
        height: fit-content;
    }

    .four div i {
        font-size: 20px;
        color: #3d3c41;
    }
    .four div span {
        font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
        font-size: 12px;
        font-weight: 600;
    }
    .one {
        width: 90%;
        border-radius: 16px;
        padding: 20px;
        align-items: space-between;
        gap: 18px;
        margin: 0 auto;
    }
    .checkBtn {
        margin-top: 30px;
        background-color:#3d3c41;
        align-self: center;
    }
    .gallery_body {
        width: 100%;
        margin: 0 auto;
    }
    .grid_section {
        width: 100%;
    }
    #contact,
    #location_and_access,
    #booking,
    #amenities_features,
    #room_specs,
    #gallery {
        width: 100vw;
        height: fit-content;
        margin: 0;
        padding-left: 20px;
        padding-right: 20px;
    }


    .footer_body {
        width: 100vw;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0 32px;
        border-bottom: rgb(31, 41, 55) 1px solid;
    }

    .footer_last{
        width: 100vw;
    }

    .footer_links,
    .footer_social,
    .footer_policy{
        width: 25%;
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-items: flex-start;
    }
}

@media (min-width: 1025px) and (max-width: 1216px) {
    #contact,
    #location_and_access,
    #booking,
    #amenities_features,
    #room_specs,
    #gallery,
    #home,
    .footer_body,
    .footer_last {
        width: 100vw;
        height: fit-content;
        margin: 0;
        padding-left: 20px;
        padding-right: 20px;
    }
}