/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
  font-family: "Poppins", sans-serif;
}

body {
  background: url('https://i.ibb.co/8DBqj4n/video-bg.jpg') no-repeat center center fixed;
  background-size: cover;
}

body .container {
  max-width: 1100px;
}

#filter-buttons button {
  border-radius: 3px;
  background: #ffffff00;
  border-color: transparent;
  color: #f1f1f1; /* White text color */
  transition: border-color 0.3s ease; /* Smooth transition for border color */
}

#filter-buttons button:hover {
  background: #f7a000;
}

#filter-buttons button.active {
  color: #fff;
  background: #f7a000;
  border: #f7a000;
}

#filterable-cards .card {
  width: 15rem;
  border: 2px solid transparent;
}

#filterable-cards .card.hide {
  display: none;
}

@media (max-width: 600px) {
  #filterable-cards {
    justify-content: center;
  }

  #filterable-cards .card {
    width: calc(100% / 2 - 10px);
  }
}

.image-container {
  position: relative;
  width: 100%;
  height: auto;
}

.image-container img {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6); /* Fondo semitransparente */
  color: #f1f1f1; /* Color del texto */
  padding: 10px; /* Espaciado interno */
  border-radius: 5px; /* Bordes redondeados opcionales */
  width: 100%; /* Ancho completo del contenedor */
  box-sizing: border-box; /* Incluye el padding en el ancho total */
  text-align: center;
}

.card-title {
  font-size: 1rem; /* Ajusta el tamaño del texto */
  margin: 0; /* Elimina el margen del título */
}
