
 
/* Global reset */


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

.home-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0rem;
  padding: 0;
}

/* Top Navigation and Header */













/* Animation when "open" class is applied */








/* Sidebar menu */










/* Show hamburger on mobile */
@media (max-width: 768px) {
  
}
/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 500px;
  background: url("../assets/img/fall_2025_splash.png") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 24px;
  text-align: center;
  max-width: 90%;
}

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

.newsletter-button {
  background: black;
  color: white;
  padding: 1rem 2rem;
  border-radius: 20px;
  font-size: 1.5rem;
  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: "TimesNewRoman-Regular", sans-serif;
}

.card .card-button {
  background: transparent;
  border: 2px solid #fff;
  border-radius: 13px;
  padding: 0.75rem;
  margin: 0 1rem 1rem;
  font-size: 1.2rem;
  text-align: center;
  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%;
  height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  color: white;
}

.call-to-action h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.family-button {
  background: #b21515;
  border-radius: 43px;
  padding: 1rem 3rem;
  font-size: 2rem;
  color: white;
  text-decoration: none;
  font-family: "ParangoOtw01Bold-Regular", sans-serif;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .newsletter-button,
  .family-button,
  .card .card-button {
    width: 100%;
    font-size: 1.2rem;
  }

  .cards-section {
    flex-direction: column;
    align-items: center;
  }

  

  
}
