:root{
    --green:#9CFF00;
    --black:#050605;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    background:var(--black);
    color:#fff;
    font-family:'Inter',sans-serif;
    overflow-x:hidden;   
}

/* =====================================================
   HEADER / NAVBAR
   ===================================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(5, 6, 5, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(156, 255, 0, 0.08);
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 48px; /* Tamed down from 108px! */
    width: 48px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 0 8px rgba(156, 255, 0, 0.4));
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

/* Nav Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: color 0.3s ease, background 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--green);
    background: rgba(156, 255, 0, 0.08);
}

/* Action Buttons Container */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Call Button */
.call-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: #000;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.call-btn strong {
    font-size: 13px;
    letter-spacing: 0.5px;
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(156, 255, 0, 0.3);
}

/* Logout Button */
.logout-form {
    margin: 0;
}

.logout-btn {
    background: transparent;
    border: 1.5px solid var(--green);
    color: var(--green);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: var(--green);
    color: #000;
}

/* Hamburger Toggle (Hidden on Desktop) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--green);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* =====================================================
   HEADER RESPONSIVENESS (MOBILE)
   ===================================================== */
@media (max-width: 900px) {
    .main-nav {
        padding: 0 20px;
        height: 68px;
    }

    .nav-toggle {
        display: flex; /* Show Hamburger */
        order: 3; /* Move to far right */
    }

    .logo-link {
        order: 1;
    }

    .nav-actions {
        order: 2;
        margin-left: auto;
        margin-right: 20px;
    }

    .call-btn {
        padding: 6px 12px;
        font-size: 9px;
    }

    .call-btn strong {
        font-size: 11px;
    }

    /* Hide standard menu and turn it into a drawer */
    .nav-menu {
        position: fixed;
        top: 68px;
        left: 0;
        width: 100%;
        background: rgba(5, 6, 5, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid rgba(156, 255, 0, 0.1);
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.4s ease;
        z-index: 999;
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-menu a {
        width: 100%;
        font-size: 16px;
        padding: 16px 10px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }

    /* Hamburger Animation to "X" */
    .nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}

@media (max-width: 480px) {
    .nav-actions { gap: 10px; }
    .logout-btn { padding: 6px 12px; font-size: 11px; }
    .nav-logo { height: 40px; width: 40px; }
}

/* nav{
    position:fixed;                
    top:0;
    width:100%;
    padding:1px 70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:100;
    background:rgba(5,6,5,.6);
    backdrop-filter:blur(12px);
}

nav a{
    color:#fff;
    margin:0 18px;
    text-decoration:none;
    font-size:13px;
    letter-spacing:1px;
}

nav a.active{color:var(--green)}
.call{font-size:14px} */

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--green);
    border: 1px solid var(--green);
    cursor: pointer;
    padding: 14px 36px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.btn-outline:hover {
    background: var(--green);
    color: #000;
    transform: translateY(-2px);
}


/* GREEN FLOW */
.flow{
    position:absolute;
    inset:-20%;
    background:
        radial-gradient(circle at 60% 40%, rgba(156,255,0,.9), transparent 45%),
        radial-gradient(circle at 75% 70%, rgba(156,255,0,.6), transparent 50%);
    filter:blur(60px);
    z-index:0;
    pointer-events:none;
}


/* FOOTER */
/* ================= FOOTER ================= */

.footer{
    position:relative;              /* stay in normal flow */
    z-index:2;                      /* above .flow */
    /* margin-top:120px; */
    padding:60px 8%;
    background:#050605;
    border-top:1px solid rgba(255,255,255,.08);
}

/* FOOTER CONTENT */
.footer-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

/* TEXT */
.footer p{
    margin:0;
    font-size:13px;
    opacity:.65;
}

.footer span{
    color:#99ff00;
    font-size:13px;
}

/* LINKS */
.footer a{
    color:#fff;
    font-size:13px;
    text-decoration:none;
    opacity:.7;
    margin-left:18px;
}

.footer a:hover{
    color:var(--green);
    opacity:1;
}

/* SOCIAL LINKS */
.footer-social{
    display:flex;
    gap:14px;
}

.footer-social a{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:16px;
    transition:.3s ease;
}

.footer-social a:hover{
    background:var(--green);
    color:#000;
    transform:translateY(-3px);
}

@media(max-width:768px){
    .footer-inner{
        flex-direction:column;
        gap:16px;
    }
}
/* MOBILE */
@media(max-width:768px){
    .footer{
        padding:40px 8%;
    }

    .footer-inner{
        flex-direction:column;
        text-align:center;
        gap:12px;
    }

    .footer a{
        margin-left:0;
    }
}


/* NAV LOGO */
/* .nav-logo{
    height:108px;
    border-radius:100%;
    width:auto;
    filter:
        drop-shadow(0 0 6px rgba(156,255,0,.35))
        drop-shadow(0 0 14px rgba(156,255,0,.25));
} */

.section-inner{
    max-width:1200px;
    margin:0 auto;
    position:relative;
    z-index:2;
}
/* CTA */
.home-cta {
    padding: 120px 10%;
    text-align: center;
    background:
        radial-gradient(circle at center, rgba(156, 255, 0, .18), transparent 55%),
        #050605;
}

.home-cta h2 {
    font-size: 52px;
    margin-bottom: 24px;
    position: relative;
    color: #ccff00;
}

.home-cta p {
    font-size: 18px;
    margin: 20px auto 40px;
    max-width: 650px;
}

/* .logout-btn{
    margin-top:6px;
    background:transparent;
    border:1px solid #9CFF00;
    color:#9CFF00;
    padding:5px 12px;
    border-radius:6px;
    font-size:11px;
    cursor:pointer;
}
.logout-btn:hover{
    background:#9CFF00;
    color:#050605;
} */

/* .call-btn {
    display: inline-block;
    text-align: center;
    padding: 10px 15px;
    background: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.call-btn:hover {
    background: #218838;
}
.logout-form{
    display:flex;
    justify-content:center;
    margin-top:15px;
}

.logout-btn{
    background:transparent;
    color:#d4ff00;
    border:2px solid #d4ff00;
    border-radius:10px;
    padding:10px 25px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.logout-btn:hover{
    background:#d4ff00;
    color:#000;
} */