
.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
}

.align-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.color-white {
  color: white;
}

.text-size {
  font-size: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  color: var(--btn-fg);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  user-select: none;
}

.btn-tan {
  background: #bd9b77;
}

.btn-size {
  width: 85%;
  height: auto;
}

.hero {
  width: 100%;
  display: flex;
  flex-direction: column; /* stack banner and image */
  overflow: hidden;
}

.hero-banner {
  background: #b7926b;
  color: #fff;
  text-align: center;
  padding: 15px 6px;
  display: flex;
  flex-direction: column; /* stack text and button vertically on mobile */
  align-items: center;
  gap: 8px; /* spacing between text and button */
}

.hero-banner .hero-cta {
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  color: #fff;
  padding: 6px 10px;
  font: inherit;
  border-radius: 4px;
  cursor: pointer;
}

.hero-img {
  position: relative;
  width: 100%;
  height: 530px;
  margin: 0px 0;
  background-size: 800px;
  background-image: url("../images/ahava-cart.jpg");
  background-color: none;
  background-repeat: no-repeat;
  background-position: center 100%;
}

.intro-text {
  width: 90%;
}

.intro-img {
  width: 95%;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

/* Large Screens */
@media (min-width: 900px) {

  .hero-img {
    width: 100%;
    background-size: 100%;
    padding-bottom: 35%;
    background-position: center 85%;
  }

  .btn-size {
    width: 20%;
    height: auto;
  }

  .intro-img {
    margin: 0rem;
    width: 60%;
  }

  .intro-text {
    width: 60%;
  }

  .intro-img {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Responsive Styles ------------------------------------------------------------------------ */
.intro-img img {
  width: 100%;
  aspect-ratio: 1 / 1; /* square box */
  object-fit: cover; /* crop to fill the square */
  border-radius: 12px; /* rounded corners */
  display: block; /* remove inline-gap */
}

.mb-25 {
  margin-bottom: 5rem;
}
