* {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}
html,
body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 1;
}

.modal-content {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 36rem;
  position: relative;
  z-index: 2;
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .modal-content {
    padding: 1rem;
    width: 95%;
  }
}

/* Hero Section Responsive Heights */
.hero-section {
  height: 450px;
}

@media (min-width: 640px) {
  .hero-section {
    height: 500px;
  }
}

@media (min-width: 768px) {
  .hero-section {
    height: 600px;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    height: 700px;
  }
}

@media (min-width: 1280px) {
  .hero-section {
    height: 800px;
  }
}

@media (min-width: 1536px) {
  .hero-section {
    height: 900px;
  }
}

@media (min-width: 1920px) {
  .hero-section {
    height: 1000px;
  }
}

@media (min-width: 2560px) {
  .hero-section {
    height: 1200px;
  }
}

@media (min-width: 3840px) {
  .hero-section {
    height: 1400px;
  }
}
