body {
    margin: 0;
    font-family: Arial, sans-serif;
  }

.hero {
  position: relative;
  min-height: 100vh;
  background: #e74c3c; /* red background */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  overflow: hidden;
}

/* White angled strip at top */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 120px;
  background: white;
  transform: skewY(-3deg);
  transform-origin: top left;
}

.hero h1 {
  font-size: 9rem; /* Bigger */
  font-weight: 900;
  margin: 0;
  text-shadow: 
    4px 4px 0 #fca5a5,
    8px 8px 0 #f87171,
    12px 12px 20px rgba(0,0,0,0.25);
}

.hero h2 {
  font-size: 3rem; /* Bigger */
  font-weight: bold;
  margin: 1.5rem 0 1rem;
}

.hero p {
  font-size: 1.8rem; /* Bigger */
  margin: 0;
}

.hero p span {
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: black;
}

.buttons {
  margin-top: 3rem;
  display: flex;
  gap: 2rem; /* More spacing */
  justify-content: center;
}

.buttons a {
  text-decoration: none;
  padding: 1.2rem 3rem; /* Bigger buttons */
  border-radius: 999px;
  font-size: 1.5rem; /* Bigger font */
  font-weight: bold;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

.buttons a:first-child {
  background: white;
  color: #e74c3c;
}

.buttons a:first-child:hover {
  background: #ffe5e5;
}

.buttons a:last-child {
  background: #f38b82;
  color: white;
}

.buttons a:last-child:hover {
  background: #e67363;
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
  .hero-content {
    top: 20%!important; /* move text higher */
    transform: translateY(-70%)!important;
  }
  .hero h1 {
    font-size: 5rem;
  }
  .hero h2 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1.2rem;
  }
  .buttons a {
    font-size: 1rem;
    padding: 0.8rem 2rem;
  }
}
