@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Varela+Round&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}
    
/* body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
    background: #000;
} */


.main-container {
    background: black;
    min-height: 100vh;
    position: relative;
}

.container {
    width: 85%;
    min-height: 10vh;
    margin: auto;
   
    
}

.logo {
    color:#f2bf31;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.navbar {
    height: 14vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

li {
    list-style: none;
 
}

a {
    text-decoration: none;
   
    
}

.navlinks {
    display: flex;
    gap: 2rem;
    color:#ececec;
    position: relative;
    font-size: 0.9rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.navlinks:hover {
    color:#f2bf31;
}

.navlist {
    display: flex;
    gap: 2rem;
    align-items: center;
   
}

.navlists {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navlinks::before {
    content:'';
    position: absolute;
    background:#f2bf31;
    width: 0%;
    height: 0.1rem;
    bottom: -10px;
    left: 0;
    transition: width 0.3s ease;
}

.navlinks:hover::before {
    width: 100%;
}

.humburger {
    display: none;
    z-index: 4;
}

.fa-bars {
    font-size: 1.7rem;
    color: white;
}

.overlay {
    position: absolute;
    inset: 0;
    background-color: black;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

img{
    width: 100%;
    height: auto;
    margin: auto;
    box-shadow: ;
}




@media screen and (max-width: 680px) {
    .navlists {
        justify-content: center;
        flex-direction: column;
        background-color: #f2bf31;
        position: absolute;
        top: 7%;
        left: -100%;
        transform: translateX(-50%);
        z-index: 4;
        width: 12rem;
        gap: 1.2rem;
        padding-block: 2rem;
        transition: 0.4s ease-in-out;
    }

    .navlist-active {
        left: 50%;
    }

    .navlinks {
        color:white;
    }

    .navlinks:hover {
        color: black;
    }

    .navlinks::before {
        background-color: black;
    }

    .humburger {
        display: block;
    }

    .fa-bars {
        font-size: 1.7rem;
        color: white;
    }

    .hero-section {
        flex-direction: column;
        margin-top: 2rem;
        gap: 3rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .image-container {
        width: 12rem;
    }

    .image-container::before {
        width: 12rem;
    }

    .overlay-active {
        opacity: 0.8;
        visibility: visible;
        transition: 0.5s ease-in-out;
    }
}