* {
    font-family: 'Kumbh Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Home page */

.navbar {
    /*background: #131313; */
    background: linear-gradient(to top, #2d08ff 0%, #99daff 100%);
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

a {
    text-decoration: none;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 80px;
}

#navbar__logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    background-color: #ff8177;
    background-image: linear-gradient(to top, #ff0844 0%, #ffb199 100%);
    background-size: 100%;
    font-family: 'Grey Qo', cursive;
    font-weight: 600;
    font-size: 2.9rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.fa-home {
    font-size: 2.0rem;
    margin-right: 0.75rem;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item {
    height: 40px;
}

.navbar__links {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 0.5rem;
    height: 100%;
}

.navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0.5rem;
    width: 100%;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #f77062;
    color: #fff;
}

.button:hover {
    background: #4837ff;
    transition: all 0.3s ease;
}

.navbar__links:hover {
    color: #f77062;
    transition: all 0.3s ease;
}

.navbar__lang {
    padding: 0 15px;
    padding-top: 32px;
    position: relative;
}

.selected__lang {
    cursor: pointer;
    display: flex;
    color: #fff;
    justify-content: space-between;
    line-height: 1;
    width: 65px;
}

.selected__lang:before {
    content: '';
    display: block;
    color: #fff;
    width: 30.5px;
    height: 19.5px;
}

.navbar__lang ul {
    margin: 0;
    padding: 0;
    background-color: #fff;
    border: 1px solid #f8f8f8;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    display: none;
    position: absolute;
    top: 60px;
    left: 0px;
}

.navbar__lang ul li {
    list-style: none;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f8f8f8;
}

.navbar__lang ul li a {
    width: 90px;
    display: block;
    padding: 5px 10px;
}

.navbar__lang ul li a:before {
    content: '';
    display: inline-block;
    width: 30.5px;;
    height: 19.5px;
    margin-right: 10px;
    vertical-align: middle;
}

.navbar__lang ul li a:hover {
    background-color: #f2f2f2;
}

.selected__lang#DE:before, .DE:before {
    background-image: url('/ferienhaus/images/DE.jpg');
    background-size: cover; /* Ensure the image covers the area proportionally */
}

.selected__lang#EN:before, .EN:before {
    background-image: url('/ferienhaus/images/EN.jpg');
    background-size: cover; /* Ensure the image covers the area proportionally */
}

.selected__lang#FR:before, .FR:before {
    background-image: url('/ferienhaus/images/FR.jpg');
    background-size: cover; /* Ensure the image covers the area proportionally */
}

.selected__lang#IT:before, .IT:before {
    background-image: url('/ferienhaus/images/IT.jpg');
    background-size: cover; /* Ensure the image covers the area proportionally */
}

.navbar__lang:hover ul {
    display: block;
}

@media screen and (max-width: 78.75rem) {
    
    .navbar {
        font-size: 1.0rem;
    }
    
    #navbar__logo {
        font-size: 2.5rem;
    }

    .fa-home {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 68rem) {
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
        margin: auto;
    }

    .navbar__lang {
        margin-right: 80px;
        padding-top: 28px;
    }

    /* Drop-down menu when display is too small */
    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0 auto;
        width: 100%;
        position: absolute;
        top: -1000px;
        transition: all 0.5s ease;
        height: 90vh;
        z-index: -1;
        background: #131313;
    }

    .navbar__menu.active {
        background: #131313;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 90hv;
        font-size: 1.2rem;
    }

    #navbar__logo {
        padding-left: 25px;
    }

    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }

    .navbar__item {
        width: 100%;
    }

    .navbar__links {
        text-align: center;
        padding: 0.5rem;
        width: 100%;
        display: table;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__btn {
        padding-bottom: 2rem;
    }

    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0;
    }

    .navbar__toggle .bar {
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media screen and (max-width: 35rem) {
    #navbar__logo {
        font-size: 2.0rem;
    }

    .fa-home {
        font-size: 1.5rem;
    }
    
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }
    /* Drop-down menu when display is too small */
    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        transition: all 0.5s ease;
        height: 90vh;
        z-index: -1;
        background: #131313;
    }

    .navbar__menu.active {
        background: #131313;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 90hv;
        font-size: 1.2rem;
    }

    #navbar__logo {
        padding-left: 25px;
    }

    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }

    .navbar__item {
        width: 100%;
    }

    .navbar__links {
        text-align: center;
        padding: 0.5rem;
        width: 100%;
        display: table;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__btn {
        padding-bottom: 2rem;
    }

    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0;
    }

    .navbar__toggle .bar {
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Hero Section CSS */
.main__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    min-height: 60vh;
    background-color: #d8f7ff;
    background-image: linear-gradient(to top, #d8f7ff 0%, #ffb7b7 100%);
    width: 100%;
    padding: 4rem 3rem;
    box-sizing: border-box;
}

.main__container h1 {
    font-family: 'Grey Qo', cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 6rem;
    background-color: #ff8177;
    background-image: linear-gradient(to right, #b12a5b 0%, #fa7566 21%, #dd4a3a 52%, #f57d93 78%, #91234b 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 5rem;
    margin-top: 2rem;
}

/* Two-column layout */
.main__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 1300px;
    padding: 2rem auto;
}

.award__img--container, .main__img--container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.main__container p {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6fa5d8;
    /* text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5); */
    text-align: center;
}

#award__img {
    width: 100%;
    max-width: 15rem;
    height: auto;
}

#main__img {
    width: 100%;
    max-width: 25rem;
    height: auto;
}

.main__container p {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6fa5d8;
    text-align: center;
}

/* Mobile Responsive */
@media screen and (max-width: 60rem) {
    .main__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .main__container {
        padding: 1rem 3rem;
    }

    .main__container h1 {
        font-size: 4rem;
    }

    .main__content {
        text-align: center;
        margin-bottom: 4rem;
        padding: 1rem auto;
    }

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

    .main__btn {
        /*font-size: 1.5rem;*/
        padding: 12px 32px;
        margin: 2.5rem 0;
    }
}

