body {
  font-family: "ParangoOtw01Bold-Regular", sans-serif;
  background: #fff;
  color: #000;
  margin: 0;
}

.home-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  gap: 0;
  padding: 0;
  overflow-x: clip;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  min-height: clamp(360px, 54vh, 500px);
  background: url("../assets/img/fall_2025_splash.png") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(1rem, 4vw, 2rem);
}

.hero-overlay {
  width: min(90%, 900px);
  background-color: rgba(0, 0, 0, 0.5);
  padding: clamp(1.25rem, 4vw, 2rem);
  border-radius: clamp(14px, 3vw, 24px);
  text-align: center;
}

.hero-title {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.08;
  margin: 0 0 1rem;
}

.newsletter-button {
  display: inline-block;
  max-width: 100%;
  margin-top: 1rem;
  background: black;
  color: white;
  padding: 1rem 2rem;
  border-radius: 20px;
  font-size: 1.5rem;
  line-height: 1.15;
  text-decoration: none;
}

/* Card Section */
.cards-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  max-width: 1400px;
  padding: 2rem;
}

.card {
  background: #b21515;
  color: white;
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-bottom: 4px solid #707070;
}

.card h3 {
  font-size: 1.75rem;
  margin: 1rem;
}

.card p {
  font-size: 1rem;
  margin: 0 1rem 1rem;
  font-family: "Times New Roman", Times, serif;
}

.card .card-button {
  display: block;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 13px;
  padding: 0.75rem;
  margin: auto 1rem 1rem;
  font-size: 1.2rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  color: #fff;
}

/* Call to Action Section */
.call-to-action {
  background: url("../assets/img/shawty-trifling0.png") no-repeat center center/cover;
  width: 100%;
  min-height: clamp(500px, 72vh, 800px);
  padding: clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  color: white;
}

.call-to-action h2 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.08;
}

.family-button {
  display: inline-block;
  max-width: 100%;
  background: #b21515;
  border-radius: 43px;
  padding: 1rem 3rem;
  font-size: 2rem;
  line-height: 1.15;
  color: white;
  text-decoration: none;
  font-family: "ParangoOtw01Bold-Regular", sans-serif;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hero {
    min-height: clamp(320px, 52vh, 430px);
    background-position: center center;
    padding: 1rem;
  }

  .hero-overlay {
    width: min(94%, 620px);
    padding: 1.25rem;
    border-radius: 16px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.75rem);
  }

  .newsletter-button,
  .family-button,
  .card .card-button {
    font-size: 1.15rem;
  }

  .newsletter-button,
  .family-button {
    display: block;
    width: min(100%, 360px);
    margin-left: auto;
    margin-right: auto;
    padding: 0.9rem 1.25rem;
  }

  .cards-section {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem;
  }

  .card {
    max-width: 520px;
  }

  .call-to-action {
    min-height: clamp(420px, 64vh, 600px);
    gap: 1.25rem;
    padding: 1.25rem 1rem;
  }

  .call-to-action h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 330px;
    padding: 0.75rem;
  }

  .hero-overlay {
    width: 100%;
    padding: 1rem;
    border-radius: 13px;
  }

  .hero-title {
    font-size: clamp(1.65rem, 9vw, 2.25rem);
  }

  .cards-section {
    padding: 0.75rem;
  }

  .card h3 {
    font-size: 1.5rem;
    margin: 0.9rem 0.9rem 0.7rem;
  }

  .card p {
    margin: 0 0.9rem 0.9rem;
  }

  .card .card-button {
    margin: auto 0.9rem 0.9rem;
  }

  .call-to-action {
    min-height: 430px;
    padding: 1rem 0.75rem;
  }

  .family-button {
    width: min(100%, 320px);
  }
}
