
/* reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  height: 100%;
  overflow: hidden; /* optional, to avoid body scroll */
  scroll-behavior: smooth;
}

.scroll-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth;
}

.scroll-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

.section {
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem 2rem 2rem;
}

.sticky-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.6);
  padding: 1rem 2rem;
}

.sticky-nav.hidden-nav {
  display: none;
}

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

nav ul {
  list-style: none;
  display: flex;
}

nav li + li {
  margin-left: 1rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.hero {
  height: 100vh;
  scroll-snap-align: start;
  background: url('../images/logo.png') no-repeat center center;
  background-attachment: scroll;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.title-overlay {
  text-align: center;
}

.hidden-in {
  background: #000;
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 2rem;
  display: inline-block;
}

.plain-sight {
  background: #fff;
  color: #000;
  padding: 0.5rem 1rem;
  font-size: 2rem;
  display: inline-block;
}

.how-it-works-heading,
.connect-with-us-heading {
  margin-bottom: 2rem;
  text-align: center;
  background-color: #000;
  color: #fff;
  padding: 1rem;
  border-radius: 6px;
}

.features, .social {
  background: rgba(255,255,255,0.9);
  margin: 2rem auto;
  max-width: 800px;
  border-radius: 8px;
}

.features ul, .social ul {
  list-style: none;
  padding: 0;
}

.features li {
  margin-bottom: 0.75rem;
}

.social a {
  color: #007aff;
  text-decoration: none;
  font-weight: 500;
}

.social-grid {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin-bottom: 2rem;
}

.social-grid li {
  flex: 1;
}

.social-grid .icon,
.social-grid i {
  width: 30px;
  height: 30px;
  margin-bottom: 0.5rem;
}

.support-block {
  margin-top: 2rem;
  padding-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.dot-navigation {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #888;
  border-radius: 50%;
  display: inline-block;
}

.dot:hover {
  background-color: #000;
}

.iconify.icon {
  font-size: 32px;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.footer {
  margin-top: 1rem;
  text-align: center;
  font-size: 1rem;
}

.app-store-button {
  text-align: center;
  margin-top: 1rem;
}

.app-store-button img {
  width: 160px;
  height: auto;
}

.dot.active {
  background-color: #000000;
  box-shadow: 0 0 0 2px white;
}

/* 1) Make the title-overlay a wrapping row */
.section.hero .title-overlay {
  display: flex;
  flex-direction: row;    /* lay children out left→right */
  flex-wrap: wrap;        /* allow wrapping when needed */
  justify-content: center;/* center the row */
  text-align: center;     /* center text inside each child */
}

/* 2) Force the tagline to its own full-width line */
.section.hero .title-overlay .tagline {
  flex-basis: 100%;       /* take up a full row under the title */
  margin: 1rem auto 0;    /* top gap, centered */
  color: #fff;            /* white text */
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.4;
  background: rgba(0,0,0,0.4);
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

/* 3) Ensure the two title divs sit side by side */
.section.hero .title-overlay .hidden-in,
.section.hero .title-overlay .plain-sight {
  flex: none;             /* size to content, don’t stretch */
  display: inline-block;  /* ensure they stay inline */
  margin: 0 0.25em;       /* small gap between them */
}

.manage-image {
  display: block;
  margin: 1rem auto 0; /* adjust as needed */
  max-width: 100%;
  height: 90%;
}