/* style.css - Dark & modern theme for Pizzeria De Giacomo */
:root{
  --bg:#0b0b0c;
  --card:#0f1112;
  --muted:#9aa1a6;
  --accent:#c0392b;
  --accent-2:#b8860b;
  --glass: rgba(255,255,255,0.04);
  --maxw:1100px;
  --radius:14px;
  --ff: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}
*{box-sizing:border-box}
html,body{height:100%;}
body{
  margin:0;
  font-family:var(--ff);
  background:linear-gradient(180deg,#070708 0%, #0b0b0d 60%);
  color:#e9ecef;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
}
.container{
  width:calc(100% - 40px);
  max-width:var(--maxw);
  margin:0 auto;
  padding:40px 20px;
}
.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{
  display:flex;
  gap:12px;
  align-items:center;
  text-decoration:none;
  color:inherit;
}
.logo{
  width:56px;
  height:56px;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  box-shadow:0 6px 20px rgba(0,0,0,0.6);
}
.brand h1{font-size:18px;margin:0;letter-spacing:0.4px}
.nav{
  display:flex;
  gap:18px;
  align-items:center;
}
.nav a{
  color:var(--muted);
  text-decoration:none;
  font-weight:600;
  padding:8px 10px;
  border-radius:8px;
}
.nav a:hover{color:#fff;background:rgba(255,255,255,0.02)}
.hero{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:32px;
  align-items:center;
  margin-top:28px;
}
.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  padding:32px;
  border-radius:var(--radius);
  box-shadow:0 8px 30px rgba(0,0,0,0.6);
}
.hero h2{margin:0 0 12px 0;font-size:34px}
.hero p{color:var(--muted);margin:0 0 18px 0}
.cta{
  display:inline-block;
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  color:#fff;
  padding:12px 18px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 8px 30px rgba(196,57,47,0.18);
}
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:22px;
}
.card{
  background:var(--card);
  padding:18px;
  border-radius:12px;
  box-shadow:0 6px 18px rgba(0,0,0,0.6);
}
.card h3{margin:0 0 8px 0}
.card p{color:var(--muted);margin:0}
.section-title{
  display:flex;
  align-items:center;
  gap:12px;
  margin:34px 0 18px 0;
}
.section-title h3{margin:0}
.menu-list{display:grid;gap:12px}
.menu-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px;
  background:var(--glass);
  border-radius:10px;
}
.menu-item h4{margin:0}
.price{color:var(--accent-2);font-weight:700}
footer{
  margin-top:40px;
  padding:28px 20px;
  border-radius:12px;
  background:linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
}
.footer-left{color:var(--muted)}
.socials{display:flex;gap:12px}
.socials a{color:var(--muted);text-decoration:none}
@media (max-width:980px){
  .hero{grid-template-columns:1fr; padding-bottom:8px}
  .grid{grid-template-columns:1fr}
  .nav{display:none}
  .container{padding:20px}
  footer{flex-direction:column;align-items:flex-start}
}
.kicker{color:var(--accent-2);font-weight:700;font-size:12px;letter-spacing:1px;text-transform:uppercase}
.muted{color:var(--muted)}
.brand-sub{font-size:12px;color:var(--muted)}
