* {
    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 {
    background-color: #ff8177;
    background-image: linear-gradient(to top, #ff0844 0%, #ffb199 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2.0rem;
}

.fa-gem {
    margin-right: 0.5rem;
}

.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: 1.5rem;
    }
}

@media screen and (max-width: 60rem) {
    .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: 80%;
        height: 80px;
        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: 30rem) {
    #navbar__logo {
        font-size: 1.2rem;
    }
    
    .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: 80%;
        height: 80px;
        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 {
    background-color: #141414;
}

.main__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: 90vh;
    background-color: #d8f7ff;
    background-image: linear-gradient(to top, #d8f7ff 0%, #ffd2d2 100%);

    /* background-color: #80d9ef;  */
    /* background-image: linear-gradient(to top, #fff 0%, #ffb199 100%); */
    z-index: 1;
    width: 100%;
    /* max-width: 1300px; */ /* Sets the maximum contianer dimension (over this value, black margin) */
    padding: 0 50px;
}

.main__container h1 {
    font-family: 'Grey Qo', cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 4.5rem;
    background-color: #ff8177;
    background-image: linear-gradient(to right, #b12a5b 0%, #b12a5b 0%, #fa7566 21%, #dd4a3a 52%, #f57d93 78%, #91234b 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.main__content h2 {
    font-family: 'Grey Qo', cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 3.5rem;
    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;
}

.main__content p {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);
}

.main__btn {
    font-size: 1rem;
    background-image: linear-gradient(to top, #f77062 0%, #fe5196 100%);
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    color: #fff;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
}

.main__btn a {
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
}

.main__btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #4837ff;
    transition: all 0.35s;
    border-radius: 4px;
}

.main__btn:hover {
    color: #fff;
}

.main__btn:hover:after {
    width: 100%;
}

.main__img--container {
    text-align: center;
}

#main__img {
    height: 80%;
    width: 80%;
}

/* Mobile Responsive */
@media screen and (max-width: 60rem) {
    .main__container {
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width: 100%;
        margin: 0 auto;
        height: auto;
    }

    .main__content {
        text-align: center;
        margin-bottom: 4rem;
    }

    .main__content h1 {
        font-size: 4rem;
        margin-top: 3rem;
    }

    .main__content h2 {
        font-size: 3rem;
    }

    .main__content p {
        margin-top: 2rem;
        font-size: 1.5rem;
    }

    .main__btn {
        /*font-size: 1.5rem;*/
        padding: 12px 32px;
        margin: 2.5rem 0;
    }
}

@media screen and (max-width: 30rem) {

    .main__content h1 {
        font-size: 3rem;
        margin-top: 4rem;
    }

    .main__content h2 {
        font-size: 2.5rem;
    }

    .main__content p {
        margin-top: 3rem;
        font-size: 1.5rem;
    }

    .main__btn {
        /*font-size: 1.5rem;*/
        padding: 12px 36px;
        margin: 2.5rem 0;
    }
}

/* 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 button {
    color: #fff;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #f77062;
    position: absolute;
    top: 220px;
    left: 30px;
    font-size: 1rem;
    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: 30rem) {
    .services {
        height: 1500px;
    }

    .services h1 {
        font-size: 3rem;
        margin-top: 2.5rem;
    }

    .services__card {
        height: 250px;
        width: 300px;
        margin-bottom: 2rem;
        margin-top: 2rem;
    }

    .services h2 {
        top: 120px;
        left: 30px;
    }
    
    .services__card p {
        top: 150px;
        left: 30px;
    }
    
    .services__card button {
        top: 180px;
        left: 30px;
    }
}

/* Footer Section CSS */
.footer__container {
    background-color: #141414;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#footer__logo {
    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__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 {
    color: #fff;
}

@media screen and (max-width: 60rem) {
    .footer__links {
        padding-top: 2rem;
    }

    #footer__logo {
        margin-bottom: 2rem;
    }

    .website__rights {
        margin-bottom: 2rem;
    }

    .footer__link--wrapper {
        flex-direction: column;
    }

    .social__media--wrap {
        flex-direction: column;
    }
}

@media screen and (max-width: 30rem) {
    .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, #c7abff 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: 30rem) {
    .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, #b48fff 0%, #c7abff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 60rem;
}

.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 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;
}

.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;
}

button:disabled {
    background-color: #ccc; /* Ensure the hover state matches the disabled state */
}

button:disabled:hover {
    background-color: #ccc; /* Ensure the hover state matches the disabled state */
}

.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: 10px 0; /* Add spacing around the widget */
}

