/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #FFF9F4;
  color: #4B2E2E;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CSS VARIABLES ===== */
:root {
  --teal: #35C8C5;
  --teal-light: #7EE4E2;
  --brown: #4B2E2E;
  --cream: #FFF9F4;
  --yellow: #FFD86B;
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(53,200,197,0.13);
  --shadow-lg: 0 16px 48px rgba(75,46,46,0.12);
  --radius: 20px;
  --radius-lg: 28px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255,249,244,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1.5px solid rgba(53,200,197,0.12);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(53,200,197,0.13); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo-img {
  height: 45px; width: auto;
  object-fit: contain;
  display: block;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 14px;
  color: var(--brown);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--teal);
  transform: scaleX(0); transition: transform 0.2s;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: linear-gradient(135deg, #35C8C5, #7EE4E2) !important;
  color: white !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 13px !important;
  box-shadow: 0 4px 14px rgba(53,200,197,0.35);
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(53,200,197,0.45) !important; }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--brown); border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background-image: url('https://images.unsplash.com/photo-1562376552-0d160a2f238d?w=1600&h=900&fit=crop');
  background-size: cover; background-position: center;
  overflow: hidden;
  padding-top: 68px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(53,200,197,0.82) 0%,
    rgba(126,228,226,0.65) 40%,
    rgba(255,216,107,0.55) 100%);
  z-index: 1;
}
.floating-icons {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
.fi {
  position: absolute; font-size: clamp(28px, 5vw, 52px);
  animation: floatIcon 6s ease-in-out infinite;
  opacity: 0.85;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}
.fi-1 { top: 12%; left: 8%; animation-delay: 0s; }
.fi-2 { top: 20%; right: 10%; animation-delay: 1s; }
.fi-3 { bottom: 25%; left: 6%; animation-delay: 2s; }
.fi-4 { bottom: 18%; right: 8%; animation-delay: 0.5s; }
.fi-5 { top: 55%; left: 3%; animation-delay: 1.5s; font-size: 28px; }
.fi-6 { top: 40%; right: 5%; animation-delay: 2.5s; font-size: 32px; }

@keyframes floatIcon {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-18px) rotate(5deg); }
}

.hero-content {
  position: relative; z-index: 3; text-align: center;
  padding: 48px 24px; max-width: 700px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 13px;
  padding: 8px 20px; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.4);
  margin-bottom: 20px;
  animation: fadeDown 0.7s ease both;
}
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900; color: white;
  line-height: 1.15; margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.15);
  animation: fadeDown 0.7s 0.15s ease both;
}
.highlight {
  background: var(--yellow);
  color: var(--brown);
  padding: 0 10px 4px;
  border-radius: 8px;
  display: inline-block;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.93);
  margin-bottom: 36px; font-weight: 500;
  animation: fadeDown 0.7s 0.3s ease both;
}
.hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeDown 0.7s 0.45s ease both;
}
.btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 15px;
  padding: 14px 30px; border-radius: 50px;
  cursor: pointer; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary {
  background: white; color: var(--brown);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.2); background: var(--yellow); }
.btn-outline {
  background: rgba(255,255,255,0.2);
  color: white; border: 2px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { background: rgba(255,255,255,0.35); transform: translateY(-3px); }

.hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; z-index: 4; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; }

@keyframes fadeDown { from { opacity: 0; transform: translateY(-24px); } to { opacity: 1; transform: none; } }

