/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #000;
  color: #fff;
}

a {
  text-decoration: none;
  color: #fff;
}

/* Hide mobile nav by default */
nav {
  display: none;
}

/* Hero wrapper */
.hero-wrapper {
  position: relative;
  width: 100%;
}

.hero {
  width: 100%;
  position: relative;
}

.hero img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 1;
}

/* Section layout */
section {
  padding: 1rem 1.5rem 0.5rem 1.5rem;
  max-width: 900px;
  margin: auto;
  text-align: left;
}

h2 {
  font-size: 2rem;
  color: #ddd;
  margin-bottom: 1rem;
}

p {
  color: #ddd;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
}

.cta-line {
  width: 60px;
  height: 2px;
  background-color: #ccc;
  margin-bottom: 0.5rem;
}

.cta-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.callout-text {
  font-weight: bold;
  font-size: 1.2rem;
  color: #ccc;
  text-align: center;
}

.cta-button {
  background-color: #c9924b;
  color: #000;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #4dd0e1;
  color: #000;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: #111;
  color: #666;
}

/* Mobile header (logo only) */
.mobile-header {
  display: none;
  padding: 1rem;
  background-color: black;
  position: relative;
  z-index: 11;
}

.logo-mobile {
  height: 60px;
  width: auto;
}

/* Planning form styles */
.question-section {
  padding: 2rem 1.5rem;
  max-width: 800px;
  margin: 2rem auto;
  text-align: left;
  color: #ddd;
}

.question-text {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.answer-input,
.form-button {
  font-size: 1rem;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 400px;
  display: block;
}

.answer-input {
  border: 1px solid #ccc;
  background-color: #111;
  color: #fff;
}

.form-button {
  font-weight: bold;
  border: none;
  cursor: pointer;
  margin-right: 1rem;
}

.next-button {
  background-color: #c9924b;
  color: black;
}

.next-button:hover {
  background-color: #4dd0e1;
}

.back-button {
  background-color: #444;
  color: #fff;
}

.progress-container {
  width: 100%;
  background-color: #333;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  height: 10px;
}

.progress-bar {
  height: 10px;
  background-color: #c9924b;
  width: 0%;
  transition: width 0.3s ease-in-out;
}

.thank-you a {
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
}

/* Mobile Navigation Overlay */
@media (max-width: 600px) {
  nav {
    display: flex;
    position: absolute;
    top: 60px;
    left: 0;
    width: 180px;
    height: 100%;
    background: transparent;
    z-index: 10;
    padding: 0.5rem;
    flex-direction: column;
  }

  .nav-container {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
    margin-top: auto;
    margin-bottom: 5rem;
  }

  nav ul {
    flex-direction: column;
    gap: 0.1rem;
    width: 100%;
    text-align: left;
    padding-left: 0;
  }

  nav ul li a {
    font-size: 1.4rem;
    padding: 0.1rem 0.5rem;
    display: block;
  }

  .logo-nav {
    display: none;
  }

  .mobile-header {
    display: block;
  }

  .hero {
    margin-top: 0;
    flex: 1;
  }

  .hero img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .cta-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Desktop-only: full image without cropping */
@media (min-width: 601px) {
  .hero {
    height: auto;
    overflow: visible;
  }

  .hero img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .hero-wrapper {
    margin-top: 80px;
  }
}

/* Desktop Top Bar */
.desktop-topbar {
  display: none;
}

@media (min-width: 601px) {
  .desktop-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 0.5rem 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 20;
  }

  .desktop-topbar .logo-nav {
    height: 60px;
  }

  .desktop-nav {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }

  .desktop-nav li a {
    color: white;
    font-weight: bold;
    font-size: 1rem;
    text-shadow: 1px 1px 2px black;
  }

  .desktop-nav li a:hover {
    color: #c9924b;
  }
}
.about-img {
  float: left;
  width: 250px;
  max-width: 45%;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  height: auto;
}
section img {
  width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
  border-radius: 8px;
  margin: 2rem 0;
}
.legal-page h2 {
  font-size: 1.3rem;
  margin-top: 2em;  /* Adds space before each title */
  margin-bottom: 0;   /* Removes space after the title */
  font-weight: 500;
  color: #cccccc;
}
.legal-page h2 + p,
.legal-page h2 + ul {
  margin-top: 0.3em; /* Tiny gap if you want a little breathing room */
  margin-bottom: 3 rem;
}
.desktop-nav a.active,
.nav-container a.active {
  color: grey;
  pointer-events: none; /* optional: disables click on active link */
}
.page-dots {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  border-radius: 50%;
  background-color: lightgray;
}

.dot.active {
  background-color: gray;
}

@media (min-width: 769px) {
  .page-dots {
    display: none;
  }
}