@media screen and (max-width: 35rem) {

    .main__container {
        padding: 0rem 3rem;
    }
    
    .main__container h1 {
        font-size: 3rem;
    }

    .main__content p {
        font-size: 1.0rem;
    }

    .main__btn {
        /*font-size: 1.5rem;*/
        padding: 12px 36px;
        margin: 2.5rem 0;
    }
}

/* Review bar Section */
.index__review {
    background-image: linear-gradient(to top, #d8f7ffff 0%, #d8f7ffff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
    padding-bottom: 2rem;
}

.index__review a {
    color: #fff;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #f77062;
    top: 220px;
    left: 30px;
    font-size: 1.5rem;
    cursor: pointer;
}

.index__review a:hover {
    background: #b15146;
}

/* Mobile Responsive Review Section */
@media screen and (max-width: 60rem) {
    .index__Review {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .index__review a {
        font-size: 1.5rem;
        top: 2rem;
        left: 20px;
        padding: 5px 10px;
    }
}

@media screen and (max-width: 35rem) {

    .index__review a {
        font-size: 1rem;
    }

    .index__review p {
        font-size: 0.8rem;
    }
}

/* Services Section CSS */
.services {
    background-image: linear-gradient(to top, #b4f2ff 0%, #d8f7ffff 100%);
    /*background-color: #141414; */
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100hv;
}

.services h1 {
    font-family: 'Grey Qo', cursive;
    font-weight: 400;
    font-style: normal;
    background-color: #ff8177;
    background-image: linear-gradient(to right, #ff8177 0%, #ff867a 0%, #ff8c7f 21%, #f99185 52%, #cf556c 78%, #b12a5b 100%);
    background-size: 100%;
    margin-bottom: 4rem;
    font-size: 4rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.services__container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.services__card {
    margin: 2rem;
    height: 350px;
    width: 400px;
    border-radius: 4px;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(17, 17, 17, 0.6) 100%),
    url('/ferienhaus/images/Grotto/IMG_4659.png');
    background-size: cover;
    position: relative;
    color: #fff;
}

.services__card:nth-child(2) {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(17, 17, 17, 0.6) 100%),
    url('images/Grotto/IMG_3159.png');
}

.services__card:nth-child(3) {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(17, 17, 17, 0.6) 100%),
    url('/ferienhaus/images/Grotto/IMG_3128.png');
}

.services__card:nth-child(4) {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(17, 17, 17, 0.6) 100%),
    url('/ferienhaus/images/Grotto/ponte_dei_salti.jpg');
}

.services h2 {
    position: absolute;
    top: 150px;
    left: 30px;
}

.services__card p {
    position: absolute;
    top: 180px;
    left: 30px;
}

.services__card a {
    color: #fff;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #f77062;
    position: absolute;
    top: 220px;
    left: 30px;
    font-size: 1.5rem;
    cursor: pointer;
}

.services__card:hover {
    transform: scale(1.075);
    transition: 0.2s ease-in;
    cursor: pointer;
}

@media screen and (max-width: 60rem) {
    .services {
        height: 1900px;
    }

    .services h1 {
        font-size: 3rem;
        margin-top: 5rem;
    }
}

@media screen and (max-width: 35rem) {
    .services {
        height: 1500px;
    }

    .services h1 {
        font-size: 2.5rem;
        margin-top: 2.5rem;
    }

    .services__card {
        height: 250px;
        width: 300px;
        margin-bottom: 2rem;
        margin-top: 2rem;
    }

    .services h2 {
        top: 120px;
        left: 30px;
        font-size: 1.4rem;
    }
    
    .services__card p {
        top: 150px;
        left: 30px;
        font-size: 0.8rem;
    }
    
    .services__card a {
        font-size: 1rem;
        top: 180px;
        left: 30px;
    }
}

/* Book now container */
.book__container {
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: center;       /* center vertically if container has height */
  padding: 40px 30px;        /* spacing around */
  background: #b4f2ff;       /* light background, adjust as needed */
}

.book__button .button {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #ff7e5f, #feb47b); /* gradient look */
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  transition: all 0.5s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Hover Effect */
.book__button .button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #feb47b, #ff7e5f);
}

/* Active (click) effect */
.book__button .button:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 60rem) { /* ~960px */

    .book__button {
        max-width: 100%; /* full width on small screens */
    }

    .book__button .button {
        padding: 12px 24px;
        width: 100%;
    }
}

@media (max-width: 35rem) { /* ~480px */

    .book__container {
        padding: 20px 30px;
    }

    .book__button {
    max-width: 100%; /* full width on small screens */
    }

    .book__button .button {
    font-size: 1.5rem;
    padding: 12px 18px;
    }
}

/* Resources Section */

.resources {
  padding: 40px 20px;
  background: #b4f2ff;
}

.resources__container {
    text-align: center;
    margin: 20px auto;
    max-width: 900px;
}

.resources__container h1 {
    font-family: 'Grey Qo', cursive;
    font-weight: 400;
    font-style: normal;
    background-color: #ff8177;
    background-image: linear-gradient(to right, #ff8177 0%, #ff867a 0%, #ff8c7f 10%, #f99185 41%, #cf556c 65%, #b12a5b 100%);
    background-size: 100%;
    margin-bottom: 2rem;
    font-size: 4rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.resources__container h2 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 30px;
  color: #686868;
}

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

.resources__container li {
  margin: 15px 0;
}

.resources__container a {
  display: inline-flex;
  align-items: center;
  font-size: 1.1rem;
  text-decoration: none;
  color: #0080ff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.resources__container a i {
  margin-right: 10px;
  font-size: 1.3rem;
  color: #0080ff;
}

.resources__container a:hover {
  color: #004d9b;
}

.resources__container a:hover i {
  color: #004d9b;
}

.brand-icon {
  width: 6rem;
  height: auto;
  margin-right: 10px;
  vertical-align: middle;
}

@media screen and (max-width: 60rem) {

    .resources__container h1 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 35rem) {

    .resources__container h1 {
        font-size: 2.5rem;
    }
    
    .resources__container h2 {
        font-size: 0.8rem;
    }

    .brand-icon {
        width: 5rem;
    }

    .resources__container a {
        font-size: 0.8rem;
    }
}

/* Footer Section CSS */
.footer__container {
    background-color: #141414;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#footer__logo {
    font-family: 'Grey Qo', cursive;
    white-space: nowrap;
    font-weight: 600;
    font-size: 2.9rem;
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}

.footer__links {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
}

.footer__link--wrapper {
    display: flex;
}

.footer__link--items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px;
    text-align: left;
    width: 160px;
    box-sizing: border-box;
}

