@font-face {
    font-family: "ParangoOtw01Bold-Regular";
    src: url("https://db.onlinewebfonts.com/t/9a1ec757a67db911a72c635dfecceb72.eot");
    src: url("https://db.onlinewebfonts.com/t/9a1ec757a67db911a72c635dfecceb72.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/9a1ec757a67db911a72c635dfecceb72.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/9a1ec757a67db911a72c635dfecceb72.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/9a1ec757a67db911a72c635dfecceb72.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/9a1ec757a67db911a72c635dfecceb72.svg#Parango OT W01 Bold")format("svg");
}
 
/* Global reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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 */
.branding-header {
  position: relative;
  width: 100%;
  background: #c9935b;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0.5rem 2rem;
  gap: 1rem;
  height: 71px;
  z-index: 6;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.16); 
}

.contact-us {
  color: white;
  font-size: 1.25rem;
  margin-left: auto;
}

.branding-header img {
  height: 32px;
  width: auto;
  cursor: pointer;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.16);
}

.branding-header-large {
  position: relative;
  width: 100%;
  background: #b21515;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0rem 1rem;
  gap:1rem;
  height: 200px;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.16);
  z-index: 5;
}


.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 4rem;
  height: 3rem;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  touch-action: manipulation;
  overflow: hidden;
}

.hamburger span {
  display: block;
  height: 4px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* Animation when "open" class is applied */
.hamburger.open span:nth-child(1) {
  transform: translateY(22px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-22px) rotate(-45deg);
}



/* Sidebar menu */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 300px;
  height: 100%;
  background-color: #b21615;
  color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  margin-bottom: 1.5rem;
}

.sidebar ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
}

.sidebar.active {
  right: 0;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}
/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 500px;
  background: url('img/rush0.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('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;
  }

  .branding-header {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .contact-us {
    margin-right: 0;
    text-align: center;
  }
}
