/* ========== Base Styles ========== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0b0f1a;
  color: #ffffff;
}

/* ========== Topbar/Header ========== */
.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 1000;
}

.topbar-inner {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.logo {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ========== Call-to-Action Buttons ========== */
.cta-small {
  background: #00bfff;
  padding: 6px 12px;
  border-radius: 4px;
  color: #000;
  text-decoration: none;
  font-size: 0.8rem;
  transition: 0.3s;
}

.cta-small:hover {
  background: #009acd;
}

.cta-button {
  padding: 12px 24px;
  background: #00bfff;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.cta-button:hover {
  background: #009acd;
}

/* ========== Hero Section ========== */
.hero {
  height: 100vh;
  background-color: #04060a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
}

.hero h1 {
  font-size: 2.2rem;
}

.hero h1, .hero p {
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.urgency {
  color: #00bfff;
  font-size: 1rem;
}

.cta-spacing {
  height: 12px;
}

.hero-gap {
  height: 50px;
}

.hidden {
  display: none;
}

/* ========== Section Styles ========== */
.section {
  padding: 10px 20px;
  max-width: 900px;
  margin: auto;
}

.section.alt {
  background: #11162a;
  border-radius: 8px;
}

/* ========== List Styles ========== */
.bullet {
  list-style: disc;
  padding-left: 20px;
}

.bullet li {
  margin-bottom: 6px;
}

.list {
  padding-left: 20px;
}

.list li {
  margin-bottom: 6px;
}

/* ========== Resource Links ========== */
.links a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  color: #00bfff;
  text-decoration: none;
}

.links a:hover {
  opacity: 0.8;
}

.links a:active {
  color: #66d9ff;
}

.links img {
  width: 30px;
}

.invert {
  filter: invert(1); /* To make dark images light*/
}

/* ========== Final CTA Section ========== */
.cta-final {
  text-align: center;
  padding: 40px 20px;
}

/* ========== Footer Styles ========== */
footer {
  padding: 25px 20px;
  background: #05070d;
}

.footer-inner {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-text {
  max-width: 600px;
}

.footer-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-icons img {
  width: 60px;
}

.branding {
  opacity: 0.6;
  margin-top: 8px;
}

/* ========== Fade-in Animation ========== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Responsive Styles ========== */
@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.6rem;
  }
}
