/* ══════════════════════════════════════════════════
   Amanda's Cake Schweiz  ·  css/style.css
   Swiss Luxury Bakery ✦  —  All styles here
══════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
  /* Palette */
  --blush:           #f2c4ce;
  --blush-light:     #fde8ed;
  --blush-deep:      #e8a0b0;
  --rose-gold:       #c9956a;
  --rose-gold-light: #e8b99a;
  --rose-gold-dark:  #a67850;
  --cream:           #fdf6f0;
  --cream-dark:      #f5ebe0;
  --beige:           #e8d5c0;
  --brown-light:     #c4956a;
  --brown:           #8b5e3c;
  --text-dark:       #3d2314;
  --text-mid:        #6b4226;
  --text-light:      #9b7060;
  --white:           #ffffff;

  /* Glass */
  --glass-bg:     rgba(255, 255, 255, 0.72);
  --glass-border: rgba(201, 149, 106, 0.18);

  /* Shadows */
  --shadow-soft: 0 8px 32px rgba(139, 94, 60, 0.10);
  --shadow-med:  0 16px 48px rgba(139, 94, 60, 0.16);
  --shadow-lg:   0 24px 64px rgba(139, 94, 60, 0.22);

  /* Radii */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 48px;

  /* Typography */
  --font-head: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;

  /* Motion */
  --ease: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--font-body); color: var(--text-dark); background: var(--cream); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; }
p  { line-height: 1.8; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); }

/* ─── Background (Optimized for Mobile/Desktop) ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('../assets/background-potrait.webp');
  background-size: cover;
  background-position: center;
  filter: blur(1px);
  opacity: 0.28;
  z-index: -2;
  pointer-events: none;
}

/* Desktop: background lebih terlihat dan landscape */
@media (min-width: 769px) {
  body::before {
    background-image: url('../assets/background-landscape.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.80;
    filter: none;
  }
  body::after {
    background: linear-gradient(135deg,
      rgba(253,246,240,0.50) 0%,
      rgba(248,210,220,0.30) 40%,
      rgba(253,246,240,0.48) 100%);
  }
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(253,246,240,0.90) 0%,
    rgba(248,210,220,0.75) 40%,
    rgba(253,246,240,0.88) 100%);
  z-index: -1;
  pointer-events: none;
}

/* ─── Utilities ─── */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 22px;
}
.section-sub {
  font-size: 0.97rem;
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.85;
}

/* ─── Glass Card ─── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 100%;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--rose-gold), var(--brown-light));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(201,149,106,0.40);
  transition: var(--ease);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,149,106,0.55);
  background: linear-gradient(135deg, var(--rose-gold-dark), var(--rose-gold));
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 100%;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--rose-gold-dark);
  border: 2px solid var(--rose-gold);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--ease);
}
.btn-secondary:hover {
  background: var(--rose-gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════ NAVBAR ══════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
  background: rgba(253,246,240,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(139,94,60,0.10);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img  { height: 52px; width: auto; object-fit: contain; }

.nav-links {
  position: fixed;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}

.nav-link {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--ease);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--rose-gold);
  border-radius: 2px;
  transition: var(--ease);
}
.nav-link:hover,
.nav-link.active { color: var(--rose-gold-dark); }
.nav-link:hover::after,
.nav-link.active::after { width: 60%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 4px 12px;
}
.lang-btn {
  background: none;
  border: none;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-light);
  padding: 4px 6px;
  border-radius: 50px;
  transition: var(--ease);
}
.lang-btn.active {
  background: var(--rose-gold);
  color: var(--white);
  padding: 4px 10px;
}
.lang-divider { color: var(--beige); font-size: 0.8rem; }

.order-btn {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--rose-gold), var(--brown-light));
  color: var(--white);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 3px 14px rgba(201,149,106,0.35);
  transition: var(--ease);
  white-space: nowrap;
}
.order-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,149,106,0.50);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--rose-gold-dark);
  border-radius: 2px;
  transition: var(--ease);
}

/* ══════════ HERO ══════════ */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 130px 0 50px;
  position: relative;
  overflow: hidden;
}
.hero-bg-overlay {
  position: relative;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(248,200,212,0.35), transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(232,185,154,0.25), transparent 50%);
  pointer-events: none;
   
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  gap: 12px;
}

