body{
    font-family: 'Funnel Display', Arial, monospace;
}
html {
  scroll-behavior: smooth;
}
body{
    background-color: var(--background-primary);
}
.navbar{
    visibility: hidden;
     position: absolute;
}
.phone-navbar{
    visibility: visible;
    position: relative;
}
.hero-banner{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.hero-banner img{
    position: absolute;
    z-index: -1;
}
.product-base img{
    width: 100%;
}
@media (min-width: 768px){
    .navbar{
        visibility: visible;
        position: relative;
    }
    .phone-navbar{
        visibility: hidden;
        position: absolute;
    }
    /* Hero Banner*/
    .hero-banner{
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }
    .hero-banner img{
        position: absolute;
        z-index: -1;
    }
    .hero-banner .explore{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 1rem;
    }
    .hero-banner h1{
        color: var(--background-primary);
        font-size: 62px;
        font-weight: bolder;
        padding-bottom: 2rem;
    }
    .hero-banner p{
        color: var(--text-secundary);
        font-size: 18px;
        width: 40%;
        text-align: center;
        padding-bottom: 1rem;
    }
    .hero-banner button{
        padding: 0.7rem 3rem;
        font-size: 18px;
        border-radius: 25px;
        border-style: solid;
        background-color: var(--text-primary);
        border-color: var(--background-primary);
        border-width: 3px;
        cursor: pointer;
    }

    /* Short About US */
    .short-about{
        display: grid;
        grid-template-columns: 2fr 7fr;
        gap: 3rem;
        align-items: center;
        padding: 7rem 3rem;
    }
    .short-about h2{
        color: var(--text-primary);
        font-weight: bolder;
        font-size: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .short-about div{
        display: flex;
        justify-content: center;
        flex-direction: row;
        gap: 2rem;
    }
    .short-about p{
        color: var(--text-secundary);
    }

    /* Products*/
    .products{
        display: grid;
        grid-template-columns: 2fr 7fr;
        gap: 3rem;
        align-items: center;
        padding: 7rem 3rem;
        background-color: var(--background-secundary);
    }
    .products header{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .products h2{
        color: var(--text-primary);
        font-weight: bolder;
        font-size: 24px;
        text-align: center;
    }

    .products-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    .product-base{
        position: relative;
        transition: all 0.2s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: var(--cards-background);
        border-radius: 15px;
        height: 20rem;
        width: 15rem;
        padding-bottom: 1rem;
        overflow: hidden;
    }
    .product-base img{
        width: 100%;
        position: absolute;
        top: 0px;
    }
    .product-base p{
        position: absolute;
        color: var(--text-secundary);
        font-weight: bold;
        bottom: 1rem;
    }
    .product-base:hover{
        transform: scale(1.02);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        cursor: pointer;
        background-color: var(--text-primary);
    }
    .sofa-chaselong img{
        width: 100%;
        align-self: center;
    }

    /* Process */
    .process{
        display: grid;
        grid-template-columns: 1fr 3fr;
        padding: 10rem 3rem;
        gap: 3rem;
    }
    .process header{
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--text-primary);
        font-weight: bolder;
        font-size: 24px;
        text-align: center; 
    }
    .process-content{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        justify-self: center;
        gap: 3rem;
        color: var(--text-secundary);
        width: 70%;
    }
    .process-content h3{
        color:var(--text-primary);
        font-size: 18px;
        padding-bottom: 1rem;
        font-weight: bold;
    }
    .process-content p{
        position: relative;
        left: 1rem;
    }

    .budget{
        background-color: var(--background-secundary);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 13rem 2rem;
    }
    .budget h2{
        color: var(--text-primary);
        font-size: 24px;
        font-weight: bolder;
        padding: 1rem;
    }
    .budget p{
        color: var(--text-secundary);
        font-size: 16px;
        text-align: center;
        padding-bottom: 1rem;
    }
    .budget button{
        transition: all 0.2s ease;
        background-color: #BFA27A;
        color: #1E1814;
        font-weight: bolder;
        font-size: 16px;
        padding: 1rem 4rem;
        border-style: none;
        border-radius: 20px;
    }
    .budget button:hover{
        transform: scale(1.02);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        cursor: pointer;
    }
}