/* ============================= */
/* 🔥 PREMIUM HEADER DESIGN */
/* ============================= */

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    height: 65px;
    padding: 0 25px;

    background: rgba(106, 163, 111, 0.9);
    backdrop-filter: blur(12px);

    color: #fff;
    position: sticky;
    top: 0;
    z-index: 9999;

    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ============================= */
/* LOGO */
/* ============================= */
.logo {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.logo:hover {
    opacity: 0.8;
}

/* ============================= */
/* NAV DESKTOP */
/* ============================= */
nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* LINKS */
nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

/* UNDERLINE */
nav a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: #fff;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* ============================= */
/* LOGIN BUTTON */
/* ============================= */
.header-login {
    margin-left: 15px;
}

.login-btn, .profile-btn {
    padding: 6px 14px;
    border-radius: 20px;
    background: #fff;
    color: #2e7d32;
    font-weight: 600;
    text-decoration: none;
}

.login-btn:hover, .profile-btn:hover {
    background: #eaffea;
}

/* ============================= */
/* MENU ICON */
/* ============================= */
.menu-toggle {
    display: none;
    font-size: 20px;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    /* 🔥 NAV HIDE */
    nav {
        display: none;
    }

    /* 🔥 SHOW WHEN ACTIVE */
    nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: rgba(106,163,111,0.95);
    }


/* HEADER FIX */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;}