/* Hero left text */
.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--rose-gold);
  background: rgba(201,149,106,0.10);
  border: 1px solid rgba(201,149,106,0.25);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 26px;
  animation: fadeInUp 0.8s ease both;
}
.hero-title {
  font-size: clamp(2.3rem, 4.5vw, 3.7rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 22px;
  animation: fadeInUp 0.9s ease 0.1s both;
}
.hero-sub {
  font-size: 1.03rem;
  color: var(--text-light);
  margin-bottom: 28px;
  max-width: 440px;
  line-height: 1.85;
  animation: fadeInUp 1s ease 0.2s both;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeInUp 1s ease 0.3s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 22px;
  animation: fadeInUp 1s ease 0.4s both;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--rose-gold-dark);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.stat-divider { width: 1px; height: 40px; background: var(--beige); }

/* Hero right visual */
.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease 0.3s both;
}
.hero-card{
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
}
.hero-photo{
    width:clamp(280px, 45vw, 700px);
    height:auto;
    object-fit:contain;
}
.cake-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: linear-gradient(160deg, rgba(253,232,237,0.6), rgba(248,235,224,0.4));
}
.cake-art { position: relative; width: 1px; height: 1px; margin-bottom: 5px; }


.cake-shine {
  position: absolute; top: 80px; right: 30px;
  width: 30px; height: 30px;
  background: radial-gradient(circle, rgba(255,255,255,0.9), transparent);
  border-radius: 50%; filter: blur(4px);
  animation: pulse 2s ease-in-out infinite;
}
.cake-caption {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-light);
  text-align: center;
}

/* Floating badges */
.float-badge {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.82);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--text-mid);
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}
.badge-1 { top: 15%; right: -18px; animation: floatY 3s ease-in-out infinite; }
.badge-2 { bottom: 20%; left: -18px; animation: floatY 3s ease-in-out 1.5s infinite; }

.float-petal { position: absolute; font-size: 1.4rem; pointer-events: none; }
.p1 { top: 8%; left: -28px; animation: floatPetal 4s ease-in-out infinite; }
.p2 { top: 50%; right: -22px; animation: floatPetal 3.5s ease-in-out 1s infinite; }
.p3 { bottom: 5%; left: -18px; animation: floatPetal 5s ease-in-out 2s infinite; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-light);
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--rose-gold), transparent);
  animation: scrollAnim 1.5s ease-in-out infinite;
}

/* ══════════ ABOUT ══════════ */
.about-grid{
    display:grid;
    grid-template-columns: 500px 1fr;
    gap:20px;
    align-items:start;
}

.about-visual{
    grid-column:1;
    grid-row:1;
}

.about-text{
    grid-column:2;
    grid-row:1 / span 2;
    position: relative;
}

