
/* hero section */

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.6)), 
    url('/images/hero3.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    align-items: center;
    justify-content: center;
    /* justify-content:start; */
    gap: 2rem;
    position: relative;
}

.hero__title {
    /* margin-top: 4.5rem; */
    margin-bottom: 5rem;
    display: flex;
    font-family: 'DM Serif Display', serif;
    font-size: 2rem; 
    font-weight: 600;
    color: whitesmoke;
    text-align: center;
    text-transform: capitalize;
    max-width: 20ch;
}

.hero__description{
    font-size: 1.2rem;
    color: whitesmoke;
    text-align: center;
    font-weight: 400;
    max-width: 30ch;
    margin-bottom: 4rem;
}

.hero__btn__container{
    display: flex;
    margin-inline: auto;
    gap: 2rem;
    margin-bottom: 4rem;
}

.hero__btn{
    font: inherit;
    font-size: 1.1rem; 
    font-weight: 600;
    letter-spacing: -0.085rem;
}

/* xs */
@media (min-width: 475px) {
    .hero{
            justify-content: center;
    }
    .hero__title{
        font-size: 2rem;
        margin-top: 0;
        margin-bottom: 3rem;
    }
    .hero__description{
        font-size: 1.2rem;
        max-width: 30ch;
    }
    .hero__btn{
        font-size: 1.1rem;
    }
}

/* sm */
@media (min-width: 640px) {
    .hero{
        height: 100vh;
    }
}

/* md */
@media (min-width: 768px) {
    .hero__title{
        font-size: 2.4rem
    }
    .hero__description{
        font-size: 1.3rem;
        max-width: 40ch;
    }
    .hero__btn{
        font-size: 1.2rem;
    }
}

/* lg */
 @media (min-width: 1024px) {
    .hero{
        gap: 4rem;
        height: 100vh;
    }
    .hero__title{
        font-size: 2.5rem;
        max-width: none;
    }
    .hero__description{
        font-size: 1.4rem;
        max-width: 50ch;
    }
 }

 @media (min-width: 1024px) and (orientation: portrait) {
    /* .hero {
        min-height: 42vh; 
    } */
}
/* xl */
@media (min-width: 1280px) {
    .hero__title{
        max-width: none;
        margin-bottom: 2rem;
    }
}

/* 2xl */
@media (min-width: 1536px) {
    .hero__title{
        font-size: 3rem;
    }
    .hero__description{
        font-size: 1.5rem
    }
    .hero__btn{
        font-size: 1.2rem;
    }
}

/* Footer adjustments */

/* .hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30vh; 
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5));
    z-index: 1;
} */

.home__footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: .5rem 0rem;
    z-index: 2; /* Ensure footer is above any overlays */
    color: whitesmoke;
}

/* Footer elements */
.home__footer__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* White lines */
.home__footer__divider {
    height: 1px;
    background: #fffdfb;
    width: 40%; 
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.home__footer__box3 ul{
    text-align: center;
}
.home__footer__box3 li{
    font-size: 1rem;
}

.copyright {
    text-align: center;
    font-size: x-small;
    /* color: #1ab79d; */
}

/* xs */
@media (min-width: 475px) {
    .footer.container{
        padding-inline: 3rem;
    }
}

/* sm */
@media (min-width: 640px) {
    .home__footer__box3 li{
        display: inline-block;
        margin-right: 2rem;
    }
    .home__footer__divider {
        height: 1px;
        width: 60%; 
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}

/* md */
@media (min-width: 768px) {
    /* .footer__box3{
        margin-top: 1rem;
    } */
}

/* lg */
@media (min-width: 1024px) {
    .footer.container{
        padding-inline: 3rem 
    }
    /* .footer__content{
        gap: 2rem;
    } */
}

/* xl */
@media (min-width: 1280px) {
    .footer.container{
        padding-inline: 8rem 
    }
}

/* 2xl */
@media (min-width: 1536px) {
    .footer.container {
        padding-inline: 18rem;
    }
}