* {
    font-family: "Lora", serif;
    box-sizing: border-box;
    /* outline: 2px solid red; */
}

html{
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #F3E9DC;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#container {
    display: flex;
    flex-direction: column;
    max-width: 730px;

}

h1 {
    font-family: "Caprasimo", serif;
    font-weight: 400;
    font-style: normal;
}

.header{
    background-color: #F3E9DC;
    width: 100%; 
    z-index: 50;

    display: flex;
    justify-content: space-between;
    align-items: center;
    
    max-width: 730px; 
    margin: 0 auto;
    padding: 20px 5%;
}

.nav-toggle{
    background-color: transparent;
    border: none;
    display: block;
}

.nav-menu {
    display: none; /* Hidden by default */
    flex-direction: column;
    position: absolute;
    right: 10px;
    top: 90px; 
    background-color: #F3E9DC;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
    z-index: 20; 
}

.nav-menu.show-menu {
    display: flex;
}

.nav-menu a {
    text-decoration: none;
    color: #000;
    padding: 10px 15px;
    display: block;
}

#hero{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #613d2a;
    color: white;
    padding: 40px 20px;
    text-align: center;
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

#hero .title {
    max-width: 600px;
}

#hero h1 {
    font-size: 2.1rem;
    margin: 20px 0;
}

#hero p {
    font-size: 1.2rem;
    margin: 15px 0;
    font-weight: 400;
}

#hero button {
    padding: 0.7em 1.7em;
    background-color: #F3E9DC;
    border: none;
    border-radius: 10em;
    color: #613d2a;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    font-weight: 800;
    font-style: normal;
}

#hero buton:hover {
    transform: translateY(-4px) translateX(-2px);
    box-shadow: 2px 5px 0 0 black;
}

#about {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #F3E9DC;
}

#about img {
    border-radius: 50%;
    margin-bottom: 15px;
}

#about h1 {
    margin: 0;
    font-size: 2rem;
}

#about p {
    text-align: center;
}

.sticky-container {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    background-color: #F3E9DC;
    padding: 20px;
    z-index: 10;
    text-align: center;
}

#staycation h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* Progress Bar */
.progress-bar-container {
    position: relative;
    height: 8px;
    width: 100%;
    background-color: #d3d3d3;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #613d2a;
    transition: width 0.3s ease-out;
}

/* Steps Container */
.steps {
    margin-top: 30px;
    padding: 0 20px;
}

/* Individual Step */
.step {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    margin-bottom: 40px;
}

.step.active {
    opacity: 1;
    transform: translateY(0);
}

.step h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Testimonial Carousel */
#testimonial {
    background-color: #F3E9DC;
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

#testimonial h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.carousel {
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.testimonial-item {
    display: none;
    transition: opacity 0.5s ease;
    opacity: 0;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 600px;
}

.testimonial-item.active {
    display: block;
    opacity: 1;
}

.testimonial-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-item h3 {
    margin-top: 20px;
    font-weight: bold;
}

.carousel-controls {
    margin-top: 20px;
}

.carousel-controls button {
    background-color: #613d2a;
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin: 0 10px;
}

/* .carousel-controls button:hover {
    background-color: #d4bda9;
} */

.floating-whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #c9ae8a;
    padding: 7px 8px 5px;
    border-radius: 50%;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.floating-whatsapp-btn img {
    width: 40px;
    height: 40px;
}

.floating-whatsapp-btn:hover {
    background-color: #1ebd5b;
}


#contact {
    background-color: #613d2a;
    color: white;
    padding: 40px 20px;
    text-align: center;

    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

#contact h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

#contact .contact-details {
    font-size: 1.2rem;
}

#contact a {
    color: #F3E9DC;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

/* Media query for larger screens */
@media (min-width: 768px) {

    .header {
        padding: 15px 5%; 
    }
    
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex !important;
        flex-direction: row;
        position: static;
        background-color: transparent;
        padding: 0;
        box-shadow: none;
        z-index: auto;
        align-items: center;
        gap: 20px;
    }

    .nav-menu a {
        padding: 5px 10px;
        transition: color 0.3s ease;
        font-weight: 600;
    }

    .nav-menu a:hover {
        color: #613d2a;
        text-decoration: underline;
    }

    #hero {
        flex-direction: row;
        justify-content: center;
        padding: 80px 60px;
        text-align: left;
    }

    #hero h1 {
        font-size: 3rem;
    }

    #hero p {
        font-size: 1.5rem;
    }

    #hero button {
        font-size: 1.2rem;
    }

    #contact {
        padding: 60px;
    }
}