*,*::after, *::before{
    box-sizing: border-box;
}

:root{
    --clr-neutral-700:#2E323F;
    --clr-neutral-500:#3B4050;
    --clr-neutral-300:#eaeaea;
    --clr-neutral-400:#6F737F;
    --clr-neutral-100:#fff;
    --clr-accent-500:#A59678;

    --fs-100:16px;
    --fs-300:18px;
    --fs-400:21px;
    --fs-500:24px;
    --fs-700:30px;
    --fs-900:36px;
    --fs-1200:90px;

    --ff-accent:'Oswald';
}

/*Resets*/

body{
    margin:0;
    padding: 0;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

h1,h2{
    margin: 0;
    padding:0;
}

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

a{
    text-decoration: none;
    color: var(--clr-neutral-100);
}

/*Components*/
.no-style-list{
    margin:0;
    padding:0;
    list-style: none;
}

.no-style > li{
    text-decoration: none;
}

/*General styling*/

.container{
    width: 80%;
    margin-inline: auto;
    max-width: 1200px;
}

.title{
    font-family: var(--ff-accent);
}

.btn{
    background-color: var(--clr-accent-500);
    text-transform: uppercase;
    border-radius: 2rem ;
    font-weight: 700;
}

.flow-content > * + * {
    margin-top: 1.5rem;
}

.box{
    text-align: center;
    padding: 3rem 2rem;
}


/*Individual styling*/

/*Header Section*/
header{
    background-color: var(--clr-neutral-700);
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav__list{
    display: none;
}


/*Hero section*/

.hero {
    padding:5rem 0;
    background-color: var(--clr-neutral-500);
    color: var(--clr-neutral-100);
    text-align: center;
}

.hero .title{
    font-size: clamp(3.5rem, 2.10vw + 3.125rem, 4rem);
    line-height: 1;
}

.hero .title > span{
    color: var(--clr-accent-500);
}

.hero .btn{
    padding: 1rem;
}

.hero .right p{
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

/*Three column section*/
.three-column{
    background-color: var(--clr-neutral-300);
    padding:3rem 0;
}

.three-column .container {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap:2rem;
}

.three-column .title{
    color: var(--clr-accent-500);
    font-size: 2rem;
}

.three-column p{
    font-size: 1.25rem;
    line-height: 1.5;
}

/*Two column section*/

.two-column{
    padding:3rem 0;
}

.two-column .left .title{
    color: var(--clr-accent-500);
    font-size: 3rem;
    line-height: 1;
}

.two-column .left p{
    font-size: 1.25rem;
}

.two-column .right {
    padding-top:3rem;
    display: flex;
    flex-direction: column;
    gap:1.5rem;
}

.two-column .box {
    background-color: var(--clr-neutral-700);
    color: var(--clr-neutral-100);
    font-size: 1.15rem;
}

.two-column .right .title{
    font-size: 1.75rem;
}

/*Footer section*/

footer{
    padding: 3rem 0;
    background-color: var(--clr-neutral-500);
    color: var(--clr-neutral-100);
}

footer .container  > .title{
    color: var(--clr-neutral-100);
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1;
}

.small-section .title{
    color: var(--clr-accent-500);
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.small-section li,.small-section p {
    font-size: 1.25rem;
}

.small-section li {
    padding: 0.75rem 0;
}

.flex{
    display: flex;
    flex-direction: column;
    gap:2rem;
}


@media (min-width:701px) and (max-width:1000px) {
    .three-column .container{
        flex-direction: row;
    }

    .two-column .right{
        flex-direction: row;
    }

    .footer__link{
        display: flex;
        justify-content: space-between;
    }
}

@media (min-width:1001px) {
    .hamburger-menu{
        display: none;
    }

    .nav__list{
        font-family: var(--ff-accent);
        display: flex;
        gap:2rem;
        font-size: var(--fs-300);
        text-transform: uppercase;
    }

    .nav__link__list > .no-style-list{
        display: flex;
        gap:1rem;
    }

    .nav__link__list .no-style-list .btn{
        padding: 0.10rem 0.75rem;
    }

    .hero .container {
        display: flex;
        text-align: left;
        align-items: center;
    }

    .hero .title{
        width: 90%;
        font-size: var(--fs-1200);
    }

    .hero .right p{
        font-size: var(--fs-500);
        padding-bottom: 1rem;
        padding-top: 9rem;
    }

    .hero .btn{
        padding: 1rem;
    }

    .three-column .container{
        flex-direction: row;
    }

    .two-column .container {
        display: flex;
        gap:2rem;
    }

    .two-column .left{
        width: 72%;
    }

    .two-column .left .title{
        font-size: var(--fs-900);
    }

    .two-column .left p{
        font-size: var(--fs-400);
    }

    .two-column .right{
        padding: 0;
        width: 30%;
    }

    .two-column .box{
        padding: 1rem 1.5rem;
    }

    .two-column .box .title{
        font-size: var(--fs-700);
    }

    .two-column .box p{
        font-size: var(--fs-400);
    }

    footer .flex{
        flex-direction: row;
    }

    footer .flex .about{
        width: 50%;
    }

    .footer__link{
        display: flex;
        justify-content: space-between;
        gap:1rem;
    }
}
