/* Stili per la pagina dei producer - stile Apple */
.page-producer {
    background-color: #000;
    color: #f5f5f7;
    font-family: 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
}

.producer-header {
    background: #000;
    padding: 120px 0 60px;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.producer-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.producer-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ff2d55, #ff9500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.producer-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 0;
    color: #86868b;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.producer-content {
    background-color: #000;
    padding: 80px 0;
}

.producer-card {
    background-color: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.producer-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.producer-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.producer-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top, rgba(26, 26, 26, 1), rgba(26, 26, 26, 0));
}

.producer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.producer-card:hover .producer-image img {
    transform: scale(1.08);
}

.producer-info {
    padding: 30px;
}

.producer-name {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #ff2d55, #ff9500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.01em;
}

.producer-desc {
    font-size: 17px;
    margin-bottom: 20px;
    color: #f5f5f7;
    line-height: 1.5;
    opacity: 0.9;
}

.production-list h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f5f5f7;
    font-weight: 600;
}

.production-list ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.production-list li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #86868b;
    position: relative;
}

.producer-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 20px;
}

.producer-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 17px;
    color: #f5f5f7;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.producer-list li:last-child {
    border-bottom: none;
}

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

.producer-list li::before {
    content: '\f025';
    font-family: 'Font Awesome 5 Free';
    margin-right: 10px;
    color: #ff2d55;
    opacity: 0.8;
}

.producer-btn {
    background: linear-gradient(90deg, #ff2d55, #ff9500);
    border-color: transparent;
    padding: 12px 28px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    margin-top: 10px;
}

.producer-btn:hover {
    background: linear-gradient(90deg, #ff0040, #ff8000);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 45, 85, 0.4);
}

/* Stili per la sezione "Altri Producer Influenti" */
.producer-content h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #ff2d55, #ff9500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

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

.page-producer .menu-link:after {
    background: linear-gradient(90deg, #ff2d55, #ff9500);
}

.page-producer .menu-link:hover {
    background: linear-gradient(90deg, #ff2d55, #ff9500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive per la pagina producer */
@media (max-width: 992px) {
    .producer-title {
        font-size: 42px;
    }
    
    .producer-subtitle {
        font-size: 20px;
    }
    
    .producer-name {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .producer-header {
        padding: 80px 0 40px;
    }
    
    .producer-title {
        font-size: 36px;
    }
    
    .producer-subtitle {
        font-size: 18px;
    }
    
    .producer-image {
        height: 240px;
    }
    
    .producer-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .producer-title {
        font-size: 32px;
    }
    
    .producer-info {
        padding: 20px;
    }
    
    .producer-name {
        font-size: 22px;
    }
    
    .producer-desc {
        font-size: 16px;
    }
}