.about-quote{
    grid-column:1;
    grid-row:2;
    margin-top:20px;
}
.about-cake-art { position: auto  ; width: 1x; height: 1px; }
.aca-tier { position: absolute; left: 50%; transform: translateX(-50%); border-radius: 10px; }
.t3 { width:130px; height:50px; bottom:0;    background:linear-gradient(180deg,#f8e4d8,#e8c8b0); box-shadow:0 6px 20px rgba(139,94,60,.18); }
.t2 { width: 95px; height:45px; bottom:44px; background:linear-gradient(180deg,#fce0e8,#f0c0cc); }
.t1 { width: 65px; height:40px; bottom:83px; background:linear-gradient(180deg,#f8e8f0,#e8c0d0); }
.aca-flower       { position:absolute; font-size:20px; top:5px; left:10px; animation:floatPetal 3s ease-in-out infinite; }
.aca-flower.f2    { top:0; right:5px; animation-delay:1s; }
.aca-sparkle      { position:absolute; font-size:16px; bottom:110px; right:5px; animation:pulse 2s ease-in-out infinite; }

.about-frame-deco { position:absolute; font-size:1.6rem; animation:floatPetal 4s ease-in-out infinite; }
.d1 { top:-20px; right:-20px; animation-delay:0.5s; }
.d2 { bottom:-10px; left:-10px; animation-delay:1.5s; }

.about-quote  { margin-top: 1px; padding: 20px 22px; }
.quote-mark   { font-family:var(--font-head); font-size:4rem; color:var(--rose-gold); line-height:0.5; margin-bottom:12px; }
.quote-text   { font-family:var(--font-head); font-style:italic; font-size:0.95rem; color:var(--text-mid); line-height:1.7; margin-bottom:12px; }
.quote-auth   { font-size:0.8rem; font-weight:600; color:var(--rose-gold-dark); letter-spacing:0.1em; }

.about-body p { font-size:0.95rem; color:var(--text-mid); line-height:1.9; margin-bottom:16px; margin-top: 16px;}

.about-values { display:flex; flex-wrap:wrap; gap:10px; margin-top:30px; }
.value-chip {
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(201,149,106,0.20);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-mid);
  backdrop-filter: blur(8px);
}

/* Desktop tampil penuh */
.about-text {
  position: relative;
}

/* Sembunyikan tombol Read More di desktop */
@media (min-width: 769px) {
  .about-readmore {
    display: none;
  }
  /* Desktop: selalu tampilkan semua teks */
  .about-body {
    max-height: none !important;
    overflow: visible !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
}

/* penting: pastikan tombol selalu di atas */
.about-readmore {
  position: relative;
  z-index: 10;
  cursor: pointer;
  touch-action: manipulation;
}

/* pastikan tidak ada overlay yang nutup tombol */
.about-body {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .about-visual{
        grid-column:auto;
        grid-row:auto;
    }

    .about-quote{
        grid-column:auto;
        grid-row:auto;
    }

    .about-text{
        grid-column:auto;
        grid-row:auto;
    }
}

@media (max-width:768px){

 .about-body {
  position: relative;
  overflow: hidden;
  max-height: 220px; /* default preview */
  transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
}

/* saat expanded */
.about-body.expanded {
  max-height: 2000px; /* cukup besar untuk full text */
  -webkit-mask-image: none;
  mask-image: none;
}

/* tombol read more */
.about-readmore { 
  margin-top: 16px;
  background: transparent;
  border: none;
  font-weight: 500;
  cursor: pointer;
  color: #b88a44;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.about-readmore:hover {
  color: #8a6233;
  transform: translateY(-1px);
}

}
/* ══════════ GALLERY ══════════ */
.gallery-filters { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:38px; }
.filter-btn {
  padding: 9px 22px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(201,149,106,0.20);
  border-radius: 50px;
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-light);
  transition: var(--ease);
  backdrop-filter: blur(8px);
}
.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, var(--rose-gold), var(--brown-light));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(201,149,106,0.35);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: var(--ease);
  box-shadow: var(--shadow-soft);
}
.gallery-item:hover             { transform: scale(1.02); box-shadow: var(--shadow-med); }
.gallery-item:hover .gallery-overlay   { opacity: 1; }
.gallery-item:hover .gallery-img-inner { transform: scale(1.08); }

.gallery-img-wrap  { overflow: hidden; border-radius: var(--r-md); }
.gallery-img-inner { width:100%; transition: transform 0.5s ease; }

.gallery-cake-mock {
  width: 100%; padding: 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; min-height: 180px;
}
.gallery-cake-icon  { font-size: 3rem; }
.gallery-cake-label { font-family:var(--font-head); font-style:italic; font-size:0.9rem; color:var(--text-mid); text-align:center; }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(139,94,60,.85) 100%);
  opacity: 0; transition: var(--ease);
  display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; padding: 16px 18px;
  border-radius: var(--r-md);
}
.gallery-overlay span { color:var(--white); font-family:var(--font-head); font-style:italic; font-size:0.9rem; text-align:left; }

.gallery-action,
.menu-action {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;

  background: rgba(61,35,20,0.85);
  backdrop-filter: blur(8px);

  z-index: 9999;

  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

/* Tombol X */
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;

  width: 50px;
  height: 50px;

  border: none;
  border-radius: 50%;

  background: rgba(255,255,255,.2);
  backdrop-filter: blur(10px);

  color: #fff;
  font-size: 24px;
  font-weight: bold;

  cursor: pointer;

  z-index: 10001;
}

.lightbox-close:hover {
  background: rgba(255,255,255,.35);
}

.lightbox-content {
  position: relative;
  z-index: 10000;

  background: transparent;
  box-shadow: none;

  max-width: 90vw;
  max-height: 90vh;

  padding: 0;
}
/* ══════════ MENU ══════════ */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.menu-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: var(--r-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  transition: var(--ease);
  position: relative; overflow: hidden;
}
.menu-card::before {
  content: '';
  position: absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--rose-gold), var(--blush-deep), var(--rose-gold-light));
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-med); border-color: rgba(201,149,106,0.30); }

