* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --gold: #f5a623;
  --pink: #ff6b8a;
  --green: #2d8a4e;
  --dark: #1a1a2e;
  --light: #fffbf5;
  --gradient: linear-gradient(135deg, #ff6b8a, #f5a623, #ffcf48);
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--light); }
h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(255,251,245,0.95); backdrop-filter: blur(10px);
  padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
nav .logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
nav ul { list-style: none; display: flex; gap: 1.5rem; }
nav a { text-decoration: none; color: var(--dark); font-weight: 500; font-size: 0.9rem; transition: color 0.3s; }
nav a:hover { color: var(--pink); }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* HERO */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 6rem 2rem 4rem;
  background: linear-gradient(180deg, #fff8f0 0%, #fff3e6 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '🍋'; position: absolute; top: 15%; left: 10%; font-size: 4rem; opacity: 0.15; animation: float 6s ease-in-out infinite;
}
.hero::after {
  content: '🍓'; position: absolute; bottom: 20%; right: 10%; font-size: 3.5rem; opacity: 0.15; animation: float 5s ease-in-out infinite 1s;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.hero .badge {
  background: var(--gradient); color: #fff; padding: 0.4rem 1.2rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero h1 { font-size: clamp(2.5rem, 8vw, 5rem); line-height: 1.1; margin-bottom: 1rem; }
.hero h1 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.2rem; color: #555; max-width: 500px; margin-bottom: 2rem; }
.hero .cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn {
  padding: 0.9rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.95rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,166,35,0.3); }
.btn-primary { background: var(--gradient); color: #fff; }
.btn-outline { border: 2px solid var(--dark); color: var(--dark); }

/* SECTIONS */
section { padding: 5rem 2rem; }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.5rem; }
.section-title p { color: #666; font-size: 1.1rem; }

/* MENU */
#menu { background: #fff; }
.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; max-width: 900px; margin: 0 auto;
}
.menu-card {
  background: var(--light); border-radius: 20px; padding: 2rem;
  border: 1px solid rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s;
}
.menu-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.menu-card .emoji { font-size: 2.5rem; margin-bottom: 0.8rem; }
.menu-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.menu-card p { color: #666; font-size: 0.95rem; line-height: 1.5; }

/* ABOUT */
#about { background: linear-gradient(135deg, #fff8f0, #fff3e6); }
.about-content { max-width: 700px; margin: 0 auto; text-align: center; }
.about-content p { font-size: 1.1rem; line-height: 1.8; color: #444; margin-bottom: 1.5rem; }
.about-content .tagline { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* GALLERY */
#gallery { background: #fff; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem; max-width: 1000px; margin: 0 auto;
}
.gallery-grid img {
  width: 100%; height: 300px; object-fit: cover; border-radius: 16px;
  transition: transform 0.3s; cursor: pointer;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* CONTACT */
#contact { background: var(--dark); color: #fff; text-align: center; }
#contact .section-title h2 { color: #fff; }
#contact .section-title p { color: rgba(255,255,255,0.7); }
.contact-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 2rem; }
.contact-link {
  display: flex; align-items: center; gap: 0.5rem; padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.1); border-radius: 12px; text-decoration: none; color: #fff;
  transition: background 0.3s;
}
.contact-link:hover { background: rgba(255,255,255,0.2); }
.contact-link span { font-size: 1.3rem; }

/* FOOTER */
footer { background: #111; color: rgba(255,255,255,0.6); text-align: center; padding: 2rem; font-size: 0.85rem; }

/* MOBILE */
@media (max-width: 768px) {
  nav ul { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--light); flex-direction: column; padding: 1rem 2rem; gap: 1rem; border-bottom: 1px solid rgba(0,0,0,0.1); }
  nav ul.open { display: flex; }
  .menu-toggle { display: block; }
  nav a { padding: 0.5rem 0; font-size: 1rem; }
  .hero { padding: 5rem 1.5rem 3rem; }
  .hero p { font-size: 1.05rem; }
  section { padding: 3.5rem 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 200px; }
  .contact-links { gap: 1rem; }
  .contact-link { padding: 0.9rem 1.2rem; min-height: 48px; }
  .btn { padding: 0.85rem 1.8rem; min-height: 48px; display: inline-flex; align-items: center; }
}

@media (max-width: 400px) {
  nav { padding: 0.8rem 1rem; }
  nav .logo { font-size: 1.1rem; }
  .hero h1 { font-size: 2rem; }
  .hero .cta { flex-direction: column; align-items: stretch; }
  .hero .cta .btn { text-align: center; justify-content: center; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 220px; }
  .contact-links { flex-direction: column; align-items: stretch; }
  section { padding: 2.5rem 1rem; }
  .section-title h2 { font-size: 1.7rem; }
}

/* LIGHTBOX */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.9); justify-content: center; align-items: center; cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: 12px; object-fit: contain; }
