
/* =========================
   HEADER
========================= */

.site-header {
    width: 100%;
    min-height: 110px;

    background:
        linear-gradient(
        to bottom,
        rgba(218, 54, 108, 0.78) 0%,
        rgba(218, 54, 108, 0.72) 15%,
        rgba(218, 54, 108, 0.58) 35%,
        rgba(218, 54, 108, 0.38) 55%,
        rgba(218, 54, 108, 0.18) 75%,
        rgba(218, 54, 108, 0.05) 90%,
        rgba(218, 54, 108, 0) 100%
    );

    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;

    /* box-shadow: 0px 8px 25px rgba(0,0,0,0.08); */
}

/* Container */

.header-container {
    max-width: 1280px;

    margin: 0 auto;
    padding: 22px 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================
   LOGO
========================= */

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 60px;
    height: auto;
    display: block;
}

/* =========================
   NAVIGATION
========================= */

.main-nav {
    margin-left: auto;
}

.main-nav ul {
    list-style: none;

    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 18px;
}

.main-nav ul li {
    margin: 0;
    padding: 0;
}

/* Navigation Links */

.main-nav ul li a {
    position: relative;
    display: block;

    color: #ffffff;

    font-size: 16px;
    line-height: 1;

    font-weight: 700;
    text-decoration: none;

    font-family: "Poppins", sans-serif;

    padding: 12px 16px;

    border-radius: 30px;
    border: 1px solid transparent;

    transition: all 0.35s ease;
}

/* ==========================================
   LANGUAGE SWITCHER
========================================== */

.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-left: 20px;
}

.lang-btn {
    background: transparent;
    border: none;

    color: #ffffff;

    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 14px;

    cursor: pointer;

    opacity: 0.65;

    transition:
        opacity 0.25s ease,
        color 0.25s ease;
}

.lang-btn:hover {
    opacity: 1;
}

.lang-btn.active {
    opacity: 1;
    color: #3AF372;
}


/* Hover Effect */

.main-nav ul li a:hover,
.main-nav ul li a.active {

    border: 1px solid rgba(255,255,255,0.9);

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(4px);

    -webkit-backdrop-filter: blur(4px);

    transform: translateY(-1px);
}

/* ==========================================
   MOBILE HEADER / HAMBURGER
========================================== */

.mobile-menu-toggle {
    display: none;
}

@media only screen and (max-width: 1200px) {

    .site-header {
        padding: 18px 24px;
    }

    .header-container {
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        position: relative;
        left: auto;
        transform: none;
        z-index: 1002;
    }

    .logo img {
        max-width: 62px;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;

        width: 48px;
        height: 48px;

        border: 1px solid rgba(255,255,255,0.65);
        border-radius: 50%;

        background: rgba(255,255,255,0.12);

        cursor: pointer;

        position: relative;
        z-index: 1002;
    }

    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;

        background: #ffffff;

        margin: 0 auto;

        border-radius: 4px;

        transition: all 0.3s ease;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .main-nav {
    position: fixed;

    top: 0;
    right: -100%;

    width: 78%;
    max-width: 360px;
    height: 100vh;

    background:
    linear-gradient(
        to left,
        rgba(218, 54, 108, 0.96) 0%,
        rgba(218, 54, 108, 0.92) 18%,
        rgba(218, 54, 108, 0.82) 38%,
        rgba(218, 54, 108, 0.68) 58%,
        rgba(218, 54, 108, 0.52) 78%,
        rgba(218, 54, 108, 0.38) 90%,
        rgba(218, 54, 108, 0.24) 100%
    );

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    padding: 110px 34px 40px;

    z-index: 1001;

    transition: right 0.35s ease;
}

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .main-nav ul li a {
        font-size: 22px;
        color: #ffffff;
    }

    .language-switcher {
    position: fixed;

    left: calc(100vw - min(78vw, 360px) + 18px);
    right: auto;
    bottom: 34px;

    z-index: 1002;

    display: flex;
    gap: 12px;

    opacity: 0;
    pointer-events: none;

    transition: opacity 0.3s ease;
    }


    .main-nav.active + .language-switcher {
        opacity: 1;
        pointer-events: auto;
    }
}

/* Media Query Small Screens */
@media only screen and (max-width: 600px) {

    .main-nav {
        width: 100vw;
        max-width: 100vw;

        right: -100vw;

        padding: 110px 42px 40px;

        background:
    linear-gradient(
        to left,
        rgba(218, 54, 108, 0.96) 0%,
        rgba(218, 54, 108, 0.92) 18%,
        rgba(218, 54, 108, 0.82) 38%,
        rgba(218, 54, 108, 0.68) 58%,
        rgba(218, 54, 108, 0.52) 78%,
        rgba(218, 54, 108, 0.38) 90%,
        rgba(218, 54, 108, 0.24) 100%
        );

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

    }

    .main-nav.active {
        right: 0;
    }

    .main-nav::before,
    .main-nav .logo,
    .main-nav img {
        display: none !important;
    }

    .main-nav ul {
        align-items: flex-start;
        gap: 28px;
        margin-top: 10px;
    }

    .main-nav ul li a {
        font-size: 24px;
    }

    .language-switcher {
    left: 42px;
    right: auto;
    bottom: 38px;
    }

     body.mobile-menu-open .site-header .logo {
        display: none !important;
    }

    .mobile-menu-toggle {
    position: fixed;

    top: 56px;
    right: 24px;

    left: auto;

    z-index: 10003;
    }


}



