/* TYPOGRAPHY & COLORS */
body {
  font-family: "Lora", serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333333; /* charcoal for readability */
  background: #f5f5f5;
}

h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700; /* Bold */
}

h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600; /* Semi-Bold */
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500; /* Medium */
}

p {
  font-family: "Lora", serif;
  font-weight: 400;
}

.caption,
.footnote {
  font-family: "Lora", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.85rem;
  color: #666666;
}

.microcopy,
.label {
  font-family: "SNPP ET", "Roboto Mono", monospace;
  font-weight: 400;
  font-size: 0.85rem;
  color: #555555;
}

.btn {
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600; /* Medium for CTA */
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

/* HERO */
.hero {
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background: radial-gradient(
      circle at center,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.3) 40%,
      rgba(0, 0, 0, 0.05) 80%,
      rgba(0, 0, 0, 0) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.15) 50%,
      rgba(0, 0, 0, 0) 100%
    );
}

.hero-bg1 {
  background: url("../assets/family.jpg") no-repeat center center/cover;
}

.hero-bg2 {
  background: url("../assets/father-baby.jpg") no-repeat center center/cover;
}

.hero-bg3 {
  background: url("../assets/parade.jpg") no-repeat center center/cover;
}

.hero-bg4 {
  background: url("../assets/mother-child.jpg") no-repeat center center/cover;
}

.hero-bg5 {
  background: url("../assets/mother-child2.jpg") no-repeat center center/cover;
}

.hero-hummingbird {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  animation: flutter 3s ease-in-out infinite;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 2.8em;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #f5f5f5;
}

.hero-btn {
  background: #ffd700;
  color: #003366;
  padding: 16px 32px;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.hero-btn:hover {
  background: #ff6f61; /* coral hover */
  color: #fff;
  transform: scale(1.05);
}

@keyframes flutter {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* FEATURES */
#features {
  padding: 80px 20px;
  text-align: center;
}

.feature-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  width: 250px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card i {
  color: #008080;
  margin-bottom: 15px;
}
.card h3 {
  margin-bottom: 10px;
}
.card p {
  font-size: 0.95em;
  color: #333333;
}

.coming-soon {
  margin-top: 20px;
  color: #333333;
  opacity: 0.5;
}

/* MOCKUP */
.mockup-container {
  position: relative;
  display: inline-block;
  margin-top: 40px;
}

.mockup {
  max-width: 75%;
  border-radius: 12px;
  margin: 40px auto;
  text-align: center;
}

.mockup-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* space between cards */
  justify-content: center;
}

.mockup-card {
  flex: 1 1 200px; /* grow, shrink, base width */
  max-width: 250px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mockup-card img {
  width: 100%;
  display: block;
}

.mockup-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* SIGNUP */
.signup-section {
  padding: 80px 20px;
  text-align: center;
}

.signup-section form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.signup-section input {
  padding: 14px;
  width: 280px;
  max-width: 100%;
  border-radius: 6px;
  border: 1px solid #008080;
  font-family: "Lora", serif;
}

.signup-btn {
  padding: 14px 28px;
  background: #ffd700;
  color: #003366;
  border: none;
  cursor: pointer;
  font-weight: 700;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  transition: background 0.3s ease, transform 0.2s ease;
}
.signup-btn:hover {
  background-color: #ff6f61;
  color: #fff;
  transform: translateY(-2px);
}

/* COMMUNITY */
.community-section {
  padding: 60px 20px;
  text-align: center;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.social-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  transition: transform 0.3s ease;
}
.social-btn:hover {
  transform: scale(1.2);
}
.discord {
  background: #7289da;
}
.twitter {
  background: #1da1f2;
}
.instagram {
  background: #c13584;
}
.facebook {
  background: #1877f2;
}

/* FOOTER */
footer {
  background: #003366;
  color: #fff;
  padding: 20px;
  text-align: center;
}

/* EFFECTs */
.glo {
  filter: drop-shadow(1px 1px 7px rgba(231, 226, 226, 0.5));
}

/* FADE-IN ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}
.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .feature-cards {
    flex-direction: column;
    align-items: center;
  }
  .mockup {
    max-width: 200px;
  }
}
@media (max-width: 480px) {
  .signup-section form {
    flex-direction: column;
  }

  .signup-section input[name="email"],
  .signup-section input[name="name"],
  .signup-btn {
    width: 90%;
    max-width: 100%;
  }

  .signup-btn {
    margin: 0 auto;
    display: block;
  }
}
