 /* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ===========================
   GLOBAL
=========================== */

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f8f6f2;
    color:#333;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

section{
    padding:80px 10%;
}

h1,h2,h3,h4{
    color:#355E3B;
}

h2{
    text-align:center;
    margin-bottom:40px;
    font-size:36px;
}

/* ===========================
   NAVIGATION
=========================== */

nav{
    background:#355E3B;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 10%;
}

nav h1{
    color:white;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav a{
    color:white;
    font-weight:bold;
    transition:.3s;
}

nav a:hover{
    color:#F4E3A1;
}

/* ===========================
   BUTTONS
=========================== */

.button{
    display:inline-block;
    background:#D6A95C;
    color:white;
    padding:15px 35px;
    border-radius:5px;
    font-weight:bold;
    transition:.3s;
}

.button:hover{
    background:#C99845;
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#355E3B;
    color:white;
    text-align:center;
    padding:40px;
}

footer h2{
    color:white;
    margin-bottom:15px;
}

footer p{
    margin:8px 0;
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

    nav{
        flex-direction:column;
    }

    nav ul{
        flex-direction:column;
        margin-top:20px;
        text-align:center;
        gap:15px;
    }

    section{
        padding:50px 20px;
    }

    h2{
        font-size:28px;
    }

}