.hero {
  width: 100%;
  height: 70vh;
  margin-top: 5vh;
  position: relative;
  /* background-color: rgb(201, 201, 201); */
}

.mainSwiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}


.slide-content {
  display: flex;
  align-items: center;

  width: 65%;
  max-width: 900px;
  min-width: 500px;
  max-height: 330px;
  aspect-ratio: 16 / 7; /* 👈 rectangle stays proportional */

  margin: 16vh auto 0;
  padding: 2rem;

  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.8);
}


.slide-content .text {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex: 1;
  color: #000;
}

.slide-content .text h1 {
  font-size: clamp(1.4rem, 2vw, 2.4rem);
  margin-bottom: 1rem;
}

.slide-content .text p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 1.5rem;
}


.slide-content .text button {
  padding: 0.8rem 1.5rem;
  background: linear-gradient(90deg, #5c3b1e, #8b5a2b, #5c3b1e);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.slide-content .image {
  flex: 0.35;
  display: flex;
  justify-content: center;
}

.slide-content .image img {
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
}



.swiper-button-next,
.swiper-button-prev {
  color: white !important;
}

.swiper-pagination-bullet-active {
  background-color: #462D0C !important;
}



@media (max-width: 1400px) {
  .slide-content {
    transform: scale(0.9);
  }
}

@media (max-width: 1200px) {
  .slide-content {
    transform: scale(0.8);
  }
  .slide-content .text h1 {
    font-size: clamp(2rem, 2vw, 2.4rem);
    margin-bottom: 1rem;
  }

  .slide-content .text p {
    font-size: clamp(1.4rem, 2vw, 1.2rem);
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 1000px) {
  .slide-content {
    transform: scale(0.7);  
  }
  .slide-content .text h1 {
    font-size: clamp(2rem, 2vw, 2.4rem);
    margin-bottom: 1rem;
  }

  .slide-content .text p {
    font-size: clamp(1.4rem, 2vw, 1.2rem);
    margin-bottom: 1.5rem;
  }
}
