/* --- HEADER --- */

.navbar {
  border-bottom: 1px solid #111;
}


.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 1px;
}


.nav-link {
  color: white !important;
  font-weight: 500;
  margin-left: 20px;
  position: relative;
  transition: color 0.3s ease;
}

.logo-distrito {
  font-weight: 900;
}

/* Subratllat hover */
.nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #c8a2ff;
  transition: width 0.3s;
}


.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}


.nav-link:hover {
  color: #c8a2ff !important;
}



/* --- ESPACIO --- */

.espacio {
  background-color: white;
  padding: 80px 0;
}


/* Placa de la puerta */

.titulo-espacio {
  display: flex;
  justify-content: center;
  margin-bottom: 70px;
}


.placa {
  background-color: black;
  color: white;
  width: 150px;
  padding: 25px 20px;
  text-align: center;
  letter-spacing: 3px;
}


.placa span {
  font-size: 0.8rem;
  font-weight: 400;
}


.placa strong {
  display: block;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
}


.linea {
  height: 1px;
  background-color: white;
  width: 70%;
  margin: 15px auto;
}



/* Galería vertical */
.galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}


.foto {
  height: 650px;
  overflow: hidden;
}


.foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  filter: grayscale(100%);

  transition: transform 0.6s ease, filter 0.5s ease;
}


.foto:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}



/* Responsive */

@media(max-width:900px) {

  .galeria {
    grid-template-columns: 1fr;
  }

  .foto {
    height: 600px;
  }

}

@media (max-width: 576px) {

  .navbar-brand {
    font-size: 1.15rem;
    letter-spacing: 0.5px;
  }

}