

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0B2F40;
}
.top-bar {
  background-color: #775729;
  padding: 20px;
  display: flex;
  align-items: center;
  color: white;
}

.top-bar img {
  height: 60px;
  margin-right: 15px;
}

.top-bar h1 {
  font-size: 20px;
  margin: 0;
  font-family: 'Fredoka', sans-serif;
}
.nav-bar {
  background-color: white;
  border-radius: 30px;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  padding: 19px 80px;
  gap: 150px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 15px 20px;
  gap: 20px;
}

@media (max-width: 600px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

.nav-bar a {
  color: black;
  text-decoration: none;
  font-weight: 600;
}

.blue-strip {
  background-color: #0B2F40;
  height: 20px;
}

.section {
  padding: 40px 20px;
  color: white;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.brown-section {
  background-color: #775729;
}

.blue-section {
  background-color: #0B2F40;
}

.section h2 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: 'Fredoka', sans-serif;
  animation: fadeRight 1s ease-in-out;
}

.section p {
  font-size: 1.4rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Coming Soon', sans-serif;
  animation: fadeLeft 1s ease-in-out;
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.main-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px;
}

.section {
  padding: 40px 20px;
  color: white;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
 .section {
  min-height: 100vh; /* allows content to grow beyond */
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

}

html {
  scroll-behavior: smooth;
}

.scroll-container {
  scroll-snap-type: y mandatory;
}

.section {
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 80px 20px 40px;
  box-sizing: border-box;
}




.footer {
  background-color: #86868D;
  color: #222;
  display: flex;
  justify-content: space-between;
  padding: 30px 40px;
  align-items: center;
  font-family: 'Fredoka', sans-serif;
  border-top: 4px solid #a856ec;
}

.footer-left h3 {
  color: #FFFFFF;
  margin-bottom: 22px;
  font-weight: bold;
  font-size: 24px;
}

.footer-left p {
  margin: 8px 0;
  font-size: 14px;
}

.footer-left i {
  margin-right: 10px;
}

.footer-right {
  text-align: center;
}

.footer-logo {
  width: 60px;
  margin-bottom: 5px;
}

.footer-brand {
  color: #FFFFFF;
  font-weight: bold;
  font-size: 26px;

}