:root {
    --vjp-teal: rgb(27, 131, 122);
    --vjp-blue: rgb(0, 117, 201);
    --vjp-yellow: rgb(255, 192, 102);
    --vjp-pink: rgb(237, 55, 103);
    --vjp-green: rgb(50, 183, 154);
    --vjp-dark: #121212;
}

/* General Styles */
body {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    padding-bottom: 0;
    background-color: #fafafa;
    color: #333;
}

.header {
    background-color: white;
    color: var(--vjp-teal);
    text-align: center;
    padding: 15px 0;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.header h1 {
    margin: 0;
    font-size: 2em;
}

/* 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: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background-color: white;
}

.card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px) scale(1.02);
    border-color: var(--vjp-yellow);
}

.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;
    font-weight: 600;
    color: var(--vjp-dark);
}

.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: 0.5rem;
    background-color: white;
    color: var(--vjp-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-color: var(--vjp-yellow);
}

.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: var(--vjp-yellow);
}

.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;
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.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;
    }
}