.footer__link--items h2 {
    margin-bottom: 16px;
}

.footer__link--items > h2 {
    color: #fff;
}

.footer__link--items a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer__link--items a:hover {
    color: #e9e9e9;
    transition: 0.3s ease-out;
}

/* Social Icons */
.social__icon--link {
    color: #fff;
    font-size: 24px;
}

.social__icons i {
    color: #fff;
}

.social__media {
    max-width: 1000px;
    width: 100%;
}

.social__media--wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    margin: 40px auto 0 auto;
}

.social__icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 240px;
}

.social__logo {
    color: #fff;
    justify-self: start;
    margin-left: 20px;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.website__rights {
    text-align:center;
    color: #fff;
    font-size: 1.0rem;
}

@media screen and (max-width: 60rem) {
    .footer__links {
        padding-top: 2rem;
    }

    #footer__logo {
        margin-bottom: 2rem;
    }

    .website__rights {
        margin-bottom: 2rem;
        font-size: 0.8rem;
    }

    .footer__link--wrapper {
        flex-direction: column;
    }

    .social__media--wrap {
        flex-direction: column;
    }
}

@media screen and (max-width: 35rem) {
    .footer__link--items {
        margin: 0;
        padding: 10px;
        width: 100%;
    }
    /*
    .footer__link--items h2 {
        margin-bottom: 1rem;
    }

    .social__media--wrap {
        flex-direction: column;
    }

    .social__icons {
        width: 100%;
    }
    */
}

/* Scroll to Top Button */
/*
.scrollup {
    width: 40px;
    height: 40px;
    background: #f77062;
    position: fixed;
    bottom: 40px;
    right: 40px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    display: none;
    cursor: pointer;
}

.scrollup:hover {
    background: #4837ff;
}
*/

