/* waitlist.css — dark/glass theme consistent with About/Home */

/* Base */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: linear-gradient(to bottom, #800000, #000000);
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  min-height: 100vh;
}

/* Reuse site-wide wrappers */
.background-wrapper {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to bottom, #800000, #000000);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.landing-container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/* Nav (matching dark layout) */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 16px 20px;
  z-index: 999;
}


/* Make the nav/menu identical */
nav {
  position: fixed;
}
.menu-button-container { 
  position: fixed; top: 20px; right: 20px; z-index: 999; width: 25px;
}
.menu-button { cursor: pointer; width: 20px; height: 20px; border-radius: 50%; position: relative; }
.menu-content {
  position: absolute;
  top: 100%;
  right: 0;
  width: 200px;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 12px 16px;
  border-radius: 8px;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.menu-content.active { opacity: 1; pointer-events: auto; }
.menu-content ul { list-style: none; padding: 0; margin: 0; }
.menu-content li { margin-bottom: 10px; }
.menu-content a { text-decoration: none; color: #fff; font-size: 16px; }

/* Footer (reuse about.css) */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 40px 30px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  border-top: 1px solid #222;
  margin-top: 0;
}
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-left img {
  width: 140px;   /* make logo bigger */
  height: auto;
  margin-bottom: 10px;
}
.footer-right a { color: #bbb; transition: color 0.3s ease; font-size: 20px; }
.footer-right a:hover { color: #fff; }


.logo {
  position: fixed;
  top: -95px;
  left: -20px;
  width: 240px;
  height: auto;
}

/* Menu button & dropdown (reuse class names from site) */
.menu-button-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 25px;
}
.menu-button { cursor: pointer; width: 20px; height: 20px; border-radius: 50%; position: relative; }
.menu-content {
  position: absolute; top: 100%; right: 0; width: 200px;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 12px 16px; border-radius: 8px; z-index: 1001;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.menu-content.active { opacity: 1; pointer-events: auto; }
.menu-content ul { list-style: none; padding: 0; margin: 0; }
.menu-content li { margin-bottom: 10px; }
.menu-content a { text-decoration: none; color: #ffffff; font-size: 16px; }

/* Page content container */
.wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 16px;
  padding-top: 100px; /* account for fixed nav */
}

/* Hero */
.hero { margin: 36px 0 8px; text-align: left; }
.hero h1 { font-size: 36px; margin: 0 0 8px; }
.lead { color: #e6e6e6; line-height: 1.6; }

/* Glass card (matches vision-glass vibe) */
.card {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  padding: 20px;
  margin-top: 16px;
  color: #fff;
}

/* Success card state */
.card.success h2 { margin-top: 0; }

/* Form */
.form label { display: block; font-size: 14px; margin-bottom: 12px; }
.form input, .form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  font-size: 14px;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 12px;
  outline: none;
}
.form input::placeholder, .form textarea::placeholder { color: rgba(255,255,255,0.65); }
.form input:focus, .form textarea:focus {
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.12);
}

/* Buttons (match your white pill style) */
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: #000;
  background: rgba(255,255,255,0.88);
  font-weight: 700;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease;
}
.btn.primary { border: 0; }
.btn:hover {
  background-color: #eaeaea;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255,255,255,0.18);
}

/* Alerts */
.alert {
  border-radius: 14px;
  padding: 12px 14px;
  margin-top: 16px;
  font-size: 14px;
}
.alert-error {
  background: rgba(255, 87, 87, 0.15);
  color: #ffd1d1;
  border: 1px solid rgba(255, 87, 87, 0.35);
}
.alert-error ul { margin: 0; padding-left: 18px; }

/* Footer (dark) */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 40px 30px;
  font-size: 14px;
  border-top: 1px solid #222;
  margin-top: 32px;
}
.footer-content { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-logo-img { height: 28px; display: block; margin-bottom: 6px; }
.footer-content .right a { margin-left: 12px; color: #bbb; transition: color .2s ease; font-size: 18px; }
.footer-content .right a:hover { color: #fff; }

/* Responsive tweaks */
@media (max-width: 600px) {
  .hero h1 { font-size: 28px; }
  .lead { font-size: 15px; }
  .btn { padding: 10px 16px; font-size: 14px; }
}
