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

body {
  line-height: 1.6;
}

section {
  padding: 60px 20px;
}

/* HERO */

.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('images/demo1-5.webp') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

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

.hero-content h1 {
  font-size: 52px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

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

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

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

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

/* MENU */
.menu {
  padding: 60px 20px;
  background: #f9f5f0;
  text-align: center;
}

.menu h2 {
  margin-bottom: 30px;
  font-size: 32px;
}

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

.menu-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: left;
}

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

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

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

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


.menu-card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

.menu-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ABOUT */
.about {
  padding: 40px;
  text-align: center;
}

/* LOCATION */
.location {
  padding: 40px;
  text-align: center;
}

/* CONTACT */
.contact {
  padding: 40px;
  text-align: center;
  background: #f1f1f1;
}

/* CTA */
.cta {
  padding: 40px;
  text-align: center;
}

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}