/* Video Section */
.video {
    background: linear-gradient(to top, #d3bcff 0%, #b4f2ff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 600px;
}

.video h1 {
    font-family: 'Grey Qo', cursive;
    font-weight: 400;
    font-style: normal;
    background-color: #ff8177;
    background-image: linear-gradient(to right, #ff8177 0%, #ff867a 0%, #ff8c7f 21%, #f99185 52%, #cf556c 78%, #b12a5b 100%);
    background-size: 100%;
    margin-top: 3rem;
    margin-bottom: 2rem;
    font-size: 4.5rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.video__container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.video__card {
    margin: 2rem;
    height: 285px;
    width: 500px;
    border-radius: 4px;
    /*background-size: cover;*/
    position: relative;
}

@media screen and (max-width: 60rem) {
    .video {
        height: 800px;
    }

    .video h1 {
        font-size: 4rem;
        margin-top: 3rem;
    }

    .video__container {
        flex-direction: column;
    }

    .video__card {
        height: 255px;
        width: 450px;
    }

}

@media screen and (max-width: 35rem) {
    .video {
        height: 600px;
    }

    .video h1 {
        font-size: 3rem;
        margin-top: 2.5rem;
    }

    .video__container {
        flex-direction: column;
    }

    .video__card {
        height: 170px;
        width: 300px;
    }

}

/* Contact Form Section */

.form {
    background: linear-gradient(to top, #c5a8ff 0%, #d3bcff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 3rem;
}

.form h1 {
    font-family: 'Grey Qo', cursive;
    font-weight: 400;
    font-style: normal;
    background-color: #ff8177;
    background-image: linear-gradient(to right, #ff8177 0%, #ff867a 0%, #ff8c7f 10%, #f99185 41%, #cf556c 65%, #b12a5b 100%);
    background-size: 100%;
    margin-top: 3rem;
    margin-bottom: 2rem;
    font-size: 4.5rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.form__container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 40%;
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}

.form__container button {
    background-color: #f77062;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1rem;
    font-size: 1.5rem;
}

.form__container button:hover {
    background-color: #bd5246;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1rem;
}

.form__container input[type='text'],
.form__container input[type='email'],
.form__container textarea,
.form__container select {
    width: 100%; /* Ensure elements do not exceed container width */
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding and borders in width */
    margin: 10px 0; /* Add consistent spacing */
    resize: vertical;
    max-width: 100%; /* Prevent overflow */
}

.g-recaptcha {
    width: 100%; /* Fit recaptcha within container */
    max-width: 100%; /* Prevent overflow */
    margin-top: 1.5rem; /* Add spacing around the widget */

}

@media screen and (max-width: 60rem) {
    .form__container {
        width: 80%;
    }

    .form h1 {
        font-size: 3rem;
        margin-top: 3rem;
    }

    .form__container label, .form__container input {
        font-size: 1.0rem;
    }
}

@media screen and (max-width: 35rem) {
    .form__container {
        width: 90%;
    }

    .form h1 {
        font-size: 2.5rem;
        margin: 1rem;
    }

    .form__container label, .form__container input {
        font-size: 0.8rem;
    }

    .form__container button {
        font-size: 1.0rem;
    }
}

/* Description page */
.description__container {
    background: linear-gradient(to top, #99eeff 0%, #fff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.description__container h1 {
    font-family: 'Grey Qo', cursive;
    font-weight: 400;
    background-color: #ff8177;
    background-image: linear-gradient(to right, #b12a5b 0%, #cf556c 21%, #f99185 52%, #ff8c7f 78%,#ff867a 100%);
    background-size: 100%;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 3rem;
    font-size: 4.5rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.description__container h2 {
    font-family: 'Grey Qo', cursive;
    font-weight: 400;
    font-size: 3rem;
    background-color: #ff8177;
    background-image: linear-gradient(to top, #b721ff 0%, #21d4fd 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.description__container h3 {
    text-align: center;
    max-width: 32rem;
    margin-top: 1rem;
    font-size: 1.5rem;
    /* font-weight: 700; */
    /*color: #fff;*/
}

#house-rules h3, #spa-rules h3, #validity-of-rules h3, #cancellation-policy h3 {
    text-align: left;
}

.description__container p {
    margin-top: 1rem;
    font-size: 1.0rem;
    /* font-weight: 700; */
    /*color: #fff;*/
}

.description__text ul {
    list-style-type: disc;
    padding: 1rem;
    padding-left: 3rem;
}

.description__text ul li {
    /* background: url('check.png') no-repeat left center;
    background-size: 20px; */
    font-size: 1.0rem;
    padding: 5px;
}

.highlight {
    font-weight: bold;
    color: #cc1414;
}

.description__container--body {
    display: flex;
    flex-wrap: wrap;
    background: white;
    padding: 20px;
    margin: 100px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0.1, 0.2);
    width: 800px;
}

.description__text {
    flex: 1;
    padding-left: 1rem;
}

.description__images {
    display: flex;
    flex-direction: column;
    justify-content: right;
    align-items: center;
}

.description__images--item {
    display: flex;
    flex-direction: column;
    justify-content: right;
    align-items: center;
    padding-top: 10rem;
    padding-right: 1rem;
}

.description__images img {
    width: 300px;
    height: 200px;
    margin: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.description__images--item img {
    width: 300px;
    height: 200px;
    margin-left: 1rem;
    margin-bottom: 5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Book Now Button */
.description__container .book__container {
  background: #99eeff;
}

@media screen and (max-width: 60rem) {

    .description__container--body {
        display: flex;
        flex-direction: column;
        padding: 20px;
        margin: 50px;
        margin-bottom: 20px;
        box-shadow: 0 0 20px rgba(0, 0, 0.1, 0.2);
        width: 500px;
    }

    .description__images {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .description__images--item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 2rem;
    }

    .description__images--item img {
        margin: 1rem;
    }

    .description__container h1 {
        font-size: 3.0rem;
        margin-bottom: 1.0rem;
    }

    .description__container h2 {
        text-align: center;
        font-size: 2.5rem;
    }

    .description__container h3 {
        font-size: 1.2rem;
    }

    #house-rules h3, #spa-rules h3, #validity-of-rules h3 #cancellation-policy h3 {
        text-align: center;
    }

    .description__container p {
        text-align: center;
    }

    .description__text {
        padding-right: 1rem;
    }

    .description__text ul {
        padding-left: 4rem;
    }

    .description__text ul li {
        padding: 5px;
        font-size: 1rem;
    }

    .description__images--item {
        padding-right: 0rem;
    }
}

@media screen and (max-width: 35rem) {
    .description__container--body {
        margin: 25px;
        width: 400px;
        justify-content: center;
        align-items: center;
    }

    .description__container h1 {
        font-size: 2.5rem;
        margin-top: 1.0rem;
    }

    .description__container h2 {
        font-size: 2rem;
    }

    .description__container h3 {
        max-width: 23rem;
        font-size: 1.0rem;
    }

    .description__container p, .description__text ul li {
        font-size: 0.8rem;
    }
}

/* Price Section CSS */
.price__container {
    background: linear-gradient(to top, #99eeff 0%, #fff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    /*height: 100hv;*/
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

#price-title {
    font-family: 'Grey Qo', cursive;
    font-weight: 400;
    font-style: normal;
    background-color: #ff8177;
    background-image: linear-gradient(to right, #b12a5b 0%, #cf556c 21%, #f99185 52%, #ff8c7f 78%,#ff867a 100%);
    background-size: 100%;
    margin-top: 2rem;
    margin-bottom: 3rem;
    font-size: 4.5rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.price__container h2 {
    font-family: 'Grey Qo', cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
    background-color: #ff8177;
    background-image: linear-gradient(to top, #b721ff 0%, #21d4fd 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.price__container h3 {
    text-align: center;
    max-width: 32rem;
    margin-top: 1rem;
    font-size: 1.5rem;
    /* font-weight: 700; */
    /*color: #fff;*/
}

.price__container p {
    margin-top: 1rem;
    font-size: 1.0rem;
    padding-right: 1rem;
    padding-left: 1rem;
    /* font-weight: 700; */
    /*color: #fff;*/
}

.price__container--body {
    display: flex;
    flex-wrap: wrap;
    background: white;
    padding: 20px;
    margin: 100px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0.1, 0.2);
    width: 800px;
}

/* .price__text {
    flex: 1;
    padding-right: 20px;
} */

.price__text ul {
    list-style-type: disc;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-right: 1rem;
    padding-left: 3rem;
}

.price__text ul li {
    /* background: url('check.png') no-repeat left center;
    background-size: 20px; */
    font-size: 1.0rem;
    padding: 5px;
}

/* Book Now Button */
.price__container .book__container {
  background: #99eeff;
}

@media screen and (max-width: 60rem) {

    .price__container--body {
        display: flex;
        flex-direction: column;
        padding: 20px;
        margin: 50px;
        margin-bottom: 20px;
        box-shadow: 0 0 20px rgba(0, 0, 0.1, 0.2);
        width: 500px;
    }

    #price-title {
        font-size: 3.0rem;
        margin-bottom: 1.0rem;
    }

    .price__container h2 {
        text-align: center;
        font-size: 2.5rem;
    }

    .price__container h3 {
        font-size: 1.2rem;
    }

    .price__container p {
        text-align:center;
    }

    .price__text ul {
        padding-left: 4rem;
    }

    .price__text ul li {
        padding: 5px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 35rem) {
    .price__container--body {
        margin: 25px;
        width: 400px;
        justify-content: center;
        align-items: center;
    }

    #price-title {
        font-size: 2.5rem;
        margin-top: 1.0rem;
    }

    .price__container h2 {
        font-size: 2rem;
    }

    .price__container h3 {
        max-width: 23rem;
        font-size: 1.0rem;
    }

    .price__container p, .price__text ul li {
        font-size: 0.8rem;
    }

    .price__text ul {
        padding-left: 3rem;
    }
}

/* Gallery Section CSS */
.w3-content {
    background: linear-gradient(to top, #99eeff 0%, #fff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    /*height: 100hv;*/
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.w3-content h1 {
    font-family: 'Grey Qo', cursive;
    font-weight: 400;
    font-style: normal;
    background-color: #ff8177;
    background-image: linear-gradient(to right, #b12a5b 0%, #cf556c 21%, #f99185 52%, #ff8c7f 78%,#ff867a 100%);
    background-size: 100%;
    margin-top: 2rem;
    margin-bottom: 3rem;
    font-size: 4.5rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.w3-content h2 {
    font-family: 'Grey Qo', cursive;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    font-size: 3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    background-color: #ff8177;
    background-image: linear-gradient(to top, #b721ff 0%, #21d4fd 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.w3-content h3 {
    text-align: center;
    max-width: 32rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    /* font-weight: 700; */
    /*color: #fff;*/
}

/* Activities Section CSS */
.w3-content p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.w3-third {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.img__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 20px;
}

.img__container img {
    width: 25rem;
    height: 20rem; /* Ensure uniform height */
    object-fit: cover; /* To ensure the image fits within the box without distortion */
    display: block;
}

.img__title {
    width: 25rem;
    background-color: white;
    text-align: center;
    padding: 0.2rem;
    bottom: 1rem;
    /* border: 0.1rem solid black; Black border around the text box */
    box-sizing: border-box; /* Ensures the border doesn't affect the width */
    font-size: 1.5rem;
}

.img__title a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    border: #131313;
}

.img__title a:hover {
    color: #ff8177;
}

@media screen and (max-width: 80rem) {
    .img__container img {
        width: 18rem;
        height: 13rem;
    }

    .img__title {
        width: 18rem;
        font-size: 1.2rem;
    }
}

/* W3-content styling for gallery and activities */
@media screen and (max-width: 60rem) {

    .w3-content h1 {
        font-size: 3.0rem;
        margin-bottom: 1.0rem;
    }

    .w3-content h2 {
        font-size: 2.5rem;
    }

    .w3-content h3 {
        font-size: 1.2rem;
    }

    .img__container img {
        width: 15rem;
        height: 10rem;
    }

    .img__title {
        width: 15rem;
        font-size: 1.0rem;
    }
}

@media screen and (max-width: 50rem) {

    .img__container img {
        width: 12rem;
        height: 7rem;
    }

    .img__title {
        width: 12rem;
        font-size: 1.0rem;
    }
}

@media screen and (max-width: 35rem) {
    
    .w3-content h1 {
        font-size: 2.5rem;
        margin-top: 1.0rem;
    }

    .w3-content h2 {
        font-size: 2rem;
    }

    .w3-content h3 {
        max-width: 23rem;
        font-size: 1.0rem;
    }

    .img__container img {
        width: 20rem;
        height: 15rem;
    }

    .img__title {
        width: 20rem;
        font-size: 1.0rem;
    }
}

/* Reviews Section CSS */
.review {
    background: linear-gradient(to top, #99eeff 0%, #fff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.review h1 {
    font-family: 'Grey Qo', cursive;
    font-weight: 400;
    font-style: normal;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 4.5rem;
    background-color: #ff8177;
    background-image: linear-gradient(to right, #b12a5b 0%, #cf556c 21%, #f99185 52%, #ff8c7f 78%,#ff867a 100%);    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.review h3 {
    max-width: 32rem;
    margin-top: 1rem;
    font-size: 1.5rem;
}

.review h4 {
    font-weight: 1;
    max-width: 32rem;
    margin-top: 1rem;
    font-size: 1.0rem;
}

/* Global review overview */
.global__container {
    display: flex;
    align-items: center;
    margin: 2rem 2rem;
}

.global__review {
    /* flex-grow: 1; */
    display: flex;
    flex-direction: column;
    font-weight: bold;
    align-items: center;
    font-size: 1.5rem;
}

.global__rating {
    align-items: center;
    white-space: nowrap;
    display: inline-block;
    margin: 0.5rem 0rem;
}
 
.global__rating i{
    color: #ffcc00;
    font-size: 1.5rem;
    margin-right: 0.2rem;
}

#review-subtitle {
    font-size: 1.2rem;
    color: #c7c7c7;
}

.global__divider {
    display: inline-block;
    width: 0.1rem;
    height: 5rem;
    background-color: #9e9e9e;
    margin: 0 2rem;
}

.review__button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #1f8bff;
    color: white;
    border: none;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5rem;
    border-radius: 0.25rem;
    transition: background-color 0.3s ease;
}

.review__button:hover {
    background-color: #0056b3;
}

/* Customer feedback Sections */
.review__main-container {
    background: #fff;
    max-height: 23rem;
    width: 20rem;
    margin: 2rem 1.5rem;
    padding: 1.5rem;
    border-radius: 25px;
    box-shadow: 0 0 20px rgba(0, 0, 0.1, 0.2);
}

.review__name, .review__response-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #131313;
}

.review__date, .review__response-date {
    font-size: 1rem;
    color: #d1d1d1;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.review__stars {
    font-size: 1.5rem;
    gap: 0.5rem;
    color: #ffcc00;
}

.review__text, .review__response-text {
    overflow-y: auto;
    max-height: 9rem;
    font-size: 1.0rem;
    margin: 1rem;
}

.review__overlay {
    /*display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.review__form {
    position: fixed;
    height: auto;
    width: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f2f2f2;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    z-index: 1001; /* Above overlay */
}

.review__form input[type='text'], input[type='email'], input[type='password'] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    box-sizing: border-box;
    margin-top: 0.25rem;
    margin-bottom: 1rem;
    resize: vertical;
}

.review__form i {
    color: #c5c5c5;
}

.review__form button {
    padding: 0.5rem 1rem;
    background-color: #1f8bff;
    color: white;
    border: none;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: background-color 0.3s ease;
}

.review__form button:hover {
    background-color: #0056b3;
}

/* Host Response on reviews logic */

/* Modal overlay */
.modal {
    position: fixed;
    z-index: 1000;
    width: auto;
    height: auto;
    top: 30%;
    left: 50%;
}

.review__toggle-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;

    padding: 0.5rem 1rem;
    border-radius: 999px;

    background: #f5f5f5;
    color: #333;
    font-size: 0.95rem;
    font-weight: 600;

    border: 1px solid #ddd;
    cursor: pointer;

    transition: 
        background 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.1s ease;
}

.review__toggle-btn:hover {
    background: #eee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.review__toggle-btn:active {
    transform: translateY(1px);
}

/* Red circular counter */
.review__toggle-btn .response-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 1.5rem;
    height: 1.5rem;

    padding: 0 0.3rem;
    border-radius: 50%;

    background-color: #d32f2f;
    color: #fff;

    font-size: 1.0rem;
    font-weight: 700;
    line-height: 1;
}

/* Modal content box */
.modal-content {
    transform: translate(-50%, -50%);
    background-color: #f2f2f2;
    padding: 3rem;
    border-radius: 10px;
    z-index: 1001; /* Above overlay */
}

/* Close button */
.modal-close {
    position: absolute;
    top: 0.1rem;
    right: 1rem;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
}

.review__response-text {
    overflow-y: auto;
    max-height: 12rem;
    font-size: 1.0rem;
    margin: 1rem;
}

@media screen and (max-width: 60rem) {

    .review__form, .modal {
        width: 75%;
    }

    .global__container {
        margin: 2rem 2rem;
    }

    .global__review {
        font-size: 1.2rem;
    }

    .global__rating i {
        font-size: 1.2rem;
    }

    #review-subtitle {
        font-size: 1.0rem;
    }

    .review__main-container {
        margin: 2rem 1.5rem;
        padding: 1.5rem;
    }

    .review__button {
        font-size: 1.2rem;
    }

    .review__name, .review__response-title {
        font-size: 1.2rem;
        font-weight: bold;
    }

    .review__date, .review__response-date {
    font-size: 0.8rem;
}

    .review__stars {
        font-size: 1.2rem;
    }

    .review__text, .review__response-text {
        max-height: 9rem;
        font-size: 0.8rem;
        margin: 1rem;
    }

    .review h1 {
        font-size: 3.0rem;
        margin: 1.0rem;
    }
    
    .review h3 {
        font-size: 1.2rem;
    }

    .review h4 {
        margin-top: 1rem;
    }
}

@media screen and (max-width: 35rem) {

    .review__form, .modal {
        width: 90%;
    }

    .global__container {
        margin: 2rem 2rem;
    }

    .global__rating {
        margin: 0.2rem 0rem;
    }

    .global__review {
        font-size: 1.0rem;
    }

    .global__rating i {
        font-size: 1.0rem;
    }

    #review-subtitle {
        font-size: 0.8rem;
    }

    .review__button {
        font-size: 1.0rem;
    }

    .global__divider {
        height: 5rem;
    }
    
    .review h1 {
        font-size: 2.5rem;
        margin: 0.5rem;
    }
    
    .review h3 {
        max-width: 23rem;
        font-size: 1.0rem;
    }

    .review h4 {
        max-width: 23rem;
        margin-top: 0.8rem;
        font-size: 0.8rem;
    }
}

/* Booking Section CSS */

/* Reservation and Instructions Form CSS */
.booking__container {
    background: linear-gradient(to top, #99eeff 0%, #fff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.booking__container--instructions, .booking__container--form, .booking__container--summary, .booking__container--calendar {
    display: flex;
    flex-wrap: wrap;
    background: white;
    padding: 20px;
    margin-bottom: 100px;
    box-shadow: 0 0 20px rgba(0, 0, 0.1, 0.2);
    width: 800px;
    flex: 1;
    padding-right: 20px;
}

.booking__container--text {
    flex: 1;
    padding-right: 20px;
}

.booking__container--text h1 {
    font-family: 'Grey Qo', cursive;
    font-weight: 400;
    font-size: 4.5rem;
    text-align: center;
    background-color: #ff8177;
    background-image: linear-gradient(to right, #b12a5b 0%, #cf556c 21%, #f99185 52%, #ff8c7f 78%,#ff867a 100%);
    background-size: 100%;
    margin-top: 2rem;
    margin-bottom: 3rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.booking__container--text h2, .booking__container--calendar h2, .booking__container--summary h2 {
    font-family: 'Grey Qo', cursive;
    font-weight: 400;
    font-size: 3rem;
    margin-bottom: 1rem;
    background-color: #ff8177;
    background-image: linear-gradient(to top, #b721ff 0%, #21d4fd 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.calendar__footer h3 {
    font-size: 1.5rem;
    text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);
    color: #fff;
    margin-bottom: 1rem;
}

.booking__container--text p {
    margin-top: 1rem;
    font-size: 1rem;
    /* font-weight: 700; */
    /*color: #fff;*/
}

/* Calendar CSS */
.calendar__container {
    width: 100%;
    background-color: #12121f;
    color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 62.5%;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.calendar__body {
    width: 100%;
    background-color: #222227;
    box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.4);
}

.calendar__header {
    width: 100%;
    height: 12rem; /* fix for calendar overflow */
    background-color: #167e56;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem; /* top-bottom and left-right padding */
    text-align: center;
    text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);
}

.calendar__header i {
    font-size: 2.5rem;
    cursor: pointer;
}

.calendar__header h1 {
    font-size: 3rem;
    /* font-weight: 400; */
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
}

.calendar__header p {
    font-size: 1.6rem;
}

.calendar__weekdays {
    width: 100%;
    height: 5rem;
    padding: 0 0.4rem;
    display: flex;
    align-items: center;
}

.calendar__weekdays div {
    font-size: 1.5rem;
    /* font-weight: 400; */
    letter-spacing: 0.1rem;
    width: calc(44.2rem/7); /* 44.2rem is the difference between width and padding used before */
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);
}

.calendar__days {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0.2rem; /* padding 0.2 applied to all directions */
    padding-bottom: 2rem;
}

.calendar__days div {
    font-size: 1.4rem;
    margin: 0.3rem;
    width: calc(40.2rem/7); /* 44.2rem is the difference between width and padding used before */
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);
    position: relative;
    transition: background-color 0.2s;
}

.calendar__daily:hover {
    background-color: #262626;
    border: 0.2rem solid #777;
    cursor: pointer;
}

.calendar__today:hover {
    background-color: #23ca8a;
    border: 0.2rem solid #00ff4c;
    cursor: pointer;
}

.calendar__daily:hover::after, .calendar__today:hover::after {
    content: attr(calendar__fee); /* Use the data-number attribute for the number */
    position: absolute;
    bottom: -1.5rem; /* Adjust as needed to position the square below the day */
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 2.5rem;
    background-color: #262626;
    color: #fff;
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    border: 0.1rem solid #777;
    box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);
    border-radius: 0.5rem; /* Added for rounded corners */
    display: flex; /* Show the small square on hover */
    z-index: 1; /* Place it above the other elements in layer 1 */
}

.prev-calendar__date, .next-calendar__date {
    opacity: 0.5;
}

.calendar__today {
    background-color: #167e56;
}

.calendar__days div.selected {
    background: yellow;
}

.calendar__days div.selected-start {
    background: linear-gradient(135deg, transparent 50%, yellow 50%);
}

.calendar__days div.selected-end {
    background: linear-gradient(135deg, yellow 50%, transparent 50%); /* Show fee on click */
}

.calendar__days div.occupied-start {
    background: linear-gradient(135deg, transparent 50%, #bebebe 50%);/* Show fee on click */
}

.calendar__days div.occupied-mid {
    background: #bebebe;
}

.calendar__days div.occupied-end {
    background: linear-gradient(135deg, #bebebe 50%, transparent 50%);/* Show fee on click */
}

.calendar__days div.occupied-end.selected-start {
    background: linear-gradient(135deg, #bebebe 50%, yellow 50%);/* Show fee on click */
}

.calendar__days div.occupied-start.selected-end {
    background: linear-gradient(135deg, yellow 50%, #bebebe 50%);/* Show fee on click */
}

.calendar__days div.error {
    background: red; /* Show on click */
}

.calendar__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background-color: #167e56;
}

.calendar__footer h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.calendar__footer--columns {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
}

.calendar__column {
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    text-align: center;
    background-color: #777;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Booking Form CSS */
.booking__container--form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #f2f2f2;
    padding: 20px;
    margin: 100px, auto;
    box-shadow: 0 0 20px rgba(0, 0, 0.1, 0.2);
    width: 800px;
    box-sizing: border-box;
}

.booking__container--form input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 20px;
}

.booking__container--checkbox {
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Add space between the checkbox-container divs */
    margin-bottom: 1rem;
}

.booking__container--checkbox input[type='checkbox'] {
    width: auto; /* Ensure the checkbox is not stretched */
    margin: 0; /* Reset margin */
    padding: 0; /* Reset padding */
    box-sizing: border-box;
}

.booking__container--form h3 {
    font-size: 1.2rem;
    margin: 2rem 0rem;
}

.booking__container--form input, .booking__container--form textarea, .booking__container label, .booking__container--form p {
    font-size: 1.0rem;
}

.booking__container--form button, .booking__container--summary button {
    background-color: #f77062;
    font-size: 1.5rem;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    align-self: center;
    justify-content: center;
    margin-top: 1.0rem;
    margin-bottom:1.0rem;
}

.booking__container--form button:hover, .booking__container--summary button:hover {
    background-color: #bd5246;
    color: #fff;
}

/* Booking Payment Method CSS */
.booking__container--payment {
    display: flex;
    justify-content: space-between;
    height: auto;
    margin-bottom: 0.5rem;
}

.payment__card, .payment__twint, .payment__banktransfer {
    flex: 1;
    margin: 0 10px;
    text-align: center;
}

.booking__container--payment input[type="radio"] {
    display: none;
}

.booking__container--payment label {
    cursor: pointer;
}

.booking__container--payment label img {
    width: 100px; /* Adjust size as needed */
    height: auto;
    border: 2px solid transparent;
    border-radius: 15px;
    transition: border-color 0.3s;
}

.booking__container--payment input[type="radio"]:hover + label img {
    /* zoom: 1.2;  Zoom in on hover */
    /* use transform to do same zoom: 1.2 */
    transform: scale(1.2);
    /* increase border size */
    /* border-width: 8px; */
}

.booking__container--payment input[type="radio"]:checked + label img {
    border-color: #007BFF; /* Highlight color when selected */
    border-width: 4px; /* Increase border size */
}

.payment__card--icons {
    display: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.payment__card--icons svg {
    width: 100%;
    height: auto;
}

.booking__container--payment p {
    font-size: 0.8 rem;
    margin: 1rem 0rem;
    text-align: center;
}

/* Booking Summary CSS */
.booking__container--summary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #fff;
    padding: 20px;
    margin: 100px, auto;
    box-shadow: 0 0 20px rgba(0, 0, 0.1, 0.2);
    width: 800px;
    box-sizing: border-box;
}

.booking__container--summary h4 {
    font-size: 1.5rem; 
    margin-top: 1.0rem;
    margin-bottom: 1.0rem;
}

.booking__container--summary p, .booking__container--summary label {
    font-size: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

@media screen and (max-width: 60rem) {
    /* Booking containers */
    .booking__container--instructions, .booking__container--form, .booking__container--summary, .booking__container--calendar {
        flex-direction: column;
        margin-bottom: 50px;
        width: 500px;
    }

    .booking__container--instructions, .booking__container--calendar {
        text-align: center;
    }

    .booking__container--text h1 {
        font-size: 3rem;
        margin-top: 2rem;
        margin-bottom: 1.0rem;
    }

    .booking__container h2 {
        font-size: 2.5rem;
    }

    /* Calendar */
    .calendar__container {
        width: 100%;
        font-size: 62.5%;
    }

    .calendar__body {
        width: 28.8rem;
    }

    .calendar__header {
        width: 100%;
        height: 8rem;
    }
    
    .calendar__header i {
        font-size: 2.5rem;
    }
    
    .calendar__header h1 {
        font-size: 2.0rem;
        /* font-weight: 400; */
        text-transform: uppercase;
        letter-spacing: 0.2rem;
        margin-bottom: 1rem;
    }
    
    .booking__container--text p {
        font-size: 1.0rem;
    }

    .calendar__header p {
        font-size: 1.2rem;
    }

    .calendar__weekdays {
        height: 3.4rem;
    }

    .calendar__weekdays div {
        font-size: 1.2rem;
        width: calc(47rem/7);
    }

    .calendar__days {
        padding-bottom: 1.2rem;
    }
    
    .calendar__days div {
        font-size: 1.2rem;
        margin: 0.3rem;
        width: calc(24.1rem/7); /* 44.2rem is the difference between width and padding used before */
        height: 3rem;
    }

    .calendar__footer {
        padding: 1rem;
    }
    
    .calendar__footer h2 {
        font-size: 1.4rem;
    }
    
    .calendar__column {
        padding: 0.5rem 1rem;
        font-size: 1.0rem;
    }

    .calendar__days div:hover::after {
        content: attr(calendar__fee); /* Use the data-number attribute for the number */
        bottom: -1.5rem; /* Adjust as needed to position the square below the day */
        left: 50%;
        transform: translateX(-50%);
        width: 2.5rem;
        height: 2.0rem;
        font-size: 1.0rem;
    }

    /* Booking form and summary */
    .booking__container--form h3 {
        font-size: 1.0rem;
        margin: 1.2rem 0rem;
    }

    .booking__container--form input, .booking__container--form textarea, .booking__container label, .booking__container--form p {
        font-size: 0.8rem;
    }

    .booking__container--checkbox {
        gap: 1.0rem;
    }

    .booking__container--payment label img {
        width: 120px;
        height: auto;
        border: 5px solid transparent;
        border-radius: 18px;
    }

    .payment__card, .payment__twint, .payment__banktransfer {
        flex: 1;
        margin: 0 0px;
        text-align: center;
    }

    .booking__container--summary h4 {
        font-size: 1.2rem;
    }

    .booking__container--form button, .booking__container--summary button {
        font-size: 1.2rem;
        padding: 10px 20px;
    }


}

@media screen and (max-width: 35rem) {
    /* Booking containers */
    .booking__container--instructions, .booking__container--form, .booking__container--summary, .booking__container--calendar {
        width: 400px;
    }

    .booking__container--text h1 {
        font-size: 2.5rem;
        margin-top: 1rem;
    }

    .booking__container h2 {
        font-size: 2.0rem;
    }

    .booking__container--text p {
        font-size: 0.8rem;
    }

    .calendar__header p {
        font-size: 1.0rem;
    }

    /* Calendar */

    .calendar__container {
        width: 100%;
        font-size: 62.5%;
    }

    .calendar__body {
        width: 22.5rem;
    }

    .calendar__header {
        width: 100%;
        height: 8rem;
    }
    
    .calendar__header i {
        font-size: 1.8rem;
    }
    
    .calendar__header h1 {
        font-size: 1.5rem;
        /* font-weight: 400; */
        text-transform: uppercase;
        letter-spacing: 0.2rem;
        margin-bottom: 1rem;
    }

    .calendar__weekdays {
        height: 3rem;
    }

    .calendar__weekdays div {
        font-size: 1.0rem;
        width: calc(40rem/7);
    }

    .calendar__days {
        padding-bottom: 0.9rem;
    }
    
    .calendar__days div {
        font-size: 1.0rem;
        margin: 0.2rem;
        width: calc(19.2rem/7); /* 44.2rem is the difference between width and padding used before */
        height: 2.8rem;
    }

    .calendar__footer {
        padding: 1rem;
    }
    
    .calendar__footer h2 {
        font-size: 1.0rem;
    }

    .calendar__footer h3 {
        font-size: 1.0rem;
    }
    
    .calendar__column {
        padding: 0.3rem 0.4rem;
        font-size: 0.8rem;
    }

    .calendar__days div:hover::after {
        content: attr(calendar__fee); /* Use the data-number attribute for the number */
        bottom: -1.2rem; /* Adjust as needed to position the square below the day */
        left: 50%;
        transform: translateX(-50%);
        width: 2.5rem;
        height: 1.5rem;
        font-size: 1.0rem;
    }

    /* Booking form and summary */
    .booking__container--form h3 {
        font-size: 0.8rem;
    }

    .booking__container--form input, .booking__container--form textarea, .booking__container label, .booking__container--form p {
        font-size: 0.8rem;
    }

    .booking__container--checkbox {
        gap: 0.5rem;
    }

    .booking__container--payment label img {
        width: 100px;
        height: auto;
        border: 5px solid transparent;
        border-radius: 15px;
    }

    .payment__card, .payment__twint, .payment__banktransfer {
        flex: 1;
        margin: 0 0px;
        text-align: center;
    }

    .booking__container--summary h4 {
        font-size: 1.0rem; 
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .booking__container--summary p, .booking__container--summary label {
        font-size: 0.8rem;
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
    }

    .booking__container--form button, .booking__container--summary button {
        font-size: 1.0rem;
        padding: 5px 10px;
    }
}