/* orange color: #FF6F59; */
/* Green color : #001032 */
/* skin color : #FBF7F4 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
/* font-family: 'Montserrat', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
/* font-family: 'Roboto', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Maven+Pro&display=swap');
/* font-family: 'Maven Pro', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200&display=swap');
/* font-family: 'Dosis', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@1,300&display=swap');

:root{
    --heading-color: #47A992;
    --text-color: #7A3E3E;
    --nav-bg-color: #482121;
    --btn-bg-color: #47A992;
    --footer-bg-color: #291010;
    --footer-head-color: #a04c4c;
    --footer-text-color: #704343;
}

/* DEFAULT VAlues */
/* body{
    background-color: #ee752c;
        / background-color: #ff8439; 
        / background-color: #ff9859; 
} */
* {
    margin: 0;
    padding: 0;
    /* color: #FBF7F4 ; */
}
body{
    background-color: #EEEEEE;
}

/* Classes */
.btn-container {
    margin: 5rem 2rem;
    display: flex;
    justify-content: space-around;
    width: 70%;
}

.primary-btn {
    text-decoration: none;
    font-size: 25px;
    background-color: #47A992;
    color: white;
    border-radius: 10px;
    padding: 1.5rem;
    font-family: 'Maven Pro', sans-serif;
}

.highlighted-text {
    font-size: 1.5rem;
    font-family: 'Dosis', sans-serif;
    color: var(--heading-color);
    text-transform: uppercase;
}

.heading-text {
    font-size: 5rem;
    font-family: 'Roboto', sans-serif;
    color:  var(--heading-color);
    text-transform: uppercase;
    text-align: center;
}

.big-text {
    font-size: 3rem;
    font-family: 'Roboto', sans-serif;
    color:  var(--heading-color);
    text-transform: uppercase;
}

.small-text {
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    /* width: 90%; */
}

/* NAVIGATION BAR - section 1 */
#nav-logo-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: auto;
    padding: 2rem 0;
    font-family: 'Montserrat', sans-serif;
}

#logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

#logo img {
    width: 100px;
}

#logo span {
    font-size: 40px;
    color: var(--heading-color);
}

.nav-btn {
    font-size: 22px;
    font-weight: 700;
    background-color: var(--btn-bg-color);
    border-radius: 5px;
    padding: 1rem !important;
    color: #FBF7F4;
    border: none;
    margin: 0 0.5rem;
    cursor: pointer;
    text-decoration: none;
}


/* NAVBAR SECTION 2 */
#nav-items-section {
    background-color: var(--nav-bg-color);
    font-family: 'Montserrat', sans-serif;
}

.nav-ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    list-style: none;
    width: 60%;
    margin: auto;
}

#nav-items-section a {
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    color: white;
}

#nav-items-section li {
    padding: 1rem;
}

#nav-items-section li:hover a {
    color: #111;
    transition: 0.5s ease-in-out;
}

#nav-items-section li:hover {
    transition: 0.5s ease-in-out;
    background-color: #FBF7F4;

}

#three-lines {
    font-size: 45px;
}


/* SIDE NAV bar */
#nav-items-section-mobile{
    display: none;
    margin: auto;
    background-color: var(--nav-bg-color);
    color: white;
    border-radius: 10px;
}

.topnav {
    overflow: hidden;
    background-color: #333;
    position: relative;
}

.topnav #myLinks {
    display: none;
}

.topnav a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
}

.topnav a.icon {
    background: black;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* FOOTER  */
#footer {
    background-color: var(--footer-bg-color);
    padding: 3rem 0;
    color: var(--footer-text-color);
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.footer-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text {
    font-size: 2.6rem !important;
}

.footer-big-text {
    font-size: 1.8rem;
    font-family: 'Roboto', sans-serif;
    color: var(--footer-head-color);
    text-transform: uppercase;
    margin: 1rem 0;
}
.footer-btn {
    width: 25%;
    margin: 1rem 0;
    text-align: center;
    text-decoration: none;
    background-color: var(--footer-head-color);
}

.footer-text-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-text-section a {
    margin: 0 0.5rem;
    color: var(--footer-text-color);
    text-decoration: none;
}
.footer-small-text{
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: var(--footer-text-color);
}
hr {
    margin: 2rem 0;
    background-color: grey;
    border: none;
    height: 1px;
}

@media (max-width: 600px) {
    .heading-text {
    font-size: 3rem;
        
    }
    #nav-logo-section {
        width: 100%;
        padding: 0.2rem 0;
    }
    #logo {
        width: 50%;
    }
    #logo img {
        width: 90px;
    }
    #logo span {
        /* font-size: 20px; */
        display: none;
    }
    .nav-btn {
        font-size: 12px;
        padding: 0.7rem !important;
    }    
    .nav-ul li{
        display: none;
    }
    #nav-items-section {
        display: none;
    }
    #nav-items-section-mobile{
        display: block;
    }
    #footer{
        padding: 1rem 0;
    }
    .footer-container {
        flex-direction: column;
    }  
    .footer-section {
        margin: 2rem 0.5rem;
    }
    .footer-text-section p{
        font-size: 6px;
    }   

    hr {
        margin: 1rem 0;
    }    
}