/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown: #6b3f1f;
  --brown-dark: #4a2b12;
  --amber: #d97706;
  --amber-light: #fef3c7;
  --cream: #faf7f2;
  --cream-dark: #f0e9df;
  --text: #1c1009;
  --text-muted: #7c6553;
  --border: #e8ddd2;
  --white: #ffffff;
  --green-accent: #3d6b3a;
  --shadow: 0 4px 24px rgba(107,63,31,0.10);
  --shadow-lg: 0 8px 40px rgba(107,63,31,0.16);
  --radius: 18px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: var(--brown);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107,63,31,0.30);
}
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn-outline:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.btn-lg { padding: 14px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text);
  font-family: 'Playfair Display', serif;
  white-space: nowrap;
}
.logo strong { color: var(--brown); }
.logo-icon { font-size: 1.4rem; }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--brown); }

.nav-cta { margin-left: 8px; padding: 9px 22px; font-size: 0.87rem; }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  margin-left: auto;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #3d1c07 0%, #6b3f1f 45%, #a0622a 75%, #c9893e 100%);
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,137,62,0.3) 0%, transparent 60%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px 100px;
}

.hero-text { color: white; }

.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.83rem;
  margin-bottom: 22px;
  letter-spacing: 0.3px;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-text h1 em {
  font-style: italic;
  color: #fde68a;
  display: block;
}

.hero-text p {
  font-size: 1rem;
  opacity: 0.88;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Coffee cup illustration */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.cup-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

.coffee-cup {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cup-body {
  width: 130px;
  height: 110px;
  background: linear-gradient(160deg, #fff8f0, #f5e6d0);
  border-radius: 10px 10px 30px 30px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10px;
  box-shadow: inset -6px 0 12px rgba(0,0,0,0.08), 0 8px 30px rgba(0,0,0,0.25);
  overflow: hidden;
}

.coffee-liquid {
  width: 100px;
  height: 70px;
  background: linear-gradient(160deg, #3d1c07, #6b3f1f);
  border-radius: 4px 4px 20px 20px;
  position: relative;
  overflow: visible;
}

/* Steam */
.steam {
  position: absolute;
  width: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.6);
  animation: steam-rise 2s ease-in-out infinite;
  top: -30px;
}
.s1 { height: 28px; left: 20px; animation-delay: 0s; }
.s2 { height: 36px; left: 46px; animation-delay: 0.4s; }
.s3 { height: 24px; left: 72px; animation-delay: 0.8s; }

@keyframes steam-rise {
  0% { opacity: 0; transform: translateY(0) scaleX(1); }
  30% { opacity: 0.8; }
  80% { opacity: 0.3; transform: translateY(-24px) scaleX(1.4); }
  100% { opacity: 0; transform: translateY(-36px) scaleX(1.8); }
}

.cup-handle {
  position: absolute;
  right: -26px;
  top: 22px;
  width: 28px;
  height: 46px;
  border: 7px solid #f5e6d0;
  border-left: none;
  border-radius: 0 20px 20px 0;
  box-shadow: 3px 0 8px rgba(0,0,0,0.12);
}

.cup-saucer {
  width: 160px;
  height: 18px;
  background: linear-gradient(160deg, #fff8f0, #f0dfc8);
  border-radius: 50%;
  margin-top: 4px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

.cup-label {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 12px 24px;
  text-align: center;
  color: white;
}
.cup-label span { font-size: 0.75rem; opacity: 0.75; display: block; }
.cup-label strong { font-family: 'Playfair Display', serif; font-size: 1.1rem; }

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; display: block; }

/* ===== HIGHLIGHT BAR ===== */
.highlight-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.highlight-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.hl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 36px;
  font-size: 0.88rem;
}
.hl-item span { font-size: 1.4rem; }
.hl-item strong { font-weight: 600; color: var(--brown); }
.hl-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }

.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block;
  background: var(--amber-light);
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text);
  margin-bottom: 10px;
}
.section-header p { color: var(--text-muted); font-size: 0.97rem; }

/* ===== MENU ===== */
.menu-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}

.tab-btn {
  padding: 9px 24px;
  border: 2px solid var(--border);
  border-radius: 50px;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.22s;
  font-family: 'Inter', sans-serif;
}
.tab-btn:hover, .tab-btn.active {
  background: var(--brown);
  color: white;
  border-color: var(--brown);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

.menu-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
  border-color: var(--amber);
}
.menu-emoji { font-size: 2.2rem; margin-bottom: 4px; }
.menu-item h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; }
.menu-item p { color: var(--text-muted); font-size: 0.83rem; flex: 1; }
.menu-price {
  font-weight: 700;
  color: var(--brown);
  font-size: 1rem;
  margin-top: 4px;
}

/* ===== TENTANG ===== */
.tentang { background: var(--cream); }

.tentang-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.tentang-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: transform 0.3s;
}
.about-card:hover { transform: translateY(-4px); }

