/* SweetBliss Dessert Bar — style.css */
:root {
  --primary: #e91e8c;
  --primary-dark: #c2166e;
  --primary-light: #f472b6;
  --accent: #ffd600;
  --accent-dark: #e6c000;
  --bg: #fff0f7;
  --bg2: #fff;
  --text: #2d1a2e;
  --text-light: #6b4a6e;
  --mint: #00c9a7;
  --sky: #4fc3f7;
  --coral: #ff7043;
  --lavender: #ce93d8;
  --radius: 24px;
  --radius-sm: 12px;
  --shadow: 0 4px 24px rgba(233,30,140,0.12);
  --shadow-accent: 0 4px 24px rgba(255,214,0,0.2);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding-top: 36px; /* demo bar */
}
img { display: block; max-width: 100%; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* Demo Bar */
.demo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 8px;
  font-size: 13px;
}
.demo-bar a { color: var(--accent); font-weight: 700; }
.demo-bar a:hover { text-decoration: underline; }

/* ── HEADER & NAV ── */
header {
  background: var(--bg2);
  box-shadow: 0 2px 12px rgba(233,30,140,0.10);
  position: sticky;
  top: 36px;
  z-index: 999;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.logo .logo-icon {
  width: 38px; height: 38px;
}
.logo span.sub { color: var(--accent-dark); font-weight: 600; font-size: 0.75rem; display: block; line-height: 1; }

/* Checkbox hack nav */
.nav-toggle { display: none; }
.nav-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-label span {
  display: block;
  width: 24px; height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: transform 0.25s, opacity 0.2s;
}
nav ul {
  display: flex;
  gap: 4px;
}
nav ul li a {
  display: block;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.18s, color 0.18s;
}
nav ul li a:hover,
nav ul li a.active {
  background: var(--bg);
  color: var(--primary);
  text-decoration: none;
}
nav ul li a.cta-nav {
  background: var(--primary);
  color: #fff;
  padding: 8px 18px;
}
nav ul li a.cta-nav:hover { background: var(--primary-dark); }

@media (max-width: 768px) {
  .nav-label { display: flex; }
  nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg2);
    box-shadow: 0 8px 24px rgba(233,30,140,0.12);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-toggle:checked ~ nav {
    max-height: 400px;
  }
  nav ul { flex-direction: column; padding: 12px 20px 20px; gap: 4px; }
  nav ul li a { border-radius: var(--radius-sm); }
  .nav-label span { }
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #ffe0f0 0%, #fff0f7 50%, #fffde7 100%);
  padding: 60px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,214,0,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(233,30,140,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero h1 em { color: var(--accent-dark); font-style: normal; }
.hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* SVG art hero */
.hero-art {
  margin: 32px auto 0;
  max-width: 320px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(233,30,140,0.3);
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 6px 20px rgba(233,30,140,0.4); }
.btn-accent {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 4px 16px rgba(255,214,0,0.35);
}
.btn-accent:hover { background: var(--accent-dark); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2.5px solid var(--primary);
}
.btn-outline:hover { background: var(--bg); }

/* ── SECTION ── */
.section { padding: 56px 20px; }
.section-alt { background: var(--bg2); }
.container { max-width: 1100px; margin: 0 auto; }
.section-title {
  text-align: center;
  margin-bottom: 36px;
}
.section-title h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
}
.section-title p { color: var(--text-light); font-size: 1.05rem; }
.section-title .pill {
  display: inline-block;
  background: var(--accent);
  color: var(--text);
  padding: 3px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: var(--bg2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(233,30,140,0.18); }
.card-art {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-body { padding: 20px; }
.card-body h3 { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.card-body p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 12px; }
.price-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 4px 14px;
  border-radius: 999px;
}

/* ── MENU PAGE ── */
.menu-category { margin-bottom: 48px; }
.menu-category h2 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-category h2::after {
  content: '';
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 3px;
  margin-left: 8px;
}
.menu-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.menu-item {
  background: var(--bg2);
  border-radius: var(--radius-sm);
  padding: 18px;
  box-shadow: 0 2px 12px rgba(233,30,140,0.08);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-left: 4px solid var(--primary-light);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.menu-item:hover { border-left-color: var(--primary); box-shadow: 0 4px 20px rgba(233,30,140,0.14); }
.menu-item-icon { font-size: 1.8rem; flex-shrink: 0; }
.menu-item-info h4 { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.menu-item-info p { font-size: 0.82rem; color: var(--text-light); margin-bottom: 6px; }
.menu-item-info .price { font-weight: 800; color: var(--primary); font-size: 0.9rem; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.values-list { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg2);
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: 0 2px 10px rgba(233,30,140,0.07);
}
.value-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.value-item h4 { font-weight: 700; font-size: 0.95rem; margin-bottom: 2px; }
.value-item p { font-size: 0.85rem; color: var(--text-light); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; margin-top: 32px; }
.team-card {
  text-align: center;
  background: var(--bg2);
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow);
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.team-card h4 { font-weight: 800; font-size: 1rem; }
.team-card p { font-size: 0.85rem; color: var(--text-light); }

/* Media coverage */
.coverage-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; justify-content: center; }
.coverage-badge {
  background: var(--bg2);
  border: 2px solid var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 999px;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 600px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(45,26,46,0.8));
  color: #fff;
  padding: 20px 12px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  border-radius: 0 0 var(--radius) var(--radius);
}

/* ── FORM / RESERVASI ── */
.form-section { max-width: 680px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #f0c0da;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--bg2);
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-group textarea { min-height: 100px; resize: vertical; }

/* Paket cards */
.paket-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-bottom: 36px; }
.paket-card {
  background: var(--bg2);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  text-align: center;
}
.paket-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.paket-card.featured { border-color: var(--accent); background: linear-gradient(135deg, #fffde7, #fff0f7); }
.paket-card .paket-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.paket-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
.paket-card .durasi { font-size: 0.88rem; color: var(--text-light); margin-bottom: 10px; }
.paket-card .harga { font-size: 1.4rem; font-weight: 900; color: var(--text); margin-bottom: 10px; }
.paket-card ul { text-align: left; }
.paket-card ul li { font-size: 0.85rem; color: var(--text-light); padding: 3px 0; padding-left: 16px; position: relative; }
.paket-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--mint); font-weight: 700; }

/* ── INSTAGRAM SECTION ── */
.insta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #ff6fa8 100%);
  padding: 56px 20px;
  text-align: center;
  color: #fff;
}
.insta-section h2 { font-size: 1.8rem; font-weight: 900; margin-bottom: 8px; }
.insta-section p { opacity: 0.9; margin-bottom: 20px; }
.insta-handle {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 999px;
}

/* ── DECORATIVE CIRCLES ── */
.circles-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin: 24px 0; }
.circle-dec {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* ── FOOTER ── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.85);
  padding: 48px 20px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
footer h4 { color: #fff; font-weight: 800; margin-bottom: 12px; font-size: 1rem; }
footer ul li { margin-bottom: 6px; }
footer ul li a { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
footer ul li a:hover { color: var(--accent); text-decoration: none; }
footer p { font-size: 0.9rem; line-height: 1.7; }
.footer-logo { font-size: 1.3rem; font-weight: 900; color: var(--primary-light); margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  max-width: 1100px;
  margin: 0 auto;
}

/* ── HIGHLIGHT STRIP ── */
.highlight-strip {
  background: linear-gradient(90deg, var(--accent) 0%, #ffb3de 50%, var(--accent) 100%);
  padding: 14px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  overflow: hidden;
}

/* Stats row */
.stats-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; padding: 32px 20px; background: var(--bg2); }
.stat-item { text-align: center; }
.stat-item .num { font-size: 2rem; font-weight: 900; color: var(--primary); line-height: 1; }
.stat-item .lbl { font-size: 0.82rem; color: var(--text-light); margin-top: 2px; }

/* Success message */
.form-success {
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border: 2px solid var(--mint);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  display: none;
}