.menu-emoji   { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.menu-num     { font-size:0.68rem; font-weight:700; letter-spacing:0.16em; color:var(--rose-gold); text-transform:uppercase; margin-bottom:8px; }
.menu-name    { font-family:var(--font-head); font-size:1.05rem; font-weight:700; color:var(--text-dark); margin-bottom:10px; line-height:1.3; }
.menu-desc    { font-size:0.82rem; color:var(--text-light); line-height:1.7; margin-bottom:20px; }

.menu-order-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px;
  background: transparent;
  border: 1.5px solid var(--rose-gold);
  color: var(--rose-gold-dark);
  border-radius: 50px;
  font-size: 0.78rem; font-weight: 600;
  transition: var(--ease);
}
.menu-order-btn:hover {
  background: linear-gradient(135deg, var(--rose-gold), var(--brown-light));
  color: white; border-color: transparent;
  box-shadow: 0 4px 14px rgba(201,149,106,0.40);
}

/* ══════════ CONTACT ══════════ */
.contact-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-bottom:36px; }
.contact-card { padding:30px 18px; text-align:center; transition:var(--ease); }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-med); }
.contact-icon { font-size:2rem; margin-bottom:14px; }
.contact-card h3 { font-family:var(--font-head); font-size:1rem; color:var(--text-dark); margin-bottom:8px; }
.contact-link { font-size:0.82rem; color:var(--rose-gold-dark); font-weight:500; transition:var(--ease); }
.contact-link:hover { color:var(--brown); }

.map-container { padding:28px; }
.map-header    { display:flex; align-items:center; gap:16px; margin-bottom:20px; }
.map-icon      { font-size:1.8rem; }
.map-header h3 { font-family:var(--font-head); font-size:1.1rem; color:var(--text-dark); }
.map-header p  { font-size:0.82rem; color:var(--text-light); margin-top:3px; }

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;

  text-decoration: none;
  color: inherit;

  cursor: pointer;

  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* ══════════ FOOTER ══════════ */
.footer {
  background: linear-gradient(180deg, rgba(248,232,224,0.92), rgba(232,213,192,0.96));
  border-top: 1px solid rgba(201,149,106,0.14);
  padding: 48px 0 0;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 36px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 36px;
}

.footer-logo-link { display:inline-block; }
.footer-logo    { height:56px; width:auto; object-fit:contain; margin-bottom:14px; }
.footer-tagline { font-family:var(--font-head); font-style:italic; font-size:0.95rem; color:var(--text-light); margin-bottom:20px; }

.footer-socials { display:flex; gap:12px; }
.social-icon {
  width:38px; height:38px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(201,149,106,0.20);
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  color: var(--rose-gold-dark);
  transition: var(--ease);
}
.social-icon:hover { background:var(--rose-gold); color:white; border-color:transparent; transform:translateY(-2px); }

.footer-nav h4 { font-family:var(--font-head); font-size:0.95rem; font-weight:600; color:var(--text-dark); margin-bottom:18px; letter-spacing:.05em; }
.footer-nav ul { display:flex; flex-direction:column; gap:10px; }
.footer-nav ul li a { font-size:0.85rem; color:var(--text-light); transition:var(--ease); }
.footer-nav ul li a:hover { color:var(--rose-gold-dark); padding-left:4px; }

.footer-cta h4 { font-family:var(--font-head); font-size:1.1rem; color:var(--text-dark); margin-bottom:10px; }
.footer-cta p  { font-size:0.85rem; color:var(--text-light); margin-bottom:20px; line-height:1.7; }

.footer-bottom {
  border-top: 1px solid rgba(201,149,106,0.14);
  padding: 20px 24px;
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size:0.77rem; color:var(--text-light); }

