*{
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
html,body{
    font-family: 'Montserrat';
    font-size: 1.1rem;
    margin: 0;
    padding: 0;
}
section{
    overflow: hidden;
}
nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: sticky;
    top: 0;
    background-color: #3B3027;
    z-index: 999;
}
.nav-ul{
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 0;
    padding: 0;
}
.nav-ul li a{
    color: white;
    display: inline-block;
    text-decoration: none;
    padding-block: 1em;
}
nav ul li a:hover{
    text-decoration: underline;
}
.hamburger{
    display: none;
    background-color: transparent;
    border: 0;
    color: white;
    font-size: 1.5rem;
    padding: 1rem;
    cursor: pointer;
}
#home{
    background-color: #DFCFBD;
    background-image: url("/assets/backgrounds/light-background.svg");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.home-wrapper{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-block: 5%
}
.home-content{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    background-color: #fff6eb;
    color: #2E1E18;
    max-width: 40%;
    border-radius: 10px;
    padding: 1em 3em;
    font-size: 1.1rem;
}
.home-content h1{
    font-family: 'Unkempt';
}
.home-image{
    display: flex;
    flex-wrap: wrap;
    max-height: 60vh;
}
.home-image img{
    background-color: #2E1E18;
    border: #2E1E18 solid 5px;
    border-radius: 50%;
    max-height: 50vh;
}
.book-button{
    display: flex;
    align-items: center;
    border: #2E1E18 solid 3px;
    border-radius: 8px;
    height: 3rem;
    margin-top: 2em;
}
.book-button a{
    text-decoration: none;
    font-weight: bold;
    color: #2E1E18;
    padding: 1.5em;
}
#about{
    background-color: #fff6eb;
    min-height: 100vh;
}
.about-wrapper{
    display: flex;
    justify-content: center;
    text-align: center;
}
.about-content{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: auto;
    min-width: 60%;
    padding: 1em;
    color: #2E1E18;
}
.about-content h2{
    font-family: 'Unkempt';
    font-size: 3em;
}
.about-content p{
    margin-inline: 20%;
}
#services{
    background-color: #DFCFBD;
    background-image: url("/assets/backgrounds/wave-top-background.svg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding-top: 5em;
}
.services-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}
.services-content{
    min-width: 60%;
    padding: 1em;
    color: #2E1E18;
}
.services-content h2{
    font-family: 'Unkempt';
    font-size: 3em;
}
.services-content p{
    font-size: 1.2em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 2s ease;
}

