/* ---------- Warung Van Damik ---------- */

:root {
  --red: #C81E22;
  --red-dark: #9c1418;
  --green: #1E5631;
  --green-dark: #123a20;
  --gold: #F4C430;
  --cream: #FBEFDC;
  --dark: #241005;
  --font-display: 'Baloo 2', 'Arial Black', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.9em 2em;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-outline {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 6px 0 #c99b0f;
}
.btn-outline:hover { box-shadow: 0 8px 0 #c99b0f; }
.btn-outline:active { transform: translateY(2px); box-shadow: 0 3px 0 #c99b0f; }

.btn-line {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-line:hover { background: #fff; color: var(--red-dark); }

/* ---------- Section 1: Hero ---------- */
.hero {
  position: relative;
  width: 100%;
  line-height: 0;
}
.hero-img { width: 100%; height: auto; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  color: #fff;
  animation: bounce 1.8s infinite;
  opacity: 0.85;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ---------- Section 2: Rame-rame ---------- */
.rame { width: 100%; }
.full-img { width: 100%; height: auto; }
.rame-text {
  background: var(--cream);
  padding: 56px 24px;
  max-width: 760px;
  margin: 0 auto;
}
.rame-text p {
  font-size: 1.15rem;
  line-height: 1.75;
  text-align: center;
  color: #3a2410;
}

/* ---------- Section 3: Proses ---------- */
.proses {
  display: flex;
  flex-wrap: wrap;
  background: var(--dark);
  color: #fff;
}
.proses-img, .proses-text {
  flex: 1 1 480px;
  min-width: 320px;
}
.proses-img { line-height: 0; }
.proses-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px;
}
.proses-text {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.proses-text h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1.15;
  color: var(--gold);
}
.proses-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #ecdfcb;
  max-width: 46ch;
}
.proses-text .btn { align-self: flex-start; }

/* ---------- Section 4: Produk ---------- */
.produk {
  padding: 72px 24px 88px;
  text-align: center;
}
.produk-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--red);
  margin-bottom: 40px;
}
.produk-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 420px));
  gap: 32px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}
.produk-card {
  border: 3px solid var(--dark);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  text-align: left;
  box-shadow: 0 8px 0 rgba(36,16,5,0.08);
}
.produk-card img { width: 100%; height: auto; }
.produk-card-text {
  padding: 22px 24px 26px;
}
.produk-card-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #3a2410;
}

/* ---------- Section 5: Lokasi CTA ---------- */
.lokasi {
  position: relative;
  background: linear-gradient(rgba(30,10,5,0.55), rgba(30,10,5,0.6)),
    url('https://res.cloudinary.com/hy5s7hdp/image/upload/v1787508195/ChatGPT_Image_Aug_24_2026_01_50_24_AM_xf4fve.png') center/cover no-repeat;
  padding: 100px 24px;
  text-align: center;
}
.lokasi-overlay {
  max-width: 620px;
  margin: 0 auto;
}
.lokasi h2 {
  font-family: var(--font-display);
  font-size: 2.3rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
}
.lokasi p {
  color: #f3e6d5;
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--red);
  color: #fff;
  padding: 56px 24px 0;
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  padding-bottom: 40px;
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 2rem;
}
.footer-tagline {
  color: var(--gold);
  font-weight: 600;
  margin-top: 4px;
}
.footer-label {
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffe9c7;
}
.delivery-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.delivery-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--red-dark);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.15s ease;
}
.delivery-btn:hover { transform: translateY(-2px); }
.delivery-btn.gofood { color: #00AA13; }
.delivery-btn.grabfood { color: #00B14F; }
.delivery-btn.shopeefood { color: #EE4D2D; }
.delivery-btn { cursor: default; opacity: 0.85; }
.footer-note {
  margin-top: 10px;
  font-size: 0.78rem;
  color: #ffd9d9;
}

.footer-maps-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
}
.footer-maps-link:hover { border-color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.25);
  text-align: center;
  padding: 18px 0;
  font-size: 0.85rem;
  color: #ffe0e0;
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
  .proses { flex-direction: column; }
  .proses-text { padding: 40px 26px; }
  .proses-text h2 { font-size: 2rem; }
  .produk-grid { grid-template-columns: 1fr; max-width: 420px; }
  .produk-title { font-size: 1.8rem; }
  .lokasi { padding: 72px 20px; }
  .lokasi h2 { font-size: 1.8rem; }
  .footer-inner { flex-direction: column; gap: 28px; }
}
