/* ------------------------------------ SETTINGS -------------------------------------*/
@import url("https://kit.fontawesome.com/f2386b8e41.js");
@import url("https://fonts.googleapis.com/css?family=Oleo+Script:400|Open+Sans:300,300italic,600,600italic,800");

:root {
    --primary: #421303;
    --secondary: #9c8763;
    --hover: #811728;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Open Sans", sans-serif;
    background: #f2f2f2;
}

.container {
    max-width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 10px 30px;
}

.sm-container {
    max-width: 800px;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 10px 30px;
}

h1,
h2,
h3,
p {
    margin: 0;
}

a {
    text-decoration: none;
}

#hover-button {
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 1000;
}

.button {
    padding: 10px 30px;
    display: inline;
    color: white;
    border-radius: 25px;
    font-weight: bold;
    background: var(--secondary);
}

.button:hover {
    background: var(--primary);
    color: white;
}

.button2 {
    padding: 10px 30px;
    display: inline;
    color: var(--secondary);
    border-radius: 25px;
    font-weight: bold;
    background: white;
}

img {
    width: 100%;
}

.flex-box {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.flex-left {
    display: flex;
    justify-content: start;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.p-1 {
    padding: 5px;
}

.p-2 {
    padding: 10px;
}

.p-3 {
    padding: 15px;
}

.p-4 {
    padding: 20px;
}

.p-5 {
    padding: 25px;
}

.m-1 {
    margin: 5px;
}

.m-2 {
    margin: 10px;
}

.m-3 {
    margin: 15px;
}

.m-4 {
    margin: 20px;
}

.m-5 {
    margin: 25px;
}

.mb-1 {
    margin-bottom: 5px;
}

.mb-2 {
    margin-bottom: 10px;
}

.mb-3 {
    margin-bottom: 15px;
}

.mb-4 {
    margin-bottom: 20px;
}

.mb-5 {
    margin-bottom: 25px;
}

.font-1 {
    font-size: 20px;
}

.font-2 {
    font-size: 30px;
}

.font-3 {
    font-size: 40px;
}

.font-4 {
    font-size: 50px;
}

.font-5 {
    font-size: 60px;
}

.gap-1 {
    gap: 5px;
}

.gap-2 {
    gap: 10px;
}

.gap-3 {
    gap: 15px;
}

.gap-4 {
    gap: 20px;
}

.gap-5 {
    gap: 25px;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.border {
    border: 3px solid var(--primary);
}

.bold {
    font-weight: bold;
}

table {
    width: 100%;
    margin-bottom: 10px;
    table-layout: auto;
}

th,
td {
    padding: 5px 10px;
    border-bottom: 4px solid var(--primary);
}

tr {
    border-bottom: 4px solid #333 !important;
}

th {
    background: var(--primary);
    color: white;
}

.grid-cols-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: space-evenly;
    height: 100%;
}

.grid-cols-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
}

.grid-cols-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-evenly;
}

.grid-cols-1 {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: space-evenly;
}

@media only screen and (max-width: 900px) {

    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 800px) {

    .grid-cols-4,
    .grid-cols-3 {
        display: block;
    }

    .grid-cols-2 {
        display: block;
    }
}

/* --------------------------------- END SETTINGS -------------------------------------*/

/* navbar */

nav {
    background-color: white;
    top: 0;
    z-index: 1000;
    width: 100%;
    color: Black;
    padding: 10px 0;
}

.header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.logo {
    padding: 15px 25px;
    color: var(--primary);
    border-radius: 4px;
}

.nav-links {
    z-index: 1001;
    justify-content: end;

    a {
        color: var(--primary);
        padding: 5px 10px;
        border-radius: 5px;
    }

    a:hover {
        background-color: var(--secondary);
        color: white;
    }
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary);
}

/* banner */
.banner {
    background: url("../images/idle-and-wild.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    height: 85vh;
}

.banner-overlay {
    background: rgba(0, 0, 0, 0.5);
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;

    .container h1 {
        font-size: 50px;
    }
}

#CDSWIDCOE {
    max-width: 200px !important;
}

.box {
    border: 1px solid var(--secondary);
    border-radius: 15px;
    height: 350px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 130px;
    box-shadow: 0 0 1px #e2e2e2;
}

.off-text {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    position: absolute;
    bottom: -30%;
    width: 80%;
    border-radius: 15px;
    text-align: center;
    color: black;

    h3 {
        color: var(--secondary);
    }

    a {
        color: var(--primary);
    }
}

.facilities {
    align-items: center;

    img {
        border-radius: 10px;
    }
}

.c2a {
    height: 350px;
    border-radius: 20px;
    color: white;
    background: url(../images/honeymoon-rondavel-at.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.c2a-overlay {
    height: 350px;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

footer {
    background: var(--secondary);
    color: #f2f2f2;

    a {
        color: var(--primary);
    }
}


@media only screen and (max-width: 800px) {

    .hamburger {
        display: block;
        align-self: center;
        justify-self: end;
    }

    .nav-links {
        display: none;
        grid-column: 1 / -1;
        flex-direction: column;
        align-items: center;
        background-color: white;
        padding: 10px 0;
    }

    .nav-links.show {
        display: flex;
    }

    #CDSWIDCOE {
        max-width: 81px !important;
    }
}