body {
  font-family: 'Poppins', sans-serif;
  background: #0b0b0b;
  color: #fff;
}

.navbar {
  background: rgba(0,0,0,0.8);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
}

.hero {
  height: 100vh;
  background: url('../img/fondo.jpeg') center/cover no-repeat;
  position: relative;
}

.hero-logo {
  max-width: 520px;

  padding: 25px 35px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}




.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.hero-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: gold;
}

.section {
  padding: 80px 0;
}

.section.dark {
  background: #111;
}

.btn-gold {
  background: gold;
  color: #000;
  padding: 10px 30px;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-gold:hover {
  background: #d4af37;
}

.event-logo {
  max-width: 80px;
  margin-bottom: 15px;
  /* si los logos son negros */
}

.event-card {
  background: #1a1a1a;
  padding: 35px 25px;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.event-type {
  font-size: 0.95rem;
  opacity: 0.85;
}

.event-time {
  margin-top: 8px;
  font-size: 0.9rem;
  color: gold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.event-time i {
  font-size: 1rem;
}

.menu-item i {
  font-size: 2.5rem;
  color: gold;
  margin-bottom: 10px;
}

.event-card {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s;
}

.event-card:hover {
  transform: translateY(-10px);
}

.social a {
  color: gold;
  font-size: 1.5rem;
  margin: 0 10px;
}

@media (max-width: 768px) {
  .hero-logo {
    max-width: 220px;
    padding: 18px 22px;
  }

  .btn-hero {
    font-size: 1rem;
    padding: 10px 30px;
  }
}

.menu-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-image {
  max-width: 420px;        /* Tamaño tipo pantalla móvil */
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.15);
  transition: transform 0.4s ease;
}

/* Efecto elegante al pasar el mouse */
.menu-image:hover {
  transform: scale(1.04);
}

/* En pantallas grandes se ve más imponente */
@media (min-width: 992px) {
  .menu-image {
    max-width: 520px;
  }
}

