:root {
    /* green palet */
    /* --text: #000503;
    --background: #f1fef8;
    --primary: #0d9158;
    --secondary: #b6f8db;
    --accent: #14eb8e;
    --dark: #484646;
    --img-color: hsla(120, 90%, 80%, 0.4) */

    /* red palet */
    --text: #f1fef8;
    --background: #f7dfdc;
    --primary: #ed3e3e;
    --secondary: #e4bab6;
    --accent: #c81a07;
    --dark: #484646;
    --img-color: #ec64645a;
}
body {
    box-sizing: border-box;
    margin: 0;
    background: var(--background);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
a {
    text-decoration: none;
}
header {
    background-color: white;
    display: flex;
    justify-content: center;
    font-size: 1.2rem;
}
header img{
    width: 300px;
}
nav {
    background: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding-right: 30px;
}
nav a {
    color: var(--background);
    font-size: 1.5rem;
    padding: 12px;
}
.nav-menu {
    list-style: none;
    display: flex;
    flex-direction: row;
}
.nav-menu a:hover {
    color: var(--secondary);
}
.nav-menu a:active {
    color: var(--accent);
}


.book-now {
    background: var(--secondary);
    color: var(--text);
    padding: 10px;
    border: 2px solid var(--secondary);
    border-radius: 10px;
    min-width: 100px;
}
.book-now:hover {
    background: var(--text);
    color: var(--secondary);
}
.book-now:active {
    color: var(--accent);
}
.hamburger {
    display: none;
}
.nav-box {
    position: static;
}


main {
    margin-top: 10px;
    padding: 50px;
    font-size: 1.5rem;
}
section {
    padding: 20px;
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
}
section:nth-child(odd) {
    background: var(--secondary);
    border-radius: 0px 40px;
    flex-direction: row;
}
main img, .img-overlay {
    width: 400px;
    height: 300px;
    border-radius: 10px;
}   
.img-overlay {
    background: var(--img-color);
    z-index: 1;
    position:absolute;
}
section ul {
    list-style-image: url("Images/bxs-check-square.svg");
}

footer {
    background: var(--dark);
    color: var(--background);
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10vw;
}
footer a {
    color: var(--secondary);
}
footer a:hover {
    color: var(--accent);
}


@media (max-width: 600px) {
    .hamburger {
        display: block;
    }
    .nav-box {
        position: absolute;
        top: 185px;
        height: 0%;
        width: 100vw;
        background: var(--dark);
        overflow: hidden;
        transition: height 400ms ease;
        z-index: 2;
    }
    .nav-box a {
        color: var(--background);
    }
    .nav-box a:hover {
        color: var(--secondary);
    }
    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    nav {
        justify-content: space-around;
        padding-right: 0;
    }
    main {
        padding: 10px;
    }
    section, section:nth-child(odd) {
        flex-direction: column-reverse;
        align-items: center;
    }
    main img, .img-overlay {
        width: 300px;
        height: 220px;
    } 
}

.show {
    height: 250px;
}
.active-page {
    border-bottom: 3px solid var(--accent);
}
.active-button {
    border: 3px solid var(--accent)
}