.hero {
  position: relative;
  width: 100%;
  height: auto; /* Desktop grows to fit full image */
  background: #000;
  overflow: hidden;
}

.hero-image-wrapper {
  position: relative; /* Desktop: Image takes up physical space */
  width: 100%;
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: contain; /* Desktop: Show 100% of the image */
  display: block;
}

.hero-content {
  position: absolute; /* Desktop: Text floats over image */
  top: 0;
  left: 0;
  z-index: 5;
  height: 100%;
  width: 100%;
  padding-left: 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
}

/* Title */
.hero-title {
  font-family: "Bodoni Moda", serif;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 20px;
}

/* Subtitle */
.hero-subtitle {
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 300;
  opacity: 0.95;
  margin-bottom: 30px;
}

/* CTA text */
.cta-text {
  color: #d86044;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

/* Store buttons */
.hero-buttons {
  display: flex;
  gap: 14px;
}

.hero-buttons img {
  height: 46px;
  transition: transform 0.2s ease;
}

.hero-buttons img:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero {
    /* RESET: Back to your preferred mobile height */
    height: 50vh;
    min-height: 500px;
    display: block; /* Ensures standard flow */
  }

  .hero-image-wrapper {
    /* RESET: Make image a background layer again */
    position: absolute;
    inset: 0;
    height: 100%;
  }

  .hero-image {
    /* RESET: Back to your preferred mobile crop */
    height: 100% !important;
    object-fit: cover;
    object-position: 80% center;
  }

  .hero-content {
    /* RESET: Relative positioning for mobile centering/padding */
    position: relative;
    height: 100%;
    padding: 0 10%;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
  }

  .hero-title {
    font-size: 2.4rem;
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 24px;
  }

  .cta-text {
    font-size: 1.2rem;
  }

  .hero-buttons img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 480px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons img {
    height: 36px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #e0654a; /* similar to your image */
  color: #fff;
  padding: 30px 50px;
  border-radius: 6px;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
}

.close-btn {
  margin-top: 15px;
  padding: 8px 18px;
  border: none;
  background: #fff;
  color: #333;
  cursor: pointer;
  border-radius: 4px;
}
