/* ================================
   GLASS HEADER
   ================================ */

.header {
  width: 100%;
  padding: 10px 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.55);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

/* Logo */
.header-logo img {
  width: 34px;
  height: auto;
  transition: 0.25s ease;
}

.header-logo img:hover {
  transform: translateY(-2px);
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 24px;
  margin-left: 24px;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #222;
  transition: 0.25s;
}

.nav-links a:hover {
  color: #3A76F0;
}

/* Header button */
.header-btn {
  margin-left: 35px;
  padding: 9px 20px;
  background: #3A76F0;
  color: white;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
}

.header-btn:hover {
  background: #2F63CC;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58,118,240,0.25);
}

/* ================================
   HAMBURGER MENU
   ================================ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: #222;
  border-radius: 3px;
  transition: 0.3s ease;
}

/* ================================
   MOBILE DROPDOWN MENU
   ================================ */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.mobile-menu a {
  text-decoration: none;
  color: #222;
  font-size: 17px;
  padding: 12px 0;
}

.mobile-menu a:hover {
  color: #3A76F0;
}

.mobile-menu.open {
  display: flex;
}

/* ================================
   MOBILE BEHAVIOR
   ================================ */
@media (max-width: 750px) {
  .nav-links {
    display: none;
  }

  .header-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}


/* ================================
   COMING SOON PAGE
   ================================ */

.coming-soon {
  text-align: center;
  padding: 120px 20px;
  animation: fadeIn 0.6s ease;
}

.coming-soon h1 {
  font-size: 46px;
  font-weight: 900;
  margin-bottom: 15px;
}

.coming-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

/* Loader animation */
.loader {
  width: 45px;
  height: 45px;
  border: 4px solid rgba(0,0,0,0.2);
  border-top-color: #3A76F0;
  border-radius: 50%;
  margin: 0 auto 25px;
  animation: spin 0.75s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.coming-note {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}

/* Fade In Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Optional mobile adjustments */
@media(max-width: 750px) {
  .coming-soon h1 {
    font-size: 36px;
  }
}
