/* ==========================================
   GameTech Navbar System
========================================== */


/* =========================
   MAIN NAVBAR
========================= */

.navbar{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:82px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 40px;

    background:rgba(10,10,10,.88);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(92,255,92,.15);

    z-index:100000;

}


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

.nav-logo{

    display:flex;

    align-items:center;

    gap:12px;

    color:white;

    font-size:26px;

    font-weight:700;

}


.nav-logo img{

    width:48px;

    height:48px;

    object-fit:contain;

}



/* =========================
   NAV LINKS
========================= */

.nav-links{

    display:flex;

    align-items:center;

    gap:30px;

}


.nav-links a{

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}


.nav-links a:hover{

    color:#5CFF5C;

}



/* =========================
   DROPDOWN BUTTON
========================= */

.drop-btn{

    background:none;

    border:none;

    color:white;

    cursor:pointer;

    font-size:16px;

    font-weight:600;

    transition:.3s;

}


.drop-btn:hover{

    color:#5CFF5C;

}



/* =========================
   DROPDOWN HOLDER
========================= */

.nav-dropdown{

    position:relative;

}



/* =========================
   SERVICES DROPDOWN
========================= */

.services-dropdown{

    position:absolute;

    top:35px;

    left:50%;

    transform:translateX(-50%);

    width:340px;

    background:rgba(20,20,20,.96);

    backdrop-filter:blur(20px);

    border:1px solid rgba(92,255,92,.25);

    border-radius:18px;

    padding:18px;

    display:none;

    box-shadow:
    0 15px 50px rgba(0,0,0,.5),
    0 0 25px rgba(92,255,92,.15);

}


.nav-dropdown:hover .services-dropdown{

    display:block;

}



.services-dropdown h3{

    color:#5CFF5C;

    text-align:center;

    margin-bottom:15px;

    border-bottom:1px solid rgba(255,255,255,.1);

    padding-bottom:10px;

}



.services-dropdown a{

    display:block;

    padding:10px 12px;

    color:#eee;

    border-radius:10px;

    transition:.25s;

}


.services-dropdown a:hover{

    background:rgba(92,255,92,.12);

    color:#5CFF5C;

    transform:translateX(6px);

}



/* =========================
   CONTACT DROPDOWN
========================= */


.contact-dropdown{

    position:absolute;

    top:35px;

    right:0;

    width:340px;


    background:rgba(20,20,20,.96);

    backdrop-filter:blur(20px);

    border:1px solid rgba(92,255,92,.25);

    border-radius:18px;

    padding:20px;

    display:none;


    box-shadow:
    0 15px 50px rgba(0,0,0,.5),
    0 0 25px rgba(92,255,92,.15);

}



.nav-dropdown:hover .contact-dropdown{

    display:block;

}



.contact-dropdown h3{

    color:#5CFF5C;

    text-align:center;

    margin-bottom:18px;

    padding-bottom:10px;

    border-bottom:1px solid rgba(255,255,255,.1);

}



.contact-item{

    color:#ddd;

    font-size:14px;

    line-height:1.7;

    margin-bottom:15px;

}



/* =========================
   WHATSAPP BUTTONS
========================= */


.contact-whatsapp{

    display:flex;

    flex-direction:column;

    gap:12px;

    margin:18px 0;

}



.wa-btn{

    display:block;

    text-decoration:none;

    text-align:center;

    padding:12px;

    border-radius:12px;

    background:#25D366;

    color:white!important;

    font-weight:600;

    transition:.3s;

}



.wa-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(37,211,102,.3);

}



/* =========================
   SOCIAL BUTTONS
========================= */


.contact-social{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:10px;

    margin-top:18px;

}



.contact-social a{

    text-decoration:none;

    color:white;

    text-align:center;

    padding:10px;

    border-radius:10px;

    background:rgba(255,255,255,.05);

    transition:.3s;

}



.contact-social a:hover{

    background:rgba(92,255,92,.15);

    color:#5CFF5C;

}



/* =========================
   MOBILE
========================= */

@media(max-width:900px){


.navbar{

    padding:0 20px;

}


.nav-links{

    gap:15px;

}


.services-dropdown,
.contact-dropdown{

    right:-80px;

}


}

/* =================================
   DROPDOWN HOVER BRIDGE
================================= */

.nav-dropdown::after{

    content:"";

    position:absolute;

    top:100%;

    left:0;

    width:100%;

    height:20px;

}

/* Mobile menu positioning */
.navbar {
    position: relative;
    z-index: 50;
}
