/* Producer Page Specific Styles */

.producer-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.producer-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../assets/images/1000147395.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.producer-hero-content {
    text-align: center;
    z-index: 2;
}

.producer-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.producer-tagline {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.producer-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* Bio Section */
.producer-bio {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.bio-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.bio-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.bio-stats {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 128, 0.2);
}

.stat-item {
    margin-bottom: 2rem;
    text-align: center;
}

.stat-item h3 {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: bold;
}

/* The Craft Section */
.the-craft {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.craft-item {
    background: rgba(0, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.craft-item:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
}

.craft-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.craft-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Signature Productions */
.signature-productions {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.productions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.production-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 128, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.production-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

.production-item h4 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.production-item .artist {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.production-item .description {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Gear Section */
.gear-section {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gear-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 128, 0.2);
}

.gear-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-align: center;
}

.gear-category ul {
    list-style: none;
}

.gear-category li {
    color: var(--text-gray);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.gear-category li:hover {
    color: var(--text-light);
}

.gear-category li:last-child {
    border-bottom: none;
}

/* Behind the Beat */
.behind-the-beat {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 128, 0.2);
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.video-placeholder {
    padding: 2rem;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-placeholder h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.video-placeholder p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.video-link {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.video-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Responsive Design for Producer Pages */
@media (max-width: 768px) {
    .producer-title {
        font-size: 2.5rem;
    }
    
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .craft-grid,
    .productions-grid,
    .gear-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .producer-hero {
        height: 50vh;
    }
}
