/* ======== NAVBAR ======== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  padding: 10px 0;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  transition: color 0.3s;
}

.navbar a:hover {
  color: yellow;
}

/* ======== HERO SECTION ======== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.overlay {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 4vw;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  font-family: 'Playfair Display', serif;
  text-align: center;
  z-index: 10;
}

/* LOGO (opcional si decides mantenerlo) */
.logo-wrapper {
  display: none; /* Ocultamos el logo de portada */
}
