
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
  text-align: center;
}

header {
  position: sticky;
  top: 0;
  background: #000;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #222;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffcc00;
}

#menu-btn {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  display: none;
}

nav a {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  padding: 110px 20px;
  background: radial-gradient(circle at top, #222, #000);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  color: #ccc;
}

.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 15px 35px;
  background: #e10600;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-weight: bold;
}

section {
  padding: 80px 20px;
}

iframe {
  width: 100%;
  max-width: 700px;
  height: 380px;
  border: none;
  border-radius: 20px;
  margin-bottom: 25px;
}

.delivery a {
  display: inline-block;
  margin: 10px;
  padding: 14px 28px;
  background: #222;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.logo img {
  height: 55px;
  max-width: 180px;
  object-fit: contain;
}

footer {
  padding: 25px;
  background: #111;
  color: #777;
  font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 768px) {
  #menu-btn {
    display: block;
  }
  nav {
    display: none;
    flex-direction: column;
    background: #000;
  }
  nav.open {
    display: flex;
  }
  nav a {
    padding: 10px;
  }
}
