@charset "UTF-8";
/* reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #FF0090;
}

footer {
  color: whitesmoke;
}

/* header */
header {
  display: flex;
  justify-content: center;
  align-items: center;
}
header nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
header nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  color: whitesmoke;
}

/* main */
main {
  height: 80vh;
  display: grid;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 25%);
  align-items: center;
  padding: 1.1 rem;
  row-gap: 1rem;
}
main div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inicio-img {
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 480px) {
  .inicio-section {
    padding: 4rem 2rem;
  }
  .social-card {
    padding: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .inicio-section {
    padding: 4rem;
    min-height: 500px;
  }
  .miembros-card {
    margin-bottom: 2rem;
  }
  .album-card {
    padding: 2rem 4rem;
  }
}
/* navbar */
.bg-twice {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.navbar {
  padding: 1rem;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

.brand-text {
  color: black;
  font-weight: 800;
  letter-spacing: 2px;
}

.nav-link {
  color: black;
  font-weight: 600;
  margin: 1rem;
  position: relative;
}
.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #FF0090;
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active {
  color: #FF0090;
}
.nav-link:hover::before, .nav-link.active::before {
  width: 100%;
}

/* Link genérico */
.link {
  text-decoration: none;
  color: inherit;
}

/* Social card */
.social-card {
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: box-shadow 0.3s ease;
}
.social-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* Info block */
.info {
  background-color: white;
  padding: 1rem;
  border-radius: 0.25rem;
  margin: 1rem;
  border-left: 4px solid #FF0090;
}

/* Sección inicio */
.inicio-section {
  padding: 4rem;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Imagen de inicio */
.inicio-img {
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: auto;
}

/* Tarjeta de album */
.album-card {
  padding: 2rem;
  border-radius: 2rem;
}

/* Portada del album */
.album-cover {
  border-radius: 0.5rem;
  width: 100%;
  height: auto;
}

/* Textos del album */
.album-titulo {
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
}

.album-fecha {
  color: white;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.album-descripcion {
  color: white;
  line-height: 1.8;
}

/* Lista de canciones */
.tracklist {
  padding: 2rem;
  border-radius: 2rem;
  list-style-position: inside;
}
.tracklist li {
  padding: 0.5rem;
  border-bottom: 1px solid white;
  transition: padding-left 0.2s ease, background-color 0.2s ease;
}
.tracklist li:last-child {
  border-bottom: none;
}
.tracklist li:hover {
  background-color: white;
  padding-left: 1rem;
}

/* Placeholder de album */
.album-placeholder {
  border-radius: 0.5rem;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.miembros-section {
  background-color: #FF0090;
  padding: 2rem 0;
}

.miembros-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 2rem;
  border-left: 4px solid #FF0090;
  transition: box-shadow 0.3s ease;
}
.miembros-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.lider-card {
  border: 3px solid #FF0090;
}

.member-image{
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.nombre{
  color: #FF0090;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.nombre {
  color: #FF0090;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.rol {
  font-size: 0.9rem;
  color: #666;
  padding: 0.5rem;
}

.descripcion {
  color: #333;
  line-height: 1.8;
}

.infomacion-grupal {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: box-shadow 0.3s ease;
}
.infomacion-grupal:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.infomacion-grupal h4 {
  color: #FF0090;
  margin-bottom: 1rem;
}
.infomacion-grupal ul {
  list-style: none;
  padding-left: 0;
}
.infomacion-grupal li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  color: #333;
}
.infomacion-grupal li:last-child {
  border-bottom: none;
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*# sourceMappingURL=style.css.map */
