body {
    font-family: 'Inter', sans-serif;
}

section[id] {
  scroll-margin-top: 70px; /* ajustá este valor al alto de tu navbar */
}


#hero {
    background: url('/assets/recursos/frenteBarrancas.png') center center / cover no-repeat;
    height: 70vh;
    width: 100%;

    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
}

#hero h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgb(0 0 0 / 91%);
}


nav.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

nav .nav-link {
    font-weight: 500;
    color: #333 !important;
}

nav .nav-link.active {
    color: #007bff !important;
}

footer {
    background: #222;
    color: white;
}

#carouselElCentro img {
  height: 500px;
  object-fit: cover;
}

#carouselPinturas img {
  height: 600px;
  object-fit: cover;
}

#carouselElPueblo img {
  height: 500px;
  object-fit: cover;
}


.logoSuperior {
  max-height: 60px;        /* limita la altura */
  width: auto;             /* mantiene proporciones */
  border-radius: 12px;     /* bordes redondeados */
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25); /* sombra inferior suave */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-right: 10px;
}

.logoSuperior:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.ficha-alojamiento{
    border: 1px solid #AAA;
    background-color: #f3f3da;
    padding: 5px 5px 5px 5px;
}

.alojamiento-img {
  cursor: pointer;
  max-width: 200px;
  max-height: 200px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.alojamiento-img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Modal para ver imagen ampliada */
.modal-img {
  display: none;
  position: fixed;
  z-index: 1050;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.modal-img img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.close-modal {
  position: absolute;
  top: 20px; right: 40px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}



/* 🔽 En pantallas pequeñas (teléfonos) */
@media (max-width: 576px) {
  .logoSuperior {
    max-height: 30px; /* altura reducida en mobile */
    margin-right: 6px; /* un poco menos de margen */
  }
}