@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root{
  --bg-dark: #0f172a;
  --bg-light: #1e293b;
  --card: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --accent: #ffb703;
  --accent-gradient: linear-gradient(135deg,#ffb703,#fb8500);
  --text: #f1f5f9;
  --muted: #94a3b8;
}

/* ================= GLOBAL ================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins', sans-serif;
  background: radial-gradient(circle at 20% 0%, #1e293b 0%, #0f172a 60%);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}

a{
  text-decoration:none;
  color:inherit;
}

/* ================= NAV ================= */

.header{
  padding:20px;
  border-bottom:1px solid var(--border);
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  max-width:1100px;
  margin:auto;
}

.logo{
  font-weight:700;
  font-size:20px;
  letter-spacing:2px;
  color:var(--accent);
}

.nav-links a{
  margin-left:25px;
  color:var(--muted);
  font-weight:500;
  transition:0.3s ease;
}

.nav-links a:hover{
  color:var(--accent);
}

/* ================= HERO ================= */

.hero{
  padding:100px 20px 80px;
  text-align:center;
  max-width:900px;
  margin:auto;
  position:relative;
}

.hero::before{
  content:"";
  position:absolute;
  top:-200px;
  left:50%;
  transform:translateX(-50%);
  width:600px;
  height:600px;
  background:radial-gradient(circle, rgba(255,183,3,0.15), transparent 70%);
  filter:blur(90px);
  z-index:-1;
}

.hero h1{
  font-size:36px;
  margin-bottom:18px;
  font-weight:700;
}

.hero p{
  color:var(--muted);
  margin-bottom:30px;
  font-size:16px;
}

/* ================= BUTTONS ================= */

.hero-actions{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
}

.btn{
  padding:13px 26px;
  border-radius:40px;
  font-weight:600;
  transition:0.3s ease;
  display:inline-block;
}

.btn.primary{
  background:var(--accent-gradient);
  color:#111;
}

.btn.secondary{
  border:1px solid var(--accent);
  color:var(--accent);
}

.btn:hover{
  transform:translateY(-3px);
  opacity:0.9;
}

.btn.map-btn{
  background:transparent;
  border:1px solid rgba(197, 231, 44, 0.2);
  color:var(--text);
}

.btn.map-btn:hover{
  background:rgba(255,255,255,0.05);
}
/* ================= SECTION ================= */

.section{
  padding:80px 20px;
  max-width:1100px;
  margin:auto;
}

.section-title{
  text-align:center;
  font-size:28px;
  margin-bottom:50px;
  color:var(--accent);
  font-weight:600;
}

/* ================= CATEGORY ================= */

.category{
  margin-bottom:70px;
}

.category h3{
  font-size:20px;
  margin-bottom:25px;
  border-left:4px solid var(--accent);
  padding-left:12px;
}

/* ================= GRID ================= */

.menu-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:25px;
}

/* ================= CARD ================= */

.food-card{
  background:var(--card);
  backdrop-filter:blur(12px);
  border:1px solid var(--border);
  border-radius:20px;
  padding:24px;
  transition:0.3s ease;
}

.food-card:hover{
  transform:translateY(-6px);
  border-color:var(--accent);
}

.food-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}

.food-card h4{
  font-size:17px;
  font-weight:600;
}

.price{
  font-size:16px;
  font-weight:700;
  color:var(--accent);
}

.weight{
  font-size:13px;
  color:var(--muted);
  margin-bottom:8px;
  display:block;
}

.food-card p{
  font-size:14px;
  color:var(--muted);
  margin-bottom:8px;
}

.food-card small{
  font-size:12px;
  color:#8a8a8a;
}

/* ================= DESPRE ================= */

.alt{
  background:linear-gradient(180deg,#111827,#0f172a);
  border-radius:20px;
}

/* ================= CONTACT ================= */

#contact a{
  color:var(--accent);
  font-weight:600;
}

#contact a:hover{
  opacity:0.8;
}

/* ================= FOOTER ================= */

.footer{
  text-align:center;
  padding:40px 20px;
  border-top:1px solid var(--border);
  font-size:13px;
  color:var(--muted);
}

/* ================= RESPONSIVE ================= */

@media(min-width:768px){

  .hero h1{
    font-size:44px;
  }

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

}

@media(min-width:1100px){

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

}