/* ══════════ FLOATING WHATSAPP ══════════ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 900;
  transition: var(--ease);
}
.whatsapp-float:hover { transform: scale(1.12) translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,0.60); }

.wa-tooltip {
  position: absolute; right: 70px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.72);
  color: var(--text-dark);
  font-size: 0.77rem; font-weight: 600;
  padding: 6px 14px; border-radius: 50px;
  white-space: nowrap; opacity: 0;
  transition: var(--ease); pointer-events: none;
  box-shadow: var(--shadow-soft);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ══════════ KEYFRAME ANIMATIONS ══════════ */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeInRight {
  from { opacity:0; transform:translateX(40px); }
  to   { opacity:1; transform:translateX(0); }
}
@keyframes floatY {
  0%,100% { transform:translateY(0); }
  50%     { transform:translateY(-10px); }
}
@keyframes floatPetal {
  0%,100% { transform:translateY(0) rotate(0deg); }
  33%     { transform:translateY(-8px) rotate(8deg); }
  66%     { transform:translateY(4px) rotate(-5deg); }
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:0.6; transform:scale(1.1); }
}
@keyframes flicker {
  0%,100% { transform:scaleY(1) translateX(-3px); }
  50%     { transform:scaleY(1.15) translateX(-3px); }
}
@keyframes scrollAnim {
  0%,100% { transform:scaleY(1); opacity:1; }
  50%     { transform:scaleY(0.4); opacity:0.4; }
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1024px) {
  .menu-grid      { grid-template-columns: repeat(2, 1fr); }
  .contact-grid   { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .about-grid     { gap: 40px; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .footer-cta     { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section-pad { padding: 72px 0; }
  .hero { padding: 100px 0 64px; }

  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual    { order: -1; max-width: 360px; margin: 0 auto; }
  .hero-card      { aspect-ratio: 1; }
  .float-badge    { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 300px; margin: 0 auto; }

  .menu-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }

  /* Mobile Nav */
/* Mobile Nav */
/* ===== NAV MOBILE ELEGAN ===== */
@media (max-width: 768px) {

  .nav-toggle {
    display: flex;
    z-index: 2001;
  }

  /* overlay background */
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 20, 0.35);
    backdrop-filter: blur(14px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 28px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(0) !important;

    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) !important;
  }

  /* item animasi */
  .nav-links li {
    opacity: 0;
    transform: translateY(0) !important;
    transition: opacity 0.4s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0) !important;
  }

  /* stagger effect */
  .nav-links.active li:nth-child(1) { transition-delay: 0.05s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.10s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.15s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.20s; }

  /* link style lebih clean */
  .nav-links a {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s ease;
  }

  .nav-links a:hover {
    transform: scale(1.1);
  }

  /* ===== HAMBURGER ANIMATION ELEGAN ===== */
  .nav-toggle span {
    width: 28px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transition: 0.35s ease;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}
body.menu-open {
  overflow: hidden;
}

body.menu-open .navbar,
body.menu-open .navbar.scrolled {
  background: rgba(253, 246, 240, 0);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 4px 24px rgba(139, 94, 60, 0);
}

.nav-links.open {
  display: flex;
}
  .nav-links.open  { display: flex; }
  .nav-link        { font-size: 1.1rem; padding: 14px 20px; }
  .nav-toggle      { display: flex; }
  .order-btn       { display: none; }

  .footer-container { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-socials   { justify-content: center; }
  .footer-nav ul    { align-items: center; }
  .footer-bottom    { flex-direction: column; text-align: center; }

  .hero-stats { gap: 14px; }
}

@media (max-width: 480px) {
  .gallery-masonry { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
  .hero-btns       { flex-direction: column; }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary { text-align: center; justify-content: center; }
}


.gallery-overlay h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  text-align: left;
}

.gallery-overlay p {
  font-size: .9rem;
  line-height: 1.6;
  text-align: left;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   GALLERY
===================================================== */

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    cursor:pointer;
    box-shadow:var(--shadow-soft);
}

.gallery-image{
    width:100%;
    aspect-ratio:3/4;
    display:block;
    object-fit:cover;
    transition:transform .6s ease;
}

.gallery-overlay{
    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:flex-start;

    padding:16px 18px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.80),
        rgba(0,0,0,.20),
        transparent
    );

    color:#fff;

    opacity:0;
    transform:translateY(20px);

    transition:.4s ease;
}

.gallery-overlay h3{
    font-size:1rem;
    margin-bottom:4px;
    text-align:left;
}

.gallery-overlay p{
    font-size:.82rem;
    line-height:1.5;
    text-align:left;
}

.gallery-item:hover .gallery-image{
    transform:scale(1.08);
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
    transform:translateY(0);
}

/* =====================================================
   MOBILE GALLERY
===================================================== */

@media (max-width:768px){

    .gallery-item{
        background:#fff;
        border-radius:18px;
    }

    .gallery-overlay{
        position:static;

        opacity:1;
        transform:none;

        background:#fff;

        color:#333;

        padding:18px;
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        text-align:left;
    }

    .gallery-overlay h3{
        color:#2d2d2d;
        text-align:left;
    }

    .gallery-overlay p{
        color:#666;
        text-align:left;
    }

    .gallery-item:hover .gallery-image{
        transform:none;
    }
}

