 *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* HERO SECTION */
.hero{
    display:flex;
    min-height:100vh;
}

/* LEFT IMAGE */
.hero-left{
    width:50%;
}

.hero-left img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* RIGHT SIDE */
.hero-right{
    width:50%;
    padding:40px;
    display:flex;
    flex-direction:column;
    margin-top: 90px;
}

/* TOP NAV */
.top{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.top > h3, .footer-box>h3{
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-style: normal;
    color: rgb(255, 153, 0);
    font-size: xx-large;
}

.top > h4{
    padding:8px 18px;
    border:2px solid #2b6cb0;
    background:none;
    border-radius:6px;
    cursor:pointer;
    text-decoration: none;
}

.top > h4 >a{
    text-decoration: none;
    color: #2b6cb0;
}
/* CONTENT */
.content{
    margin-top:60px;
}

.content h1{
    font-size:32px;
    margin-bottom:15px;
}

.content p{
    color:#666;
    line-height:1.6;
}

/* FEATURES */
.fit {
    display: flex;
    gap: 15px;
    
    
}
.features{
    margin:25px 0;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.feature{
    display:flex;
    align-items:center;
    gap:10px;
}

.feature img{
    width:24px;
}

/* BUTTONS */
.primary{
    width:100%;
    padding:14px;
    background:#f97316;
    color:white;
    border:none;
    border-radius:6px;
    margin-bottom:12px;
    cursor:pointer;
}
.primary > a{
    width:100%;
    padding:14px;
    background:#f97316;
    color:white;
    border:none;
    border-radius:6px;
    margin-bottom:12px;
    cursor:pointer;
    text-decoration: none;
}
.signin{
    border: 2px solid #2b6cb0;
}
.secondary{
    width:100%;
    padding:14px;
    border:2px solid #2b6cb0;
    background:white;
    border-radius:6px;
    cursor:pointer;
}

/* FOOTER */
.footer{
    background:#6b3f2a;
    color:white;
    display:flex;
    justify-content:space-around;
    padding:40px;
    flex-wrap:wrap;
    /* justify-content: flex-start; */
}

.footer-box{
    max-width:300px;
}

.footer-box ul{
    list-style:none;
    margin-top:10px;
}

.footer-box li{
    margin-bottom:8px;
}

/* =========================
   MOBILE RESPONSIVENESS
========================= */

@media (max-width: 768px){

    .hero{
        flex-direction: column;
        min-height: auto;
    }

    .hero-left{
        width:100%;
        height:300px;
    }

    .hero-left img{
        height:100%;
        object-fit:cover;
    }

    .hero-right{
        width:100%;
        margin-top:20px;
        padding:20px;
    }

    .top{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

    .content{
        margin-top:30px;
        text-align:center;
    }

    .fit{
        flex-direction:column;
        align-items:center;
    }

    .features{
        align-items:center;
    }

    .feature{
        justify-content:center;
        text-align:center;
    }

    .primary,
    .secondary{
        width:100%;
    }

    .footer{
        flex-direction:column;
        text-align:center;
        padding:25px;
        gap:20px;
    }

    .footer-box{
        max-width:100%;
    }
}


/* =========================
   SMALL PHONES
========================= */

@media (max-width:480px){

    .content h1{
        font-size:24px;
    }

    .top > h3{
        font-size:26px;
    }

}
