/* Dulcinea Lico Bar – wood-inspired rebrand */
body {
  background-color: #E8DCC8;
  color: #2C1810;
  font-family: 'Segoe UI', Georgia, 'Times New Roman', serif;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  height: 60vh;
  max-height: 500px;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.carousel-item {
  min-width: 100%;
  height: 100%;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.glass-effect {
  background: rgba(232, 220, 200, 0.92);
  backdrop-filter: blur(10px);
  border-color: rgba(92, 61, 34, 0.15);
}

/* Typography – warm brown accents */
.title-accent {
  color: #5C3D22;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.hover-wood:hover {
  color: #5C3D22;
  transition: color 0.3s ease;
}

/* Carousel overlay – warm dark tint instead of black */
.carousel-overlay {
  background: linear-gradient(
    to bottom,
    rgba(44, 24, 16, 0.35),
    rgba(44, 24, 16, 0.55)
  );
}

/* Section backgrounds stay cohesive with wood tones */
.section-warm {
  background-color: #D0C0A0;
}

.section-deep {
  background-color: #E0D4C0;
}
