/* Stile personalizzato per il logo Hip Hop - colore di default */
.hip-hop-logo {
    font-family: 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #0071e3, #40c8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

/* Varianti di colore per le diverse pagine */
.page-catalogo .hip-hop-logo {
    background: linear-gradient(90deg, #ff2d55, #ff9500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-project-plan .hip-hop-logo {
    background: linear-gradient(90deg, #5e5ce6, #bf5af2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hip-hop-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Stile personalizzato per la navbar */
.custom-navbar {
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
}

/* Stile per i link del menu */
.menu-link {
    font-family: 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    text-transform: none;
    letter-spacing: -0.01em;
    margin: 0 10px;
    padding: 8px 15px !important;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    color: #f5f5f7 !important;
    opacity: 0.8;
}

.menu-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, #0071e3, #40c8ff);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu-link:hover {
    background: linear-gradient(90deg, #0071e3, #40c8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-color: transparent;
    opacity: 1;
}

/* Varianti di colore per le diverse pagine */
.page-catalogo .menu-link:after {
    background: linear-gradient(90deg, #ff2d55, #ff9500);
}

.page-catalogo .menu-link:hover,
.page-catalogo .navbar-nav .nav-item:nth-child(2) .menu-link {
    background: linear-gradient(90deg, #ff2d55, #ff9500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-project-plan .menu-link:after {
    background: linear-gradient(90deg, #5e5ce6, #bf5af2);
}

.page-project-plan .menu-link:hover,
.page-project-plan .navbar-nav .nav-item:nth-child(3) .menu-link {
    background: linear-gradient(90deg, #5e5ce6, #bf5af2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Stile per il link attivo - home page */
.navbar-nav .nav-item:first-child .menu-link {
    background: linear-gradient(90deg, #0071e3, #40c8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1;
}

.navbar-nav .nav-item:first-child .menu-link:after {
    width: 80%;
}

/* Stile per il link attivo - altre pagine */
.page-catalogo .navbar-nav .nav-item:nth-child(2) .menu-link:after,
.page-project-plan .navbar-nav .nav-item:nth-child(3) .menu-link:after {
    width: 80%;
}

.menu-link:hover:after {
    width: 80%;
}

/* Stile per il toggler su dispositivi mobili */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 10px;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 113, 227, 0.5);
}

/* Stili per la sezione rotating-background */
.rotating-background {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.circle__item {
    position: absolute;
    width: 20%;
    height: 20%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.circle__item:nth-child(1) {
    top: 10%;
    left: 50%;
    transform: translateX(-50%) rotate(10deg);
}

.circle__item:nth-child(2) {
    top: 50%;
    left: 10%;
    transform: translateY(-50%) rotate(-15deg);
}

.circle__item:nth-child(3) {
    top: 50%;
    right: 10%;
    transform: translateY(-50%) rotate(15deg);
}

.circle__item:nth-child(4) {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%) rotate(-10deg);
}

.circle__item:nth-child(5) {
    top: 30%;
    left: 30%;
    transform: rotate(-5deg);
}

.circle__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.circle__item:hover img {
    transform: scale(1.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #0071e3, #40c8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-content .btn-primary {
    background: linear-gradient(90deg, #0071e3, #40c8ff);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 113, 227, 0.4);
}

.hero-content .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 113, 227, 0.6);
}

/* Stile per la sezione Storia con sfondo di immagini */
.storia-background {
    position: relative;
    background-color: #000;
    color: #fff;
    padding: 80px 0;
    /* IMPORTANTE: Non modificare questa proprietà */
    overflow: hidden;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hiphop6.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Aggiungi questo per il fallback se l'immagine non si carica */
@media (min-resolution: 0dpi) {
    .storia-background {
        background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/hiphop6.jpg');
    }
}


/* Stili per il footer */
footer h5 {
    font-weight: 600;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

footer h5:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #fff;
}

/* Miglioramenti per dispositivi mobili */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .circle__item {
        width: 25%;
        height: 25%;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .circle__item {
        width: 30%;
        height: 30%;
    }
    
    .storia-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    footer {
        text-align: center !important;
    }
    
    footer h5:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Rimuovi o commenta le regole per .circle e .circle__item */
/* .circle {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    animation: rotate 60s linear infinite;
    z-index: 1;
    opacity: 0.6;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
} */

/* Nuovi stili per la sezione hero stile Apple */
.hero-background {
    background-color: #000;
    color: white;
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    padding: 2rem 0;
    max-width: 100%;
    text-align: left;
    background: transparent;
    box-shadow: none;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-top: 20px;
}

.grid-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.grid-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

/* Stili responsive */
@media (max-width: 992px) {
    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .image-grid {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .grid-item img {
        height: 250px;
    }
}

/* Stili per la sezione Spotify - stile Apple */
.spotify-section {
    background-color: #000;
    color: white;
    padding: 120px 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.spotify-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #0071e3, #40c8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 21px;
    font-weight: 400;
    margin-bottom: 50px;
    color: #86868b;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.spotify-card {
    background-color: #1a1a1a;
    border: none;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.5s ease;
    height: 100%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.spotify-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.spotify-card .card-img-top {
    transition: all 0.5s ease;
}

.spotify-card:hover .card-img-top {
    transform: scale(1.05);
}

.spotify-card .card-body {
    padding: 25px;
}

.spotify-card .card-title {
    color: white;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}

.spotify-card .card-text {
    color: #86868b;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.btn-spotify {
    background: linear-gradient(90deg, #1DB954, #1ED760);
    color: white;
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-spotify i {
    margin-right: 8px;
}

.btn-spotify:hover {
    background: linear-gradient(90deg, #1ED760, #1DB954);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(29, 185, 84, 0.3);
}

/* Stile per il pulsante Riprova */
.btn-primary {
    background: linear-gradient(90deg, #0071e3, #40c8ff);
    color: white;
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #40c8ff, #0071e3);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 113, 227, 0.3);
}

/* Stili per la galleria elegante */
.gallery-section {
    background-color: #fff;
    padding: 100px 0;
    position: relative;
}

.gallery-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    color: #1d1d1f;
}

.gallery-subtitle {
    font-size: 21px;
    font-weight: 400;
    margin-bottom: 50px;
    color: #86868b;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.gallery-item {
    flex: 0 0 calc(50% - 15px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.8s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 100%;
    }
    
    .gallery-title {
        font-size: 36px;
    }
    
    .gallery-subtitle {
        font-size: 18px;
    }
}
/* Stili per la pagina del catalogo */
.catalogo-header {
    background-color: #000;
    color: white;
    padding: 80px 0 40px;
    text-align: center;
}

.catalogo-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #ff2d55, #ff9500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.catalogo-subtitle {
    font-size: 21px;
    color: #86868b;
    max-width: 600px;
    margin: 0 auto 30px;
}

.catalogo-tabs {
    background-color: #000;
    padding-bottom: 20px;
}

.catalogo-nav-tabs {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center;
}

.catalogo-nav-tabs .nav-link {
    color: #86868b;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    transition: all 0.3s ease;
}

.catalogo-nav-tabs .nav-link:hover {
    color: #fff;
    background-color: transparent;
    border-color: transparent;
}

.catalogo-nav-tabs .nav-link.active {
    color: #fff;
    background-color: transparent;
    border-color: transparent;
    border-bottom: 3px solid #ff2d55;
}

.catalogo-content {
    background-color: #111;
    color: white;
    padding: 60px 0;
    min-height: 600px;
}

/* Stili per le card degli artisti */
.artist-card {
    background-color: #1a1a1a;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
    transition: all 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.artist-image {
    height: 250px;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artist-card:hover .artist-image img {
    transform: scale(1.05);
}

.artist-info {
    padding: 25px;
}

.artist-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.artist-desc {
    color: #86868b;
    font-size: 16px;
    margin-bottom: 20px;
}

.song-list {
    margin-bottom: 20px;
}

.song-list h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.song-list ul {
    padding-left: 20px;
    color: #86868b;
}

.song-list li {
    margin-bottom: 5px;
}

.artist-btn {
    background: linear-gradient(90deg, #ff2d55, #ff9500);
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.artist-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 45, 85, 0.3);
}

/* Stili per i modal */
.modal-content {
    background-color: #1a1a1a;
    color: white;
    border-radius: 15px;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    color: white;
    font-weight: 600;
}

.close {
    color: white;
    text-shadow: none;
}

.close:hover {
    color: #ff2d55;
}

.coming-soon {
    font-size: 24px;
    color: #86868b;
    margin: 100px 0;
}

/* Responsive */
@media (max-width: 992px) {
    .catalogo-title {
        font-size: 36px;
    }
    
    .catalogo-subtitle {
        font-size: 18px;
    }
    
    .catalogo-nav-tabs .nav-link {
        padding: 12px 20px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .catalogo-header {
        padding: 60px 0 30px;
    }
    
    .artist-image {
        height: 200px;
    }
}

/* Stili per la lista degli artisti */
.artist-list-container {
    background-color: #1a1a1a;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.artist-list-container h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #ff2d55, #ff9500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.artist-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.artist-list li {
    color: #f5f5f7;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.artist-list li:hover {
    color: #ff2d55;
    transform: translateX(5px);
    cursor: pointer;
}

/* Stili per il modal dinamico degli artisti */
#artistModal .modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

#artistModal .modal-body::-webkit-scrollbar {
    width: 8px;
}

#artistModal .modal-body::-webkit-scrollbar-track {
    background: #1a1a1a;
}

#artistModal .modal-body::-webkit-scrollbar-thumb {
    background: #ff2d55;
    border-radius: 4px;
}

#artistModal .modal-body::-webkit-scrollbar-thumb:hover {
    background: #ff9500;
}

/* Stili per la paginazione */
.pagination-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination .page-item .page-link {
    background-color: #1a1a1a;
    color: #f5f5f7;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pagination .page-item .page-link:hover {
    background-color: #333;
    color: #fff;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(90deg, #ff2d55, #ff9500);
    border-color: transparent;
    color: white;
}

/* Stili per la sezione moda */
.fashion-card {
    background-color: #1a1a1a;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.fashion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.fashion-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.fashion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fashion-card:hover .fashion-image img {
    transform: scale(1.05);
}

.fashion-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(90deg, #ff2d55, #ff9500);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.fashion-info {
    padding: 25px;
}

.fashion-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.fashion-desc {
    color: #86868b;
    font-size: 16px;
    margin-bottom: 20px;
}

.fashion-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #86868b;
    font-size: 14px;
}

.fashion-era {
    display: flex;
    align-items: center;
}

.fashion-era i {
    margin-right: 5px;
    color: #ff2d55;
}

.fashion-btn {
    background: linear-gradient(90deg, #ff2d55, #ff9500);
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.fashion-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 45, 85, 0.3);
}

/* Aggiungi questo alla fine del file styles.css per rimuovere la linea bianca */
body::after {
    content: none !important;
}

.navbar, 
.navbar-dark, 
.custom-navbar,
.navbar-expand-lg,
.fixed-top {
    border: none !important;
    border-bottom: none !important;
    border-top: none !important;
    outline: none !important;
}

/* Rimuovi eventuali bordi da tutti gli elementi della navbar */
.navbar *,
.navbar-dark *,
.custom-navbar * {
    border: none !important;
}

/* Rimuovi eventuali linee orizzontali */
hr, .hr {
    display: none !important;
}

/* Assicurati che non ci siano spazi tra la navbar e il contenuto */
.navbar + section,
.navbar + div,
.navbar + header {
    margin-top: 0 !important;
    border-top: none !important;
}