@media screen and (max-width: 60rem) {
    .form__container {
        width: 80%;
    }

    .form h1 {
        font-size: 3rem;
        margin-top: 3rem;
    }
}

@media screen and (max-width: 30rem) {
    .form__container {
        width: 90%;
    }

    .form h1 {
        font-size: 2rem;
        margin-top: 2rem;
    }

    .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;
    /*height: 100hv;*/
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.description__container 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-bottom: 5rem;
    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-style: normal;
    font-size: 4rem;
    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 p {
    margin-top: 1rem;
    font-size: 1rem;
    /* font-weight: 700; */
    /*color: #fff;*/
}

.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-right: 20px;
}

.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;
}

.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);
}

.highlight {
    font-weight: bold;
    color: #cc1414;
}

.description__text ul {
    list-style-type: disc;
    padding: 20px;
}

.description__text ul li {
    background: url('check.png') no-repeat left center;
    background-size: 20px;
    padding: 5px;
}


@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;
        font-size: medium;
    }

    .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-top: 5rem;
    }

    .description__container h2 {
        font-size: 2.5rem;
        margin-top: 1rem;
    }

    .description__container p {
        font-size: medium;
    }
}

@media screen and (max-width: 30rem) {
    .description__container--body {
        margin: 25px;
        width: 400px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: small;
    }

    .description__container p {
        font-size: small;
    }

    .description__container h1 {
        font-size: 2.5rem;
        margin-top: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .description__container h2 {
        font-size: 2rem;
        margin-top: 0rem;
    }

    .description__text text {
        font-size: small;
    }
}

/* 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__container 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-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;
    background-color: #ff8177;
    background-image: linear-gradient(to top, #b721ff 0%, #21d4fd 100%);
    background-size: 100%;
    font-size: 4rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.price__container p {
    margin-top: 1rem;
    font-size: 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: 20px;
}

.price__text ul li {
    background: url('check.png') no-repeat left center;
    background-size: 20px;
    padding: 5px;
}

.price__button a {
        background-color: #f77062;
        margin: 2rem;
        font-size: 1.5rem;
        color: #fff;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        display: flex;
        text-decoration: none;
        align-self: center;
        text-align: center;
        justify-content: center;
        transition: background-color 0.3s;
        /* enlarge box within button so that text can stay in a line */

}

.price__button a:hover {
    background: #4837ff;
    transition: all 0.3s ease;
}

@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;
        font-size: medium;
    }

    .price__button a {
        font-size: 1.5rem;
    }

    .price__container h1 {
        font-size: 3rem;
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }

    .price__container h2 {
        font-size: 2.5rem;
        margin-top: 0rem;
    }

    .price__container p {
        font-size: medium;
    }
}

@media screen and (max-width: 30rem) {
    .price__container--body {
        margin: 25px;
        width: 400px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: small;
    }

    .price__container p {
        font-size: small;
    }

    .price__container h1 {
        font-size: 2.5rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .price__container h2 {
        font-size: 2rem;
        margin-top: 0rem;
    }

    .price__text text {
        font-size: small;
    }
}

/* 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;
    /*height: 100hv;*/
    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: 100px;
    margin-bottom: 20px;
    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-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: 3rem;
    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;
}

