html {
  scroll-behavior: smooth;
}

/* ---------- Hero background ---------- */
.hero-bg {
  background-color: #2b1f17;
  background-image: url('../assets/images/hero.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(20, 14, 9, 0.75) 0%,
    rgba(20, 14, 9, 0.55) 45%,
    rgba(20, 14, 9, 0.85) 100%
  );
}

/* subtle wood grain texture used behind cafe section */
.wood-texture {
  background-image: repeating-linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.05) 0px,
    rgba(255, 255, 255, 0.05) 2px,
    transparent 2px,
    transparent 12px
  );
}

/* ---------- Image placeholders ---------- */
/* Until real photos are added to assets/images, these tiles show a warm
   gradient placeholder so the layout never looks broken. */
.img-placeholder {
  background: linear-gradient(135deg, #6b4a30 0%, #4a3324 100%);
}

.gallery-tile {
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Feature cards (About section) ---------- */
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(107, 74, 48, 0.12);
  border-radius: 1rem;
  padding: 1.1rem;
}

.feature-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

/* ---------- Cafe menu list ---------- */
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(244, 236, 221, 0.2);
  padding-bottom: 0.6rem;
  color: rgba(244, 236, 221, 0.9);
  font-size: 0.95rem;
}

.menu-item-featured {
  background: rgba(201, 138, 63, 0.1);
  border: 1px solid rgba(224, 164, 88, 0.35);
  border-bottom: 1px solid rgba(224, 164, 88, 0.35);
  border-radius: 0.75rem;
  padding: 0.7rem 0.9rem;
  margin: -0.1rem 0 0.1rem;
}

.menu-badge {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.65rem;
  font-weight: 700;
  color: #2b1f17;
  background: #e0a458;
  border-radius: 9999px;
  padding: 0.1rem 0.5rem;
}

/* ---------- Checkmark list (Prices section) ---------- */
.check-item {
  position: relative;
  padding-left: 1.6rem;
}

.check-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #c98a3f;
  font-weight: 700;
}

/* ---------- Contact blocks ---------- */
.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-icon {
  font-size: 1.4rem;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 236, 221, 0.08);
  border: 1px solid rgba(224, 164, 88, 0.25);
  border-radius: 0.85rem;
}

/* ---------- CTA icon buttons (hero) ---------- */
.cta-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgba(244, 236, 221, 0.1);
  border: 1px solid rgba(224, 164, 88, 0.3);
  color: #f4ecdd;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cta-icon-btn:hover {
  background: #c98a3f;
  color: #2b1f17;
}

/* ---------- Mobile nav links ---------- */
.mobile-link {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(224, 164, 88, 0.1);
}

/* ---------- Form elements ---------- */
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b4a30;
  margin-bottom: 0.35rem;
}

.form-input {
  width: 100%;
  border: 1px solid rgba(107, 74, 48, 0.25);
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  color: #2b1f17;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  border-color: #c98a3f;
}
