/* General Styles */
body {
    font-family: Arial, sans-serif;
    padding-bottom: 10px;
    background-color: #F5F5DC; /* Cor de fundo offwhite */
}

.header {
    background-color: black;
    color: white;
    text-align: center;
    padding: 10px;
    margin-bottom: 20px;
}

/* Carousel Styles */
.carousel-video {
    position: relative; /* Permite que .carousel-indicators e .carousel-control-* fiquem sobre o vídeo */
    width: 100%;
    max-width: 1116px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    height: 365px; /* Se você realmente quer fixar essa altura */
  }
  
  /* Botões de navegação (anterior/próximo) */
  .carousel-video .carousel-control-prev,
  .carousel-video .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;       /* Ajuste conforme desejar */
    height: 40px;      /* Ajuste conforme desejar */
    background: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente */
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #fff;
    border: none;
  }
  
  .carousel-video .carousel-control-prev {
    left: 15px;
  }
  
  .carousel-video .carousel-control-next {
    right: 15px;
  }
  
  /* Indicadores (bolinhas) */
  .carousel-video .carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    margin: 0; /* Remova margens padrão do Bootstrap, se quiser centralizar melhor */
    padding: 0;
    list-style: none;
  }
  
  .carousel-video .carousel-indicators li {
    background-color: #999;
    width: 30px;
    height: 4px;
    border-radius: 0;
    margin: 0 5px; /* Espaçamento horizontal entre as bolinhas */
    cursor: pointer;
  }

  .carousel-video .carousel-indicators .active {
    background-color: #fff; /* Destaque para a bolinha ativa */
  }
  
  /* Ajustes no .carousel-inner e .carousel-item */
  .carousel-inner {
    width: 100%;
    height: 100%;
  }
  
  .carousel-item {
    width: 100%;
    height: 100%;
  }
  
  
  

.carousel-inner {
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: visible; /* Permite a visualização dos vídeos anterior e posterior */
}

.carousel-item {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease; /* Adiciona transição suave para movimento */
}

.carousel-item:hover {
    transform: translateY(-5px); /* Move o card levemente para cima */
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-caption {
    display: none;
}


/* Card Styles */
.card {
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-5px); /* Adicionar esta linha */
}

.card img {
    width: 100%;
    height: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-title {
    font-size: 1.5em;
    margin: 10px 0;
}

.icon-list a {
    margin-right: 10px;
}

.card-text-container {
    padding: 10px;
}

.albums-list,
.singles-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.artist-card {
    padding: 0px;
    border-radius: 10px;
    background-color: #f8f9fa;
    color: #343a40;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.artist-card img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.artist-card h2 {
    font-weight: bold;
    text-align: center;
}

.artist-card ul {
    list-style-type: none;
    padding: 0px;
}

.artist-card a {
    color: #343a40;
    text-decoration: none;
}

.artist-card a:hover {
    color: #cf201a;
}

.artist-card i {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    color: #6c757d;
}

.artist-card .icon-list {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.card-columns {
    column-count: 3;
}

#artistCards {
    margin-top: 20px;
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 0px;
}

@media (max-width: 991px) {
    
    .card-columns {
        column-count: 2;
    }
}

@media (max-width: 767px) {
    .video-container {
        position: relative;
        height: 0;
        overflow: hidden;
    }
    .card-columns {
        column-count: 1;
    }

    .carousel-video {
        height: auto;
        width: 100%;
        max-width: 1116px;
        margin: 0 auto;
        border-radius: 10px;
        overflow: hidden;
    }
}