.services-content p.fade-in{
    opacity: 1;
    transform: translateY(0);
}
.services-imagegrid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    grid-auto-rows: 220px;
    grid-gap: 2em;
    grid-auto-flow: row;
    justify-items: center;
    width: 60%;
    margin: 0 auto;
}
.grid-item{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fff6eb;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 1em;
    color: #2E1E18;
}
.grid-item i{
    font-size: 1.8em;
    padding-block: 0.4em;
}
#prices{
    background-color: #DFCFBD;
    background-image: url("/assets/backgrounds/layered-waves-background.svg");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    min-height: auto;
    padding-bottom: 15%;
}
.prices-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 5em;
}
.prices-content{
    color: #2E1E18;
    text-align: center;
    margin-bottom: 2em;
    padding-inline: 2em;
    max-width: 60%;
}
.prices-content h2{
    font-family: 'Unkempt';
    font-size: 3em;
}
.prices-content p{
    justify-content: flex-end;
}
.prices-content a{
    color: #2E1E18;
}
.prices-image img{
    width: 100%;
}
#review{
    background-color: #fff6eb;
    background-image: url("/assets/backgrounds/review-background.svg");
    background-size:cover;
    background-position: top;
    background-repeat: no-repeat;
    min-height: 100vh;
}
.review-wrapper{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 4em;
    min-height: auto;
}
.review-content{
    color: #2E1E18;
}
.review-content h2{
    font-family: 'Unkempt';
    font-size: 3em;
}
.slideshow-container {
    max-width: 700px;
    position: relative;
    margin: auto;
    z-index: 1;
}
.mySlides {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 100%;
}
.mySlides.active{
    position: relative;
    opacity: 1;
    pointer-events: auto;
}
.mySlides-image{
    position: relative;
    max-width: 300px;
    margin: 0 auto;
    border: #2E1E18 solid 4px;
    border-radius: 8px;
    background-color: #2E1E18;
}
.mySlides-image img{
    width: 100%;
    border-radius: 8px;
    display: block;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 12px;
    color: #2E1E18;
    font-size: 1.2em;
    border-radius: 50%;
    cursor: pointer;
    user-select: none;
}
.prev{
    left: -2em;
    border-radius: 4px;
}
.next {
    right: -2em;
    border-radius: 4px;
}
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}
.text {
    margin-top: 1em;
    padding: 0 1em 1.5em;
    font-size: 0.9em;
    line-height: 1.5;
    color: #2E1E18;
    text-align: center;
}
.slide-in-right{
    animation: slideInRight 0.5s ease forwards;
}
.slide-in-left{
    animation: slideInLeft 0.5s ease forwards;
}
@keyframes slideInRight{
    from{
        transform: translateX(2em);
        opacity: 0;
    }
    to{
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideInLeft{
    from{
        transform: translateX(-2em);
        opacity: 0;
    }
    to{
        transform: translateX(0);
        opacity: 1;
    }
}
#contact{
    background-color: #DFCFBD;
    color: #2E1E18;
}
.contact-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding-left: 10%;
    padding-block: 4em;
    min-height: auto;
}
.contact-content{
    max-width: 50%;
}
.contact-content h2{
    font-family: 'Unkempt';
    font-size: 2em;
    font-style: italic;
}
.contact-details a{
    color: #2E1E18;
    text-decoration: none;
    cursor: pointer;
}
.contact-links{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1em;
    font-size: 1.4em;
}
.contact-links a{
    color: #fff6eb;
    padding: 0.2em;
    background-color: #3B3027;
    width: 50px;
    height: 50px;
    text-decoration: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-logo{
    display: flex;
    align-items: center;
}
.contact-logo img{
    max-width: 250px;
}
@media screen and (max-width:768px){
    body::-webkit-scrollbar{
        display: none;
    }
    nav{
        justify-content: flex-start;
    }
    .nav-ul{
        display: none;
        flex-direction: column;
        width: 100%;
    }
    .nav-ul.show{
        display: block;
        padding-left: 1em;
    }
    .hamburger{
        display: flex;
    }
    #home{
        background-image: none;
    }
    .home-wrapper{
        justify-content: center;
        flex-direction: column;
        padding-block: 2em;
    }
    .home-content{
        text-align: center;
        align-items: center;
        background-color: #DFCFBD;
        color: #2E1E18;
        max-width: 100%;
        padding-inline: 1em;
        font-size: 1rem;
    }
    .home-image{
        display: flex;
        flex-wrap: wrap;
        max-width: 60%;
        margin-block: 2em;
    }
    .home-image img{
        display: block;
        max-width: 100%;

    }
    #about{
        background-image: none;
    }
    .about-content{
        font-size: 0.8em;
    }
    .about-content p{
        margin-inline: 5%;
    }
    #services{
        background-image: none;
    }
    .services-imagegrid{
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        grid-template-columns: 1fr;
        padding-inline: 1em;
    }
    #prices{
        background-image: none;
    }
    .prices-content{
        max-width: 100%;
        padding-inline: 1em;
        text-align: center;
    }
    .prices-content strong{
        display: block;
        font-size: 1.1em;
        margin-bottom: 0.25em;
    }
    #review{
        background-image: none;
    }
    .review-content{
        padding-inline: 1em;
    }
    .review-content h2{
        font-size: 2.5em;
    }
    .slideshow-container{
        max-width: 100%;
        padding-inline: 1em;
    }
    .mySlides-image{
        max-width: 100%;
        margin: 0 auto;
    }
    .mySlides-image img{
        width: 100%;
        height: auto;
    }
    .prev{
        color: #fff6eb;
        left: 0em;
    }
    .next{
        color: #fff6eb;
        right: 0em;
    }
    .contact-wrapper{
        flex-direction: column;
        align-items: center;
        gap: 2em;
        text-align: center;
        padding-inline: 1em;
    }
    .contact-content{
        max-width: 100%;
    }
    .contact-content strong{
        display: block;
    }
    .contact-links{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2em;
        margin-top: 1em;
    }
    .contact-links a{
        margin-right: 0;
    }
}