/* ===== SHARED ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--brown);
  margin-bottom: 16px; line-height: 1.2;
}
.section-sub {
  color: #7a5c5c; font-size: 1.05rem; margin-bottom: 48px;
}
.teal { color: var(--teal); }

/* ===== ABOUT ===== */
.about { padding: 90px 0 80px; }
.about-text {
  font-size: 1.1rem; line-height: 1.8; color: #5a3e3e;
  max-width: 680px; margin-bottom: 52px;
}
.stats-row {
  display: flex; gap: 24px; flex-wrap: wrap;
}
.stat-card {
  flex: 1; min-width: 160px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(53,200,197,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute; top: -30px; right: -30px;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #35C8C5, #7EE4E2);
  border-radius: 50%; opacity: 0.08;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stat-icon { font-size: 2rem; margin-bottom: 10px; }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem; font-weight: 900;
  background: linear-gradient(135deg, #35C8C5, #7EE4E2);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-weight: 600; color: var(--brown); margin-top: 4px; }

/* ===== MENU ===== */
.menu {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #FFF9F4 0%, #f0fafa 100%);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.menu-card {
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1.5px solid rgba(53,200,197,0.08);
}
.menu-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.menu-img-wrap {
  position: relative; height: 200px; overflow: hidden;
}
.menu-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.menu-card:hover .menu-img-wrap img { transform: scale(1.07); }
.menu-badge {
  position: absolute; top: 12px; left: 12px;
  background: linear-gradient(135deg, #35C8C5, #7EE4E2);
  color: white; font-family: 'Poppins', sans-serif;
  font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 50px;
  letter-spacing: 0.5px; box-shadow: 0 2px 8px rgba(53,200,197,0.35);
}
.menu-badge.new { background: linear-gradient(135deg, #FFD86B, #ffb830); color: var(--brown); }
.menu-badge.hot { background: linear-gradient(135deg, #ff6b6b, #ff4757); }
.menu-body { padding: 20px 22px 22px; }
.menu-body h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 1.05rem;
  color: var(--brown); margin-bottom: 6px;
}
.menu-body p { font-size: 0.88rem; color: #7a5c5c; line-height: 1.6; margin-bottom: 16px; }
.menu-footer { display: flex; align-items: center; justify-content: space-between; }
.price {
  font-family: 'Poppins', sans-serif;
  font-weight: 800; font-size: 1.3rem; color: var(--teal);
}
.btn-order {
  background: linear-gradient(135deg, #35C8C5, #7EE4E2);
  color: white; border: none; cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 13px;
  padding: 9px 20px; border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(53,200,197,0.3);
}
.btn-order:hover { transform: scale(1.08); box-shadow: 0 6px 18px rgba(53,200,197,0.45); }

/* ===== GALLERY ===== */
.gallery { padding: 80px 0 100px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
  min-height: 200px;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-hover {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(53,200,197,0.75), rgba(126,228,226,0.75));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.1rem;
  color: white; opacity: 0; transition: opacity 0.3s;
  letter-spacing: 1px;
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gi-tall { grid-row: span 2; }
.gi-wide { grid-column: span 2; }

/* ===== LOCATIONS ===== */
.locations {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #f0fafa 0%, #FFF9F4 100%);
}
.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.loc-card {
  background: white; border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center;
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(53,200,197,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.loc-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #35C8C5, #7EE4E2);
  transform: scaleX(0); transition: transform 0.3s;
  border-radius: 0 0 4px 4px;
}
.loc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.loc-card:hover::after { transform: scaleX(1); }
.loc-card.featured {
  background: linear-gradient(135deg, #35C8C5 0%, #7EE4E2 100%);
  color: white;
}
.loc-card.featured h3, .loc-card.featured p, .loc-card.featured .loc-tag { color: white; }
.loc-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--yellow); color: var(--brown);
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 10px;
  padding: 4px 12px; border-radius: 50px; letter-spacing: 1px;
}
.loc-icon { font-size: 2.5rem; margin-bottom: 16px; }
.loc-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800; font-size: 1.3rem;
  margin-bottom: 10px; color: var(--brown);
}
.loc-card p { font-size: 0.9rem; line-height: 1.6; color: #7a5c5c; margin-bottom: 16px; }
.loc-tag {
  display: inline-block;
  background: rgba(53,200,197,0.1); color: var(--teal);
  font-size: 11px; font-weight: 600;
  padding: 5px 14px; border-radius: 50px;
  margin-bottom: 20px;
}
.loc-card.featured .loc-tag { background: rgba(255,255,255,0.25); color: white; }
.btn-map {
  display: inline-block;
  background: var(--brown); color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 13px;
  padding: 11px 24px; border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(75,46,46,0.2);
}
.btn-map:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(75,46,46,0.28); }
.loc-card.featured .btn-map { background: white; color: var(--teal); }

/* ===== INSTAGRAM CTA ===== */
.instagram-cta {
  padding: 80px 24px;
  position: relative; overflow: hidden;
  text-align: center;
}
.insta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #4B2E2E 0%, #7a4040 100%);
  z-index: 0;
}
.insta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(53,200,197,0.25), transparent 60%);
}
.insta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.insta-icon { font-size: 3rem; margin-bottom: 16px; }
.instagram-cta h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900; color: white; margin-bottom: 16px;
}
.instagram-cta h2 span {
  background: linear-gradient(135deg, #FFD86B, #ffb830);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.instagram-cta p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 32px; line-height: 1.7; }
.btn-insta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white; font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 15px;
  padding: 14px 32px; border-radius: 50px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-insta:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 32px rgba(0,0,0,0.35); }

/* ===== CONTACT ===== */
.contact { padding: 90px 0 100px; text-align: center; }
.contact-btns {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  margin-top: 8px;
}
.contact-btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px;
  padding: 16px 32px; border-radius: 18px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.25s, box-shadow 0.25s;
  min-width: 200px; justify-content: center;
}
.contact-btn:hover { transform: translateY(-4px); }
.cbtn-icon { font-size: 1.3rem; }
.contact-btn.maps { background: var(--brown); color: white; }
.contact-btn.maps:hover { box-shadow: 0 12px 36px rgba(75,46,46,0.25); }
.contact-btn.insta {
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
  color: white;
}
.contact-btn.insta:hover { box-shadow: 0 12px 36px rgba(220,39,67,0.3); }
.contact-btn.whatsapp { background: #25D366; color: white; }
.contact-btn.whatsapp:hover { box-shadow: 0 12px 36px rgba(37,211,102,0.3); }

/* ===== FOOTER ===== */
.footer {
  background: var(--brown);
  color: rgba(255,255,255,0.85);
  padding: 60px 24px 30px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand { margin-bottom: 32px; }
.footer-logo { height: 42px; width: auto; object-fit: contain; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,0.65); }
.footer-links {
  display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 40px;
}
.footer-links a {
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px;
  color: rgba(255,255,255,0.7); transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 13px; color: rgba(255,255,255,0.4); text-align: center;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: white; padding: 20px 24px 28px; gap: 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); border-bottom: 2px solid rgba(53,200,197,0.15); z-index: 998; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .stats-row { flex-direction: column; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gi-tall { grid-row: span 1; }
  .gi-wide { grid-column: span 2; }
  .contact-btns { flex-direction: column; align-items: center; }
  .contact-btn { width: 100%; max-width: 300px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
}
