
/* ===================================
   HEADER
=================================== */

.site-header{

    position:fixed;

    top:15px;
    left:0;
    width:100%;

    z-index:9999;

    transition:.35s ease;
}

.site-header .container{

    max-width:1400px;
}

/* GLASS EFFECT */

.header-wrapper{

    background:
    rgba(255,255,255,.85);

    backdrop-filter:
    blur(20px);

    border:
    1px solid rgba(255,255,255,.4);

    border-radius:22px;

    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 25px;

    box-shadow:
    0 10px 40px rgba(0,0,0,.08);
}

/* SCROLLED */

.site-header.scrolled{

    top:8px;
}

.site-header.scrolled .header-wrapper{

    height:78px;

    box-shadow:
    0 15px 50px rgba(0,0,0,.12);
}

/* ===================================
   LOGO
=================================== */

.logo{

    display:flex;

    align-items:center;

    gap:15px;

    text-decoration:none;
}

.logo-icon{

    width:58px;
    height:58px;

    border-radius:18px;

    overflow:hidden;

    background:#fff;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);
}

.logo-icon img{

    width:100%;
    height:100%;

    object-fit:contain;
}

.logo-content h2{

    font-size:18px;

    color:#14532D;

    margin:0;
}

.logo-content span{

    font-size:12px;

    color:#64748b;
}

/* ===================================
   DESKTOP MENU
=================================== */

.desktop-menu ul{

    display:flex;

    align-items:center;

    gap:35px;

    list-style:none;

    margin:0;
}

.desktop-menu li{

    position:relative;
}

.desktop-menu a{

    color:#0f172a;

    font-weight:600;

    font-size:15px;

    position:relative;

    transition:.3s;
}

.desktop-menu > ul > li > a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:#0B7A3E;

    transition:.3s;
}

.desktop-menu > ul > li > a:hover::after{

    width:100%;
}

/* ===================================
   DROPDOWN
=================================== */

.dropdown-menu{

    position:absolute;

    top:130%;

    left:50%;

    transform:
    translateX(-50%)
    translateY(15px);

    min-width:260px;

    background:#fff;

    border-radius:20px;

    padding:12px;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);
}

.dropdown:hover .dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:
    translateX(-50%)
    translateY(0);
}

.dropdown-menu li{

    width:100%;
}

.dropdown-menu a{

    display:block;

    padding:12px 15px;

    border-radius:12px;

    color:#334155;
}

.dropdown-menu a:hover{

    background:#f8fafc;

    color:#0B7A3E;
}

/* ===================================
   ACTIONS
=================================== */

.header-actions{

    display:flex;

    align-items:center;

    gap:15px;
}

.donate-btn{

    padding:14px 24px;

    border-radius:14px;

    background:
    linear-gradient(
    135deg,
    #0B7A3E,
    #14532D);

    color:#fff;

    font-weight:700;

    box-shadow:
    0 10px 25px rgba(11,122,62,.25);

    transition:.3s;
}

.donate-btn:hover{

    transform:
    translateY(-3px);
}

/* ===================================
   MOBILE BUTTON
=================================== */

.mobile-menu-btn{

    display:none;

    width:48px;
    height:48px;

    border:none;

    border-radius:12px;

    background:#f1f5f9;

    font-size:22px;

    cursor:pointer;
}

/* ===================================
   MOBILE OVERLAY
=================================== */

.mobile-overlay{

    position:fixed;

    inset:0;

    background:
    rgba(0,0,0,.45);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:9998;
}

.mobile-overlay.active{

    opacity:1;

    visibility:visible;
}

/* ===================================
   MOBILE DRAWER
=================================== */

.mobile-drawer{

    position:fixed;

    top:0;
    right:-100%;

    width:320px;

    height:100vh;

    background:#fff;

    z-index:9999;

    transition:.35s;

    padding:25px;

    overflow-y:auto;
}

.mobile-drawer.active{

    right:0;
}

.drawer-top{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:30px;
}

.drawer-top h3{

    color:#14532D;
}

.drawer-top button{

    width:42px;
    height:42px;

    border:none;

    border-radius:12px;

    background:#f1f5f9;

    cursor:pointer;
}

.mobile-drawer ul{

    list-style:none;
}

.mobile-drawer li{

    margin-bottom:12px;
}

.mobile-drawer a{

    display:block;

    padding:14px 16px;

    border-radius:12px;

    background:#f8fafc;

    color:#14532D;

    font-weight:600;
}

.mobile-donate{

    background:
    linear-gradient(
    135deg,
    #0B7A3E,
    #14532D) !important;

    color:#fff !important;
}

/* ===================================
   TABLET
=================================== */

@media(max-width:1100px){

    .desktop-menu{

        display:none;
    }

    .mobile-menu-btn{

        display:block;
    }

    .donate-btn{

        display:none;
    }
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:768px){

    .site-header{

        top:8px;
    }

    .header-wrapper{

        height:80px;

        padding:0 18px;
    }

    .logo-content span{

        display:none;
    }

    .logo-content h2{

        font-size:15px;
    }

    .logo-icon{

        width:48px;
        height:48px;
    }

    .mobile-drawer{

        width:100%;
    }
}