:root {
  --primary-color: #A02C2C; /* Merah Marun Coto */
  --accent-color: #F4A261; /* Oranye Kuning Kuah */
  --dark-color: #1a1a1a;
  --light-color: #f9f9f9;
  --white: #ffffff;
  --gray: #666666;
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--white);
  color: var(--dark-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--dark-color);
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--primary-color);
  cursor: pointer;
}

.btn:hover { background-color: transparent; color: var(--primary-color); }

/* HEADER & NAV */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-links a:hover { color: var(--primary-color); }

/* MOBILE MENU */
.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  padding: 50px 30px;
  transition: var(--transition);
  z-index: 1001;
}

.mobile-nav.active { right: 0; }

.mobile-nav a {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--primary-color);
}

.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  display: none;
}

.overlay.active { display: block; }

/* HERO SECTION (dipakai di Beranda saja) */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('https://warna-cloudinary.b-cdn.net/biru/99a3762a-2643-47b4-91e5-aa791802e87d-IMG-20190831-094817-999.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-top: 60px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* GENERAL SECTION */
.section { padding: 80px 0; }

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.section-title p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.bg-light { background-color: var(--light-color); }

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text h3,
.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* MENU */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.menu-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.menu-card:hover .menu-img-container img { transform: scale(1.1); }

.menu-info {
  padding: 20px;
  text-align: center;
}

.menu-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.05); }

/* REVIEW */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border: 1px solid #eee;
}

.stars { color: gold; margin-bottom: 15px; }

.reviewer {
  font-weight: 700;
  margin-top: 15px;
  color: var(--primary-color);
}

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary-color);
}

.faq-item.active .faq-question::after { content: '-'; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease;
  color: var(--gray);
}

.faq-item.active .faq-answer {
  padding-bottom: 20px;
  max-height: 200px;
}

/* LOCATIONS */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-info {
  margin-top: 15px;
  text-align: center;
  font-weight: 600;
}

/* FOOTER */
footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; color: #bbb; }

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.social-icons a:hover { background: var(--primary-color); }

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  color: #777;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.5rem; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .about-grid, .locations-grid { grid-template-columns: 1fr; }
  .map-container { height: 300px; }
}

/* === WHATSAPP POPUP === */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
}

.wa-bubble {
  width: min(320px, calc(100vw - 120px));
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.18);
  overflow: hidden;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: all .25s ease;
}

.wa-bubble.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.wa-bubble-header {
  background: #25D366;
  color: #fff;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wa-bubble-header strong {
  font-size: 0.95rem;
  letter-spacing: .2px;
}

.wa-close {
  border: none;
  background: rgba(255,255,255,0.18);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-bubble-body {
  padding: 14px;
}

.wa-bubble-body p {
  margin: 0 0 10px;
  color: #222;
  font-size: 0.92rem;
  line-height: 1.45;
}

.wa-quick {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.wa-chip {
  border: 1px solid #e6e6e6;
  background: #fafafa;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: .2s ease;
}

.wa-chip:hover {
  transform: translateY(-1px);
}

.wa-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 12px 25px rgba(0,0,0,0.20);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

.wa-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@media (max-width: 480px) {
  .wa-float { right: 14px; bottom: 14px; }
  .wa-btn { width: 54px; height: 54px; }
}

/* CENTER ABOUT TEXT */
.about-text {
  text-align: center;
}

.about-text h2 {
  text-align: center;
}

.about-text p {
  text-align: center;
}

.about-text .btn {
  margin: 20px auto 0;
  display: inline-block;
}

.logo-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: #888;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* Google Maps - Place Embed */
.map-wrapper {
  width: 100%;
  height: 520px;            /* BESAR agar place card muncul */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eaeaea;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-cta {
  text-align: center;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .map-wrapper {
    height: 340px;          /* Mobile */
    border-radius: 14px;
  }
}