/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth; /* The smooth scroll magic */
}

body {
  font-size: 18px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #f5f5f7;
  color: #1d1d1f;
  line-height: 1.5;
}

.no-bullets {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: smaller;
}

/* iPhone 13 Viewport Simulation (for desktop testing) */
.container {
  max-width: 390px;
  margin: 0 auto;
  background: white;
  min-height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-padding-top: 60px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo-container {
  padding: 10px;
}

.site-logo {
  width: 140px;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .site-logo {
    width: 220px;
  }
}

@media (min-width: 1024px) {
  .site-logo {
    width: 320px;
  }
}

/* Sticky Navigation */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px); /* iPhone-style frosted glass */
  border-bottom: 1px solid #d2d2d7;
  padding: 15px 0;
}

nav {
  display: flex;
  justify-content: space-around;
}

nav a {
  text-decoration: none;
  color: #0066cc;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Full-height Sections */
.view {
  height: 100vh; /* Each section takes one full screen */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

#home {
  background-color: #ffffff;
}
#values {
  background-color: #fbfbfd;
}
#vision {
  background-color: #fbfbfd;
}
#about {
  background-color: #fbfbfd;
}
#opportunities {
  background-color: #fbfbfd;
}
#contact {
  background-color: #ffffff;
}
