/* ============================================================
   styleindex.css
   - Single CSS file containing page styles + canvas styles
   ============================================================ */

/* Reset & base */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: "Segoe UI", Roboto, sans-serif;
  color: #eaeaea;
  background: #0b0f17; /* fallback if canvas hidden */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Aurora Canvas (particles) ---------- */
#aurora-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  display: block;
  pointer-events: none; /* allow clicks through canvas */
  opacity: 1;
  filter: blur(0.6px); /* mild softness — tweak if desired */
}

/* ---------- Typography ---------- */
h1, h2, h3 { color: #fff; margin-bottom: 8px; }
.glow-text {
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0,255,255,0.22), 0 0 18px rgba(124,124,255,0.06);
}

/* ---------- NAVBAR ---------- */
.custom-navbar {
  background: rgba(2,6,10,0.55);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}
.navbar-brand {
  font-weight: 700;
  color: #7fe7ff !important;
  text-shadow: 0 0 8px rgba(0,200,255,0.45);
}

/* Neon Buttons */
.btn, .nav-link {
  border-radius: 10px;
}
.neon-btn {
  color: #fff !important;
  background: linear-gradient(180deg, rgba(0,255,255,0.09), rgba(0,200,255,0.06));
  padding: 6px 14px !important;
  transition: all 220ms ease;
  box-shadow: 0 6px 20px rgba(0,200,255,0.03), inset 0 -1px 0 rgba(255,255,255,0.02);
}
.neon-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,200,255,0.14);
}

.neon-btn-orange {
  color: #fff !important;
  background: linear-gradient(180deg, rgba(255,120,30,0.09), rgba(255,90,0,0.06));
}
.neon-btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,100,0,0.12);
}

/* Dropdown */
.dark-dropdown {
  background: rgba(3,3,8,0.86);
  border: 1px solid rgba(124,244,255,0.06);
  box-shadow: 0 8px 28px rgba(12,12,20,0.7);
}
.dark-dropdown .dropdown-item { color: #caf8ff; }
.dark-dropdown .dropdown-item:hover { background: rgba(0,255,255,0.06); }

/* ---------- Layout / Content ---------- */
.content-container {
  margin-top: 110px; /* space for fixed navbar */
  padding: 28px 16px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.02);
}

/* Footer */
.footer-text { margin-top: 18px; opacity: 0.8; }

/* Notice box */
.notice-box {
  background: rgba(0,0,0,0.54);
  border-radius: 12px;
  padding: 0;
  margin-top: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(124,244,255,0.03);
}
.notice-header {
  padding: 12px 16px;
  background: linear-gradient(90deg, rgba(0,255,255,0.06), rgba(124,124,255,0.05));
  border-bottom: 1px solid rgba(255,255,255,0.03);
  font-weight: 600;
}
.notice-content ul { padding: 16px; margin: 0; list-style: none; }
.notice-content li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

/* Animation util */
.fade-in { animation: fadeIn 1.2s ease both; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .glow-text { font-size: 1.4rem; }
  .content-container { margin-top: 100px; padding: 20px; }
  .navbar-brand { font-size: 0.95rem; }
}
