* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  background: #111;
  color: white;
}

/* GLOBAL SECTIONS */
section {
  padding: 60px 20px;
  text-align: center;
}

/* HERO */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('images/img05.webp') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #ddd;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 25px;
  background: #ff3c00;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}

.btn.secondary {
  background: transparent;
  border: 2px solid #ff3c00;
  color: #ff3c00;
}

/* POPULAR */
.popular h2 {
  color: #ff3c00;
  margin-bottom: 20px;
}

/* MENU GRID */
.menu {
  background: #1a1a1a;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* CARDS */
.menu-card {
  background: #222;
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  transition: 0.3s ease;
}

.menu-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.menu-card h3 {
  padding: 10px;
}

.menu-card p {
  padding: 0 10px;
  color: #bbb;
  font-size: 14px;
}

.menu-card span {
  display: block;
  padding: 10px;
  color: #ff3c00;
  font-weight: bold;
}

/* HOVER */
.menu-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(255,60,0,0.4);
}

/* ABOUT / CONTACT / LOCATION */
.about, .location, .contact {
  background: #111;
}

/* CTA */
.cta {
  background: #1a1a1a;
}

.cta .btn {
  margin-top: 10px;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 24px;
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }
}