/* ====== Index Page Content ====== */
.hero-section {
  padding-bottom: 2rem;
}
.hero-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.hero-text {
  flex: 1 1 50%;
  font-size: 1.25rem;
  line-height: 1.7;
}
.hero-heading {
  font-size: 2.8rem;
  margin-bottom: 0.3rem;
}
.hero-subheading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
  font-weight: bold;
}
.subscribe-button {
  display: inline-block;
  margin-top: 1rem;
  background-color: #6e4b3a;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.subscribe-button:hover {
  background-color: #543626;
}
.hero-image {
  flex: 1 1 40%;
  text-align: center;
}
.hero-image img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* ====== Bean Gallery ====== */
.bean-type-section h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  text-align: left;
}
.bean-type-gallery {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.bean-type-gallery img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  background-color: #f8f3e9;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}
.bean-type-gallery img:hover {
  transform: scale(1.05);
}

/* ====== Roast Gallery ====== */
.roast-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.coffee-pack {
  width: 180px;
  height: 240px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.coffee-pack-large {
  width: 240px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  max-width: 100%;
}

/* ====== Responsive (Mobile) ====== */
@media (max-width: 700px) {
  .hero-flex {
    flex-direction: column;
  }
  .hero-text {
    text-align: center;
    font-size: 1.1rem;
  }
  .hero-heading {
    font-size: 2.2rem;
  }
  .hero-subheading {
    font-size: 1.3rem;
  }
  .hero-image img {
    width: 100%;
    max-width: 260px;
  }
  .bean-type-gallery img,
  .coffee-pack {
    width: 45%;
    height: auto;
  }
  .coffee-pack-large {
    width: 90%;
  }
}
