/* ===============================
   ROOT VARIABLES (Design System)
================================ */
:root {
  --primary: #1a1a1a;
  --secondary: #C5A059;
  --accent: #CC5500;
  --white: #ffffff;
  --gray: #f5f5f5;

  --heading-font: 'Playfair Display', serif;
  --body-font: 'Poppins', sans-serif;

  --transition: all 0.3s ease-in-out;
}

/* ===============================
   GLOBAL RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  background: var(--primary);
  color: var(--white);
  line-height: 1.6;
}

/* ===============================
   NAVBAR
================================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
  z-index: 1000;
}

.logo {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  color: var(--secondary);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--secondary);
}

/* ===============================
   HERO SECTION
================================ */
.hero {
  height: 100vh;
  background: url('images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-content h1 {
  font-family: var(--heading-font);
  font-size: 3rem;
  color: var(--secondary);
}

.hero-content p {
  margin: 15px 0;
}

.btn {
  padding: 12px 25px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  transition: var(--transition);
}

.btn:hover {
  background: var(--secondary);
}

/* ===============================
   EXPERIENCE SECTION
================================ */
.section {
  padding: 80px 40px;
  text-align: center;
}

.section h2 {
  font-family: var(--heading-font);
  color: var(--secondary);
  margin-bottom: 20px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #222;
  padding: 20px;
  width: 280px;
  border-radius: 10px;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-10px);
}

/* ===============================
   FEATURED DISHES
================================ */
.dish img {
  width: 100%;
  border-radius: 10px;
}

.dish h3 {
  margin-top: 10px;
  color: var(--secondary);
}

/* ===============================
   FOOTER
================================ */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
}

/* ===============================
   WHATSAPP BUTTON
================================ */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
}

/* ===============================
   RESPONSIVE
================================ */
@media(max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .nav-links {
    display: none;
  }
}