* {
    font-family: 'Questrial', sans-serif;
    color: white;
}

body {
    margin: 0;
    height: 100vh;
    background-color: #000;
    background-image: 
        radial-gradient(circle at 10% 90%, rgba(0, 200, 255, 0.9) 0%, rgba(0, 0, 0, 0.95) 50%, transparent 100%),
        radial-gradient(circle at 90% 10%, rgb(181, 116, 19) 0%, rgba(0, 0, 0, 0.95) 50%, transparent 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-attachment: fixed;
    color: white;
    font-family: 'Questrial', sans-serif;
}

#mb-3{
   font-family: "ABeeZee", sans-serif !important; 
}

#titolo {
  font-family: "ABeeZee", sans-serif !important;
  font-style: italic;
  font-size: 50px;
  font-weight: normal;
  margin: 0;
}

.contenitorescritta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem; /* spazio tra icona e titolo */
  padding: 1rem;
}


#containertestofoto {
    padding-top: 80px;
    padding-left: 40px; /* Sposta il contenuto a destra */
    padding-right: 20px;
    margin-top: 60px;
}

.carousel-inner{
    margin-top: 60px;
}

#testocarosello{
    margin: 0 auto;
    margin-top: 40px;
    padding: 20px;
    text-align: justify;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.675);
    border: 2px solid;
    border-radius: 12px;
    line-height: 1.6;
    background-color: rgba(255, 255, 255, 0.304);
    backdrop-filter: blur(10px);
}

.card {
  background-color:rgba(0, 0, 0, 0.3); 
  backdrop-filter: blur(10px);                
  border: 2px solid #fffefe;                              
  box-shadow: 5px 5px 15px rgb(255, 255, 255);      
  color: white;                   
}

.playlist-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 2px solid #fffefe;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 5px 5px 15px rgb(255, 255, 255);
    text-align: center;
}
  
.playlist-section h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}
  
.playlist-section p {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
}
  
.spotify-embed iframe {
    width: 100%;
    border: none;
}

.accordion-item, .accordion-body{
    background-color: rgba(0, 0, 0, 0.3); 
    border: 2px solid #fffefe;
    backdrop-filter: blur(10px);
    box-shadow: 5px 5px 15px rgb(255, 255, 255);
    color: #fffefe;
}

.accordion-button{
    background-color: rgba(0, 0, 0, 0.3); 
    border: 2px solid #fffefe;
    backdrop-filter: blur(10px);
    color: #fffefe;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.accordion-button::after {
    filter: brightness(0) invert(1); /* rende l'icona bianca */
}

.accordion-button:not(.collapsed) {
    background-color: rgb(181, 116, 19);
    color: white;
    border-color: rgb(181, 116, 19);
}
  
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.descrizione{
    border: 2px solid #fffefe;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.675);
    background-color: rgba(255, 255, 255, 0.304);
    backdrop-filter: blur(10px);
    margin-top: 40px;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 80%;
}
  
@media (max-width: 600px) {
      .contenitorescritta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
        position: relative; /* necessario per layout flessibile */
    }

    #titolo {
        font-size: 35px;
        text-align: center;
        margin-top: 0;
    }
}
