@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');

/* MOBILE HEADER */
.mobile-header {
  background: #fff;
  color: #fff;
  padding: 10px 15px;
}
.mobile-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-logo img {
  height: 40px;
}
.mobile-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    gap: 5px;
}

.mobile-logo span {
    font-family: "League Spartan", sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    color: #383778;
    letter-spacing: 1.5px;
    padding: 7px 0 0 0;
}

i.fas.fa-times {
    color: #fff;
    z-index: 1111111;
    font-size: 19px;
    position: absolute;
    top: 7px;
    right: 10px;
}



.menu-toggle {
  font-size: 24px;
  background: none;
  border: none;
  color: #383778;
  cursor: pointer;
}

/* MOBILE MENU PANEL */
.mobile-menu-panel {
  background: #383778;
  color: #fff;
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  overflow-y: auto;
  transition: right 0.3s ease;
  padding: 20px;
  z-index: 9999;
}
.mobile-menu-panel.open {
  right: 0px;
}
.mobile-nav {
  list-style: none;
  padding: 0;
}
.mobile-nav > li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 12px 0;
    font-size: 18px;
    margin: 0 0px 0 0px;
    font-weight: 400;
    font-family: "Barlow Condensed", sans-serif;
    letter-spacing: 1.4px;
}

/* Smooth Dropdown Animation */
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  list-style: none;
  padding-left: 15px;
  transition: max-height 0.3s ease;
}
.mobile-submenu li a {
  font-size: 18px;
  padding: 8px 0;
}
.mobile-submenu.open {
  max-height: 500px; /* Enough to fit all items */
}
.dropdown-arrow {
  float: right;
  font-weight: bold;
}