/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  padding-bottom: 70px; /* space for mobile nav */
}

/* DESKTOP HEADER */
.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #0B1D39;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.logo {
  height: 60px;
  
}

.top-right-list {
  list-style: none;
  display: flex;
  gap: 25px;
}

.top-right-list a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.top-right-list a:hover,
.top-right-list a.active {
  color: #FFC107;
  text-shadow: 0 0 8px #FFC107;
}

/* ============================= */
/* MOBILE STICKY GLASS MENU BAR  */
/* ============================= */
.mobile-bottom-nav {
  display: none;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .top-right-list {
    display: none;
  }

  .header-inner {
    justify-content: center;
    position: relative;
  }
  .logo {
    height: 55px;
  }

  
  /* Floating blurred nav bar */
  .mobile-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    background: rgba(11, 29, 57, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    padding: 10px 0;
    z-index: 9999;
  }

  .mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .mobile-bottom-nav .icon {
    width: 26px;
    height: 26px;
    margin-bottom: 4px;
    stroke: #cbd5e1;
    transition: all 0.3s ease;
  }

  /* Active and hover glow effect */
  .mobile-bottom-nav a.active,
  .mobile-bottom-nav a:hover {
    color: #FFC107;
    text-shadow: 0 0 8px #FFC107;
  }

  .mobile-bottom-nav a.active .icon,
  .mobile-bottom-nav a:hover .icon {
    stroke: #FFC107;
    filter: drop-shadow(0 0 8px #FFC107);
  }
}