/* =====================================================
   LIGHTBOX
===================================================== */

.lightbox{
    position:fixed;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(0,0,0,.78);
    backdrop-filter:blur(8px);

    z-index:9999;

    opacity:0;
    visibility:hidden;

    transition:
        opacity .8s ease,
        backdrop-filter .8s ease,
        visibility .8s;
}

.lightbox.active{
    opacity:1;
    visibility:visible;
    backdrop-filter:blur(12px);
}

.lightbox-content{
    display:flex;
    flex-direction:row;
    align-items:stretch;

    width:fit-content;
    max-width:95%;
    height: auto;
    max-height:85vh;

    background:#fff;
    border-radius:24px;

    overflow: hidden;
}

.lightbox.active .lightbox-content{
    opacity:1;
    transform:translateY(0) scale(1);
}

.lightbox-media{
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #110b08;
    height: auto;
    max-height: 85vh;
    overflow: hidden;
}

.lightbox-image{
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;

    transition:
        transform 1.2s cubic-bezier(.16,1,.3,1),
        opacity 1.2s ease,
        filter 1.2s ease;
}

.lightbox.active .lightbox-image{
    opacity:1;
    transform:scale(1);
    filter:blur(0);
}

.lightbox-body{
    display:flex;
    flex-direction:column;
    justify-content: center;
    flex: 0 0 420px;

    height: auto;
    max-height:85vh;
    overflow-y:auto;

    padding:40px;
    min-height: 0;
}

.lightbox-body h2{
    flex-shrink:0;    /* judul tidak ikut scroll */
    margin-bottom:16px;
}

.lightbox-body p{
    color:var(--text-mid);
    line-height:1.8;
}

.lightbox-close{
    position:fixed;
    top:20px;
    right:20px;

    width:50px;
    height:50px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,.2);
    backdrop-filter:blur(10px);

    color:#fff;
    font-size:24px;

    cursor:pointer;

    z-index:10001;
}

.lightbox-close:hover{
    background:rgba(255,255,255,.35);
}

.lightbox-description{
    flex:1;

    overflow-y:auto;

    padding-right:10px;
    min-height: 0;

}

.lightbox-description p{
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    line-height: 1.8;
    color: var(--text-mid);
}
@keyframes fadeZoom {

  from{
    opacity:0;
    transform:scale(.9);
  }

  to{
    opacity:1;
    transform:scale(1);
  }

}

.lightbox-content{
    animation: lightboxEnter 1s cubic-bezier(.22,1,.36,1);
}

@keyframes lightboxEnter{

    from{
        opacity:0;
        transform:translateY(80px) scale(.92);
    }

    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }

}

/* =========================
   MOBILE LIGHTBOX
========================= */
@media (max-width: 768px){

  .lightbox-content{
      display:flex;
      flex-direction:column;

      width:95%;
      height:auto;
      max-height:90vh;

      border-radius:20px;
  }

  .lightbox-media{
      flex:0 0 auto;
      padding:0;
      background:#110b08;
      display:flex;
      align-items:center;
      justify-content:center;
      overflow:hidden;
  }

  .lightbox-image{
      width:100%;
      height:auto;
      max-height:45vh;
      object-fit:contain;
  }

  .lightbox-body{
      flex:1;

      min-height:0;

      padding:20px;
  }

  .lightbox-body h2{
      font-size:1.3rem;
      margin-bottom:12px;
  }

  .lightbox-description{
      flex:1;
      overflow-y:auto;

      padding-right:4px;
  }

  .lightbox-description p{
      font-size:.95rem;
      text-align:justify;
      line-height:1.8;
  }

  .lightbox-close{
      top:12px;
      right:12px;

      width:42px;
      height:42px;

      font-size:20px;
  }

}

@media (max-width:768px){

  .nav-container{
    display:flex;
    align-items:center;
  }

  .nav-logo{
    margin-right:auto;
  }

  .nav-actions{
    margin-left:1px;
    margin-right:1px;
  }

  .lang-switcher{
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .nav-toggle{
    margin-left:0;
  }

}
@media (min-width: 769px) {
  .nav-links {
    display: flex !important;
    position: static !important;
    flex-direction: row;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  .nav-toggle {
    display: none !important;
  }

  body.menu-open {
    overflow: auto !important;
  }
}
