.header {
    background: linear-gradient(135deg, #6CC070, #A2D39C);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    /* space between logo and text */
    text-decoration: none;
}

.header__logo-img {
    height: 50px;
    /* adjust size */
    width: auto;
}

.header__logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    /* eco-themed color */
}



.header__menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.header__link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.header__link:hover,
.header__link--cta {
    color: #F4F1EB;
    text-shadow: 0 0 5px #fff;
}

/* Hamburger */
.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.header__hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
}

/* Mobile Menu Overlay */
.header__mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6CC070, #A2D39C);
    clip-path: circle(0% at top right);
    transition: clip-path 0.6s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.header__mobile-menu.active {
    clip-path: circle(250% at top right);
    pointer-events: all;
}

.header__mobile-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
}

.header__mobile-menu-list {
    list-style: none;
    text-align: center;
}

.header__mobile-menu-list li {
    margin: 1.5rem 0;
}

.header__mobile-menu-list a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: 0.3s;
}

.header__mobile-menu-list a:hover {
    color: #F4F1EB;
    text-shadow: 0 0 5px #fff;
}


/* Keyframes (optional for smoother animation) */
@keyframes clipPathCircleOpen {
    0% {
        clip-path: circle(0% at top right);
    }

    100% {
        clip-path: circle(250% at top right);
    }
}

@keyframes clipPathCircleClose {
    0% {
        clip-path: circle(250% at top right);
    }

    100% {
        clip-path: circle(0% at top right);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header__menu {
        display: none;
    }

    .header__hamburger {
        display: flex;
    }
}