body {
  font-family: 'Quicksand', sans-serif;
  background: #fff7f3;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  padding: 2rem;
  background-color: #fff0eb;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin: 0;
  color: #6a4a4a;
}

.tagline {
  font-size: 1.2rem;
  color: #a87565;
  margin-top: 0.5rem;
}

.carousel-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 2rem 4rem;
}

.carousel-container {
  width: 100%;
  max-width: 340px; /* was 420px – reduced to fit 3 per row */
  aspect-ratio: 3 / 4;
  background: #fffaf8;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
  padding: 12px;
  box-sizing: border-box;
  background-color: #fff;
}

.carousel-image.active {
  opacity: 1;
  z-index: 1;
  transform: scale(1.03);
}

.carousel-caption {
  margin-top: auto;
  padding: 0.75rem;
  background: #fff0eb;
  font-weight: 600;
  color: #6a4a4a;
  position: relative;
  z-index: 2;
  font-size: 1rem;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #fff0eb;
  color: #a87565;
  font-size: 0.9rem;
}
