/* styles.css */

/* 1. Reset & reserve space for navbar */
html,
body {
  height: 100%;
  margin: 0;
  padding-top: 4rem; /* adjust to match your navbar’s height */
  font-size: 1rem;
}

/* 2. Full-width, top-aligned background */
body {
  background: url("../images/background.png") top center / cover no-repeat fixed;
}

/* 3. Transparent, fixed navbar with button-style links */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent !important;
  z-index: 1000;
  padding: 0.5rem 1rem;
}
.navbar .navbar-brand,
.navbar .nav-link {
  color: #fff !important;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 0.25rem;
  padding: 0.4rem 0.8rem;
  margin: 0 0.25rem;
  transition: background-color 0.2s;
}
.navbar .navbar-brand:hover,
.navbar .nav-link:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

/* 4. “Soft-box” content sections */
.content-section,
.content-section {
  margin: 2rem 25%;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  overflow: visible;
}
.content-section.full {
  max-height: none;
}


/* ── MOBILE OVERRIDES ───────────────────────────────────────────── */
@media (max-width: 1023px) {
  .navbar {
    background-color: rgba(248, 249, 250, 0.7) !important;
  }

  .navbar-brand {
    font-size: 1rem;
    margin-right: 1rem;
  }

  .navbar-nav .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    margin: 0.25rem 0;
    background-color: transparent !important;
    color: #212529 !important;
  }

  .content-section,
  .content-section.full {
    margin: 1rem 5%;
    padding: 1rem;
    font-size: 0.85rem;
    max-height: none;
    overflow-y: visible;
  }

  body {
    background-image: url("../images/background.png");
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-size: 1rem;
  }

  input,
  textarea {
    margin-bottom: 1rem;
  }
}

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  font-size: 0.8rem;
  color: #555;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  bottom: 0;
  width: 100%;
  background-color: rgba(248, 249, 250, 0.9);
}

.tagline-list {
  list-style: disc;
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.tagline-list li {
  margin-bottom: 0.5rem;
}
