* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.navbarlogo {
  color: white;
  font-size: 30px;
  font-weight: bold;
  text-align: left;
}

.hero {
  background: url('img/fondo') center/cover no-repeat;
  color: #1e3a8a;
  text-align: center;
  padding: 80px 20px;
}

.hero__title {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero__text {
  font-size: 20px;
}

.menu {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.menu__title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: #1e3a8a;
}



.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.content {
  position: relative;
  z-index: 1;
}

.back {
  background-image: url('../img/fondo.jpeg');
  background-size: cover;
  height: 100vh;
}

.mainContent {
  color: white;
  margin: 100px 100px;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(250, 249, 249, 0.849);
}

.mainContent__tittle {
  text-align: center;
  font-size: 30px;
  color: #eaebee;
  margin-bottom: 20px;
  font-weight: bold;
}

.mainContent__text {
  font-size: 17px;
  line-height: 1.6;
  text-align: justify;
  color: #e0e0e0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Cards del Menú */
.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.menu-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

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

.menu-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-card__title {
  font-size: 24px;
  margin: 15px;
  color: #1e3a8a;
}

.menu-card__description {
  font-size: 16px;
  margin: 0 15px 10px;
}

.menu-card__price {
  display: block;
  font-weight: bold;
  color: #011a3b;
  margin: 0 15px 15px;
}

@media(max-width:768px) {
  .back {
    height: 130vh;
  }

  .overlay {
    height: 130vh;
  }

  .mainContent__tittle {
    font-size: 30px;


  }

  .mainContent {
    margin: 20px 50px;
  }


  .mainContent__text {
    font-size: 22px;
    line-height: 1.6;
    text-align: justify;
    color: #e0e0e0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }


}