/* -------------------------
   Font Imports
------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Century+Gothic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ephesis&display=swap');

/* -------------------------
   Base Layout
------------------------- */
body {
  margin: 0;
  font-family: 'Century Gothic', sans-serif;
  background-color: #1a1a1a;
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* -------------------------
   Navigation Bar
------------------------- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background-color: #000;
  flex-wrap: wrap;
  border-bottom: 1px solid #888;
}

.logo {
  font-weight: bold;
  font-size: 1.25rem;
  color: #888;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #888;
  font-size: 1rem;
  position: relative;
  transition: transform 2s ease-in-out;
}

.nav-links a:hover::after,
.nav-links a.active-underline::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #7ec8f0;
}

.nav-links a:hover {
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* -------------------------
   Shared Hero Box Container
------------------------- */
.hero-box {
  background-color: #000;
  border-radius: 1.5rem;
  padding: 1.5rem 2rem;
  margin: 1.5rem auto;
  max-width: 900px;
  box-shadow: 0 0 50px rgba(101, 190, 238, 0.653);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* -------------------------
   Optional Slow Pulse Animation
------------------------- */
.pulse-slow {
  animation: pulse-slow 8s ease-in-out infinite;
}

@keyframes pulse-slow {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* -------------------------
   Footer
------------------------- */
footer {
  background-color: #000;
  color: #888;
  text-align: center;
  padding: 1.5rem 1rem;
  margin-top: auto;
  font-size: 0.85rem;
  border-top: 1px solid #888;
}

footer a {
  color: #888;
  text-decoration: none;
  margin-left: 1rem;
}

footer a:hover {
  text-decoration: underline;
  color: #7ec8f0;
}