.main-card {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--brown), #a0622a);
  color: white;
  border: none;
}
.about-icon { font-size: 2rem; margin-bottom: 12px; }
.main-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: #fde68a; }
.main-card p { font-size: 0.88rem; opacity: 0.88; line-height: 1.7; font-style: italic; }

.stat-card { text-align: center; }
.stat-card strong { display: block; font-size: 1.8rem; color: var(--brown); font-family: 'Playfair Display', serif; }
.stat-card span { font-size: 0.78rem; color: var(--text-muted); }

.tentang-text .section-tag { display: inline-block; margin-bottom: 12px; }
.tentang-text h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 16px; }
.tentang-text p { color: var(--text-muted); margin-bottom: 14px; font-size: 0.94rem; line-height: 1.75; }

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.badge {
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--brown);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ===== PROMO ===== */
.promo-section { background: var(--white); }

.promo-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.promo-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s;
}
.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.promo-main {
  background: linear-gradient(145deg, #3d1c07, #6b3f1f);
  color: white;
  border: none;
}
.promo-main h3 { color: #fde68a; }
.promo-main p { opacity: 0.88; }

.promo-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--amber);
  background: var(--amber-light);
  padding: 3px 10px;
  border-radius: 50px;
  width: fit-content;
}
.promo-main .promo-tag {
  background: rgba(255,255,255,0.2);
  color: #fde68a;
}

.promo-icon { font-size: 2.4rem; }
.promo-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; }
.promo-card p { font-size: 0.88rem; color: var(--text-muted); flex: 1; }
.promo-main p { color: rgba(255,255,255,0.8); }

.promo-time { font-size: 0.8rem; color: rgba(255,255,255,0.65); }

/* ===== SUASANA ===== */
.suasana { background: var(--cream); }

.suasana-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.suasana-card {
  background: var(--brown);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
}
.suasana-card:hover { transform: scale(1.02); }
.suasana-card:hover .suasana-overlay { opacity: 1; }

.suasana-card.big {
  grid-column: 1 / 3;
  min-height: 300px;
}

.suasana-emoji {
  font-size: 4rem;
  z-index: 0;
  opacity: 0.5;
  filter: grayscale(0.3);
}

.suasana-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,28,7,0.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 20px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.suasana-overlay h4 { color: #fde68a; font-size: 1rem; font-family: 'Playfair Display', serif; margin-bottom: 4px; }
.suasana-overlay p { color: rgba(255,255,255,0.8); font-size: 0.78rem; }

/* ===== KUNJUNGI ===== */
.kunjungi { background: var(--white); }

.kunjungi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.kunjungi-info .section-tag { display: inline-block; margin-bottom: 12px; }
.kunjungi-info h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 14px; }
.kunjungi-info > p { color: var(--text-muted); margin-bottom: 32px; }

.info-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-icon {
  font-size: 1.3rem;
  width: 46px;
  height: 46px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.info-item strong { display: block; font-weight: 600; font-size: 0.87rem; margin-bottom: 2px; }
.info-item p, .info-item a { color: var(--text-muted); font-size: 0.87rem; }
.info-item a:hover { color: var(--brown); }

.map-placeholder {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-box {
  text-align: center;
  padding: 40px;
}
.map-pin { font-size: 3rem; margin-bottom: 16px; display: block; animation: bounce 2s ease-in-out infinite; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.map-box p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 6px; }
.map-box strong { color: var(--text); }
.map-box .btn { margin-top: 20px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo { color: white; }
.footer-brand .footer-logo strong { color: #fde68a; }
.footer-brand p { font-size: 0.87rem; margin-top: 12px; line-height: 1.7; max-width: 260px; }

.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  font-size: 1.4rem;
}
.socials a { transition: opacity 0.2s; }
.socials a:hover { opacity: 0.6; }

.footer-col h4 { color: white; font-size: 0.9rem; font-weight: 600; margin-bottom: 16px; font-family: 'Inter', sans-serif; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.85rem; transition: color 0.2s; }
.footer-col a:hover { color: #fde68a; }

.footer-bottom {
  text-align: center;
  padding: 20px 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: #fde68a; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; padding: 60px 24px 100px; }
  .hero-text p { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .tentang-inner, .kunjungi-inner { grid-template-columns: 1fr; gap: 40px; }
  .tentang-visual { order: 1; }
  .promo-grid { grid-template-columns: 1fr; }
  .suasana-grid { grid-template-columns: 1fr 1fr; }
  .suasana-card.big { grid-column: 1 / -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .hl-sep { display: none; }
  .hl-item { padding: 16px 20px; }
  .highlight-inner { justify-content: flex-start; }
  .suasana-grid { grid-template-columns: 1fr; }
  .suasana-card.big { grid-column: auto; }
  .footer-inner { grid-template-columns: 1fr; }
  .map-placeholder { min-height: 260px; }
}
