:root {

  --color-principal: #5b5ef5;
  --color-secundario: #9333ea;
  --color-fondo: #0d0d0f;
  --color-titulos: #C9D0DC;
  --color-subtitulos: #5A8BD4;
  --color-texto: #f1f1f1;
  --color-gris: #1e1e1e;
  --color-footer: #121214;
  --fuente: 'Poppins', sans-serif;
}

body {
    margin: 0;
    font-family: var(--fuente);
    color: var(--color-texto);
    min-height: 100vh;
    background:
      linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
      url("../img/backgrounds/don_bosco.png") center/cover no-repeat fixed;
}

logo {
  animation: fadeIn 2s ease;

}

logo2 {
  animation: fadeIn 2s ease;
  border-radius: 20px;
  }


header {
  background:
    linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0) 50%, rgba(0,0,0,0.8)),
    center/cover no-repeat fixed;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  position: sticky;
  top: 0;
  font-size: 1.3rem;
  z-index: 100;
  transition: all 0.8s ease;
}

header.scrolled {
  background: rgba(0,0,0,0.6); /* translúcido */
  backdrop-filter: blur(5px);
}


nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
nav a {
  color: var(--color-texto);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
nav a:hover {
  color: var(--color-principal);
}


.hero {
  min-height: 100vh;
  background:
  
  center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  color: #fff;
}
.hero-text {
  max-width: 1000px;
  height: auto;
  animation: fadeIn 1.5s ease;
  background: rgba(0, 0, 0, 0.5); 
  padding: 2rem;
  border-radius: 15px; 
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6); 
  backdrop-filter: blur(5px);
  font-weight: bold;
}

.hero h2 {
  font-size: 2.9rem;
  margin-bottom: 1rem;
}
.hero p {
  color: #ddd;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.hero-title {
  color: var(--color-texto); /* el color que quieras */
  font-size: 3rem;               /* tamaño grande de h1 */
  text-align: center;            /* centrado horizontal */
  margin-top: 2rem;              /* separarlo de las imágenes */
  background: rgba(0,0,0,0.4);  /* fondo semitransparente opcional */
  padding: 1rem 2rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6); /* efecto insano */
  backdrop-filter: blur(5px);
}




.btn {
  background: var(--color-principal);
  border: none;
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  animation: fadeIn 2s ease;
  text-decoration: none;
}
.btn:hover {
  background: var(--color-secundario);
  transform: scale(1.05);
}


}


.artists {
  padding: 3rem 2rem;
  background:
  url(.../img/backgrounds/banner1.png/);center/cover no-repeat;
  text-align: center;
}

.imagenes-row {
  display: flex;
  justify-content: center;  /* centra las imágenes en la fila */
  gap: 2rem;                /* espacio entre imágenes */
  flex-wrap: wrap;           /* si la pantalla es muy chica, bajan a otra fila */
}

.imagenes-row img {
  width: 500px;   /* ajusta el tamaño que quieras */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}

.imagenes-row img:hover {
  transform: scale(1.05);
}


.pictures-row {
  display: flex;       /* pone las fotos en fila */
  gap: 20rem;           /* espacio entre fotos */
  justify-content: center; /* centra las fotos horizontalmente */
  flex-wrap: wrap;     /* si no entran, bajan a la siguiente fila */
  padding: 2rem;
}

.pictures-row img {
  width: 600px;       /* ancho fijo o ajustable */
  height: auto;       /* mantiene proporción */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}

.pictures-row img:hover {
  transform: scale(1.05);
}



.container {
  width: 90%;
  max-width: 1200px;
  margin: 5rem auto;
  padding: 3rem 2rem;
  background: linear-gradient(145deg, #131313, #0b0b0b);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  animation: fadeIn 1.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.container h2 {
  font-size: 2rem;
  color: var(--color-principal);
  text-align: center;
  letter-spacing: 1px;
  
}

.container p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ccc;
  max-width: 800px;
  text-align: center;
}

.container .btn {
  background: var(--color-secundario);
  box-shadow: 0 0 15px rgba(147, 51, 234, 0.4);
}
.container .btn:hover {
  background: var(--color-principal);
  box-shadow: 0 0 25px rgba(91, 94, 245, 0.5);
  transform: scale(1.07);
}


.eventos-section {
    
    padding: 3rem 2rem;
    margin: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
}

.eventos-titulo {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--color-titulos);
    background: rgba(0,0,0,0.4);
    padding: 1rem 2rem;
    border-radius: 12px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
     backdrop-filter: blur(5px);

}

.eventos-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.evento-card {
    max-width: 400px;
    animation: fadeIn 1.5s ease;
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    font-weight: bold;
    text-align: center;

}

.evento-card img {
    width: 50%;
    display: block;
    margin: 0 auto;
    border-radius: 20px; 
    box-shadow: 0px 20px 25px rgba(0, 0, 0, 1);
    transition: transform 0.3s;
}

.evento-card img:hover {
  transform: scale(1.05);
}

.evento-card h3 {
    font-size: 35px;
    margin-bottom: 1rem;
    color: var(--color-subtitulos);
    text-decoration: underline dotted #5A8BD4;
}

.evento-card p {
    font-size: 20px;
}

.evento-card h1 {
    font-weight: 1000;
    
}


.map {
    position: relative;
    padding-bottom: 2%;
    width: 100%;
    display: flex;
    justify-content: center;
}



/* Footer general */
footer {
  background: linear-gradient(135deg, #0d0d0f, #1a1a1f);
  color: #f1f1f1;
  font-family: 'Arial', sans-serif;
  padding: 1rem 1rem;
}

/* Contenedor flex para texto + íconos */
.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap; /* Responsive */
  gap: 1rem;
}

/* Texto */
.foot-text {
  font-size: 1.3rem;
  line-height: 1.6;
  text-align: left;
}

/* Íconos de redes */
.social-icons {
  display: flex;
  gap: 1.5rem;
}

.social-icons a {
  display: inline-block;
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icons a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Hover épico */
.social-icons a:hover {
  transform: scale(1.3) rotate(-10deg);
  border-radius: 15px;
}

/* Colores específicos de cada red usando filtros */
.icon.whatsapp img { filter: brightness(0) saturate(100%) invert(41%) sepia(93%) saturate(607%) hue-rotate(97deg) brightness(95%) contrast(90%); }
.icon.instagram img { filter: brightness(0) saturate(100%) invert(50%) sepia(95%) saturate(500%) hue-rotate(300deg) brightness(95%) contrast(90%); }
.icon.facebook img { filter: brightness(0) saturate(100%) invert(28%) sepia(76%) saturate(3890%) hue-rotate(197deg) brightness(95%) contrast(90%); }

/* Responsivo para móviles */
@media (max-width: 768px) {
  .footer-flex {
    flex-direction: column;
    text-align: center;
  }
  .foot-text {
    text-align: center;
  }
}




@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
