:root {
  --kopi-brown: #4e342e;
  --kopi-brown-dark: #3e2a24;
}
body {
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial;
  background-color: #fffaf6;
  color: #222;
}

/* Navbar */
.navbar {
  background-color: var(--kopi-brown);
}
.navbar .navbar-brand,
.navbar .nav-link,
.navbar .dropdown-toggle {
  color: #fff !important;
}
.navbar .nav-link:hover,
.navbar .dropdown-item:hover {
  color: #f8f0ec !important;
}

/* Hero carousel */
#heroCarousel {
  position: relative;
}
#heroCarousel .hero-img {
  width: 100%;
  max-height: 650px;
  object-fit: cover;
}
.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45));
  z-index: 1;
}
.carousel-caption {
  z-index: 2;
  bottom: 20%;
}
.carousel-caption h2 {
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
.carousel-caption p {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Sections */
.section {
  padding: 70px 0;
}
.section.bg-light {
  background-color: #fbf7f4;
}

/* Cards */
.card-title {
  color: var(--kopi-brown-dark);
}

/* Social contact cards */
.social-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.social-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.social-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  font-size: 22px;
  margin-right: 12px;
}
.icon-instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}
.icon-facebook {
  background: #1877f2;
}
.icon-whatsapp {
  background: #25d366;
}
.icon-email {
  background: #6c63ff;
}
.icon-address {
  background: #4e342e;
}

/* WhatsApp floating button */
.btn-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  z-index: 1100;
}
.btn-whatsapp:hover {
  background-color: #20b858;
  color: white;
}

/* Footer */
footer {
  background: linear-gradient(90deg, var(--kopi-brown), var(--kopi-brown-dark));
  color: #fff;
  padding: 24px 0;
}

@media (max-width: 576px) {
  .carousel-caption {
    bottom: 10%;
    padding: 0 12px;
  }
  .carousel-caption h2 {
    font-size: 1.25rem;
  }
}
