/* Estilos generales */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Header */
header {
  background-color: #c21737;
  padding: 1rem 0;
}

header .logo img {
  width: 120px;
  height: auto;
}

header h1 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  color: white;
}

/* Navegación */
.nav-link {
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: gray;
}

.dropdown-menu {
  background-color: #c21737;
  border: none;
}

.dropdown-item {
  color: white;
  transition: background-color 0.3s ease;
}

.dropdown-item:hover {
  background-color: #a5142d;
}

/* Carrusel */
.carousel-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

.carousel-item {
  padding: 0 15px;
}

.carousel-item .row {
  margin: 0 -15px;
}

.carousel-item .col-md-4 {
  padding: 0 15px;
}

.card {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1rem;
  text-align: center;
}

.card-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 1rem;
  color: #555;
}

/* Controles del carrusel */
.carousel-control-prev,
.carousel-control-next {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev {
  left: -50px;
}

.carousel-control-next {
  right: -50px;
}

/* Footer */
.footer {
  background-color: #333;
  color: white;
  padding: 2rem 0;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  color: #c21737;
}

.activity-list {
  list-style-type: none;
  padding: 0;
  }
.activity-list li {
  background-color: #f0f0f0;
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
}
.activity-list li a {
  text-decoration: none;
  color: #000;
}