:root{
  --bg:#000000;
  --bg-soft:#0b0b0b;
  --text:#ffffff;
  --muted:#b5b5b5;

  --blue:#0aa2ff;
  --border:rgba(255,255,255,0.08);
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}

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

.container{
  width:min(1100px,calc(100% - 48px));
  margin:0 auto;
}

/* Header */
.header{
  padding:24px 0;
  text-align: center;
}

.logo{
  height:80px;
  max-width: 100%;
}

/* Hero Section with Background Image */
.hero{
  padding:80px 0 70px;
  background: url('Menu.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 1;
}

.center{
  text-align:center;
  z-index: 2;
  position: relative;
}

.hero-logo{
  width:220px;
  max-width:100%;
  margin-bottom:32px;
}

h1{
  font-size:42px;
  margin:0 0 16px;
  font-weight:700;
}

.lead{
  color:var(--muted);
  line-height:1.6;
  margin-bottom:32px;
}

/* Button */
.btn-primary{
  display:inline-block;
  padding:14px 22px;
  border-radius:14px;
  font-weight:700;
  background:linear-gradient(135deg,#0aa2ff,#0077ff);
  box-shadow:0 15px 40px rgba(10,162,255,.25);
}

.btn-primary:hover{
  transform:translateY(-2px);
}

/* Sections */
.section{
  padding:70px 0;
  background: var(--bg-soft);
}

h2{
  margin-bottom:28px;
  font-size:28px;
  text-align: center;
}

/* Cards */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:16px;
}

.card{
  padding:18px;
  border-radius:16px;
  background:var(--bg);
  border:1px solid var(--border);
  transition:transform .2s ease, border-color .2s ease;
}

.card:hover{
  transform:translateY(-3px);
  border-color:rgba(10,162,255,.4);
}

.card-title{
  display:block;
  font-weight:700;
  margin-bottom:6px;
}

.card-desc{
  color:var(--muted);
  font-size:14px;
}

/* Footer */
.footer{
  padding:28px 0;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:14px;
  text-align: center;
}

/* Mobile */
@media (max-width:600px){
  h1{font-size:32px}
}
