
header {

    position: relative;

    min-height: 100vh;

    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;

    background-image: url("../assets/images/hero-bg.webp");

    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;

    overflow: hidden;
}
header::before,header::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 60%;
    width: 100%;
    height: 100%;

    background-image: url("../assets/images/header-bg.png");
    background-repeat: no-repeat;
    background-size: contain;

    pointer-events: none;
    z-index: 0;
}
header::after{
    top: 0;
    right: 60%;
    transform: rotate(180deg);
}

.hero-overlay{

    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        90deg,
        rgba(199,255,197,.25),
        rgba(255,255,255,.45),
        rgba(14,115,0,.25)
    );

    z-index: 0;
}
nav {
    position: relative;
    z-index: 10;
    width: 100%;
}
nav .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav h1 img {
    width: 100%;
    transition: transform 0.3s ease;
}
nav h1 img:hover {
    transform: scale(1.05);
}
nav .nav-content ul.links {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    gap: 30px;
}
nav .nav-content ul.links li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    border-radius: 8px;
    transition: 0.25s ease;
    cursor: pointer;
}
nav .nav-content ul.links li a {
    transition: 0.25s ease;
    font-size: 18px;
    font-weight: 600;
    background-image: linear-gradient(to right, var(--main-color), var(--second-color));
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
}
nav .nav-content ul.links li a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    right: 0;
    bottom: -2px;
    background-color: var(--second-color);
    transition: .5s;
}
nav .nav-content ul.links li.active a::before {
    width: 100%;
}
nav .nav-content ul.links li a:hover::before {
    width: 100%;
}



.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    padding: 6px 20px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: var(--white-color);
}
.lang-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--main-color), var(--second-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}
.lang-btn span {
    background-image: linear-gradient(to right, var(--main-color), var(--second-color));
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 600;
}
.lang-btn:hover::before {
    opacity: 1;
}
.lang-btn:hover span {
    color: var(--white-color);
    z-index: 5;
}
.navbar {
    transition: .5s;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: .7s;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    width: 90%;
    transform: translate(5%, 20px);
    border-radius: 20px;
    box-shadow: 0 5px 5px #0000001c;
    transition: .7s;
}


/*! ***************** Responsive-Menu ***************** */
.show-menu {
    display: none;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--main-color);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 0 8px var(--second-color);
}
.show-menu i {
    position: relative;
    font-size: 22px;
    color: #fff;
    z-index: 1;
    transition: all 0.3s ease;
}
.show-menu:hover {
    transform: scale(1.10);
}

nav.responsive-Menu {
    width: 300px;
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 20;
    left: 0;
    background-image: linear-gradient(to bottom, var(--main-color),var(--second-color));
    background-position: center;
    background-size: cover;
    color: #fff;
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 99999;
}
nav.responsive-Menu h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
nav.responsive-Menu .main-btn {
    margin-inline: auto;
}
nav.responsive-Menu.show {
    transform: translateX(0);
}
nav.responsive-Menu .nav-content.responsive {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    align-items: start;
    height: 100%;
    padding: 40px 25px;
}
nav.responsive-Menu .nav-content.responsive ul.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
nav.responsive-Menu .nav-content.responsive ul.icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

nav.responsive-Menu .nav-content.responsive .close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.15);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--white-color);
    font-size: 20px;
}
nav.responsive-Menu .nav-content.responsive .close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}
nav.responsive-Menu .nav-content ul.links li a {
    font-weight: 500;
    color: var(--white-color);
}

nav.responsive-Menu .logo-responsive {
    width: 150px;
}

/* Overlay */
.overlay-nav.show {
    left: 0;
}
.overlay-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #0000002e;
    /* background-color: #bce00820; */
    transition: 0.4s;
    left: 100%;
    z-index: 9;
}

@media (max-width: 1210px) {
    nav .nav-content ul.links li a {
        font-size: 15px;
    }
}
@media (max-width: 1100px) {
    /* Navbar */
    nav .nav-content ul.links,
    nav .nav-content .main-btn,
    nav .nav-content .lang-btn {
        display: none;
    }
    nav .nav-content.responsive .main-btn {
        display: block;
        height: 40px;
    }
    nav.responsive-Menu .lang-btn {
        display: flex;
        margin: 0 auto;
    }
    nav .nav-content.responsive .main-btn {
        font-size: 16px;
    }
    .show-menu {
        display: flex;
    }
}

@media (max-width: 350px) {
    nav.responsive-Menu {
        width: 250px;
    }
}



.hide{
    transform: translate(5% , -110%) !important;
}