.booking__container--text h2, .booking__container--calendar h2, .booking__container--summary h2 {
    font-family: 'Grey Qo', cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 4rem;
    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 p {
    margin-top: 1rem;
    font-size: 1rem;
    /* font-weight: 700; */
    /*color: #fff;*/
}

/* Calendar CSS */
.calendar__container {
    width: 100%;
    height: 100hv;
    background-color: #12121f;
    color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 62.5%;
}

.calendar__body {
    width: 45rem;
    height: 60.7rem;
    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 {
    background-color: #777;
    border: 0.2rem solid #afafaf;
    cursor: pointer;
}

.calendar__days div: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 fee 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[type='text'], input[type='email'], input[type='number'], input[type='tel'], select, 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.3rem;
    margin: 2rem 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;
    margin-top: 1rem;
    align-self: center;
    justify-content: center;
}

.booking__container--form button:hover, .booking__container--summary button:hover {
    background-color: #bd5246;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1rem;
}

/* Booking Payment Method CSS */
.booking__container--payment {
    display: flex;
    justify-content: space-between;
    height: auto;
    margin: 100px, auto;
}

.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(4, 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 p {
    margin-top: 1rem;
    font-size: 1rem;
    /* font-weight: 700; */
    /*color: #fff;*/
}

@media screen and (max-width: 60rem) {
    /* Booking containers */
    .booking__container--instructions, .booking__container--form, .booking__container--summary, .booking__container--calendar {
        display: flex;
        flex-direction: column;
        padding: 20px;
        margin: 50px;
        margin-bottom: 20px;
        width: 500px;
        font-size: medium;
    }

    .booking__container h1 {
        font-size: 3rem;
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }

    .booking__container h2 {
        font-size: 2.5rem;
        margin-top: 0rem;
    }

    .booking__container p {
        font-size: medium;
    }

    /* Calendar */
    .calendar__container {
        width: 100%;
        height: 41.6rem; /* affects container only with .calendar__body height */
        font-size: 62.5%;
    }

    .calendar__body {
        width: 28.8rem;
        height: 41.6rem; /* affects container only with .calendar__container height */
    }

    .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 p {
        font-size: 1.0rem;
    }

    .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.5rem;
        margin: 1.2rem 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--form button, .booking__container--summary button {
        font-size: 1.2rem;
        padding: 10px 20px;
    }
}

@media screen and (max-width: 30rem) {
    /* Booking containers */
    .booking__container--instructions, .booking__container--form, .booking__container--summary, .booking__container--calendar {
        display: flex;
        flex-direction: column;
        padding: 20px;
        margin: 50px;
        margin-bottom: 20px;
        width: 400px;
        font-size: small;
    }

    .booking__container h1 {
        font-size: 3rem;
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }

    .booking__container h2 {
        font-size: 2.0rem;
        margin-top: 0rem;
    }

    .booking__container p {
        font-size: small;
    }

    /* Calendar */

    .calendar__container {
        width: 100%;
        height: 37.2rem; /* affects container only with .calendar__body height */
        font-size: 62.5%;
    }

    .calendar__body {
        width: 22.5rem;
        height: 37.2rem; /* affects container only with .calendar__container height */
    }

    .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;
    }
    
    .booking__container p {
        font-size: small;
    }

    .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: 1.0rem;
        margin: 1.2rem 0rem;
    }

    .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--form button, .booking__container--summary button {
        font-size: 1.0rem;
        padding: 5px 10px;
    }
}

/* 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: 3rem;
    margin-bottom: 3rem;
    font-size: 4rem;
    -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;
    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;
}

/* Activities Section */
.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: 78.75rem) {
    .img__container img {
        width: 20rem;
        height: 15rem;
    }

    .img__title {
        width: 20rem;
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 60rem) {
    .w3-content h1 {
        font-size: 3.0rem;
    }
    
    .w3-content p {
        font-size: 1.2rem;
    }

    .img__container img {
        width: 15rem;
        height: 10rem;
    }

    .img__title {
        width: 15rem;
        font-size: 1.0rem;
    }
}

@media screen and (max-width: 30rem) {
    .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;
    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;
    margin: 3rem;
}

.review h2 {
    font-size: 1.5rem;
}

/* Global review overview */
.global__container {
    display: flex;
    align-items: center;
    /* background-color: white; */
    /* width: 100%; */
    margin: 3rem;
    /* padding: 2rem 20px; */
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px; */
}

.global__review {
    /* flex-grow: 1; */
    margin: 0;
    font-weight: bold;
}

.global__rating {
    align-items: center;
    display: inline-block;
    margin-top: 4px;
}

.global__rating i{
    color: #ffcc00;
    font-size: 1rem;
    margin-right: 0.2rem;
}

.global__rating--text {
    font-size: 0.8rem;
    color: #c7c7c7;
}

.global__divider {
    display: inline-block;
    width: 0.1rem;
    height: 40px;
    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: 1rem;
    border-radius: 0.25rem;
    transition: background-color 0.3s ease;
}

.review__button:hover {
    background-color: #0056b3;
}

/* Individual review list */
/* .w3-third {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
} */

.review__container {
    background: #fff;
    /*height: 100hv;*/
    max-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 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #131313;
}

.review__date {
    font-size: 0.8rem;
    color: #d1d1d1;
    margin-bottom: 1rem;
}

.review__stars {
    gap: 0.5rem;
    color: #ffcc00;
    font-size: 1.5rem;
}

.review__text {
    font-size: 1rem;
    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 {
    /* display: none; */
    position: fixed;
    /* flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column; */
    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, .review__form textarea {
    width: auto;
    max-width: 20rem;
    margin-bottom: 1rem;
} */

.review__form input[type='text'], input[type='email'] {
    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;
}

@media screen and (max-width: 60rem) {
    .review h1 {
        font-size: 3.0rem;
    }
    
    .review h2 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 30rem) {
    .global__divider {
        height: 5rem;
    }
}