body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
  background: #fff;
}

/* HEADER */
header {
  background: #000;
  color: #fff;
  padding: 15px;
  text-align: center;
}

header h1 {
  margin: 0;
}

/* HERO */
.hero {
  background: url("Images/hero.jpg") center/cover no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  color: #fff;
  z-index: 1;
  padding: 0 20px;
  max-width: 800px;
}

.hero-content h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* BOTON */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: red;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn:hover {
  background: darkred;
  transform: scale(1.05);
}

/* MENU */
.menu {
  padding: 50px 20px;
  text-align: center;
}

.menu h2,
.about h2,
.contact h2 {
  margin-top: 0;
}

.menu-items {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.card {
  width: 250px;
  background: #f4f4f4;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.card h3 {
  margin: 15px 0 10px;
}

.card p {
  margin: 0 0 20px;
  font-weight: bold;
}

/* ABOUT */
.about {
  padding: 50px 20px;
  background: #eee;
  text-align: center;
}

.about p,
.contact p {
  max-width: 700px;
  margin: 10px auto;
  line-height: 1.6;
}

/* CONTACT */
.contact {
  padding: 50px 20px;
  text-align: center;
}

/* FOOTER */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 10px;
}

footer p {
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu-items {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    min-height: 75vh;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
}
