/* 
 * BMM Label - Pages CSS
 * Styling for all subpages
 */

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--bmm-dark) 0%, var(--bmm-grey) 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,199,0,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,199,0,0.05)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,199,0,0.08)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-family: 'Bebas Neue', cursive;
    color: var(--bmm-white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.page-title i {
    font-size: 0.8em;
}

.page-description {
    font-size: 1.2rem;
    color: var(--bmm-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.text-gold {
    color: var(--bmm-gold);
}

/* Info Cards */
.ranking-info,
.info-section {
    padding: 4rem 0;
    background: var(--bmm-dark);
}

.info-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

@media (max-width: 1024px) {
    .info-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

.info-title {
    font-size: 2rem;
    font-family: 'Bebas Neue', cursive;
    color: var(--bmm-white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-description {
    font-size: 1.1rem;
    color: var(--bmm-text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.info-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rank-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rank-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Artists Grid */
.artists-section {
    padding: 5rem 0;
    background: var(--bmm-grey);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.artist-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.artist-card:hover {
    transform: translateY(-5px);
    border-color: var(--bmm-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.artist-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--bmm-gold);
    display: block;
}

.artist-name {
    font-size: 1.8rem;
    font-family: 'Bebas Neue', cursive;
    color: var(--bmm-white);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.artist-role {
    color: var(--bmm-text-secondary);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.artist-rank {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.artist-bio {
    color: var(--bmm-text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.artist-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bmm-gold);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--bmm-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Contact Form */
.contact-section {
    padding: 5rem 0;
    background: var(--bmm-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-form {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    color: var(--bmm-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--bmm-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--bmm-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 199, 0, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-family: 'Bebas Neue', cursive;
    color: var(--bmm-white);
    margin-bottom: 1rem;
}

.contact-details {
    list-style: none;
    margin-bottom: 2rem;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--bmm-text-secondary);
}

.contact-details i {
    color: var(--bmm-gold);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--bmm-text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--bmm-gold);
    color: var(--bmm-dark);
    border-color: var(--bmm-gold);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-title {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .info-card {
        padding: 2rem;
    }
    
    .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .artist-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* Error Pages */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bmm-dark);
}

.error-content {
    text-align: center;
    max-width: 600px;
}

.error-code {
    font-size: 8rem;
    font-family: 'Bebas Neue', cursive;
    color: var(--bmm-gold);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-title {
    font-size: 2rem;
    font-family: 'Bebas Neue', cursive;
    color: var(--bmm-white);
    margin-bottom: 1rem;
}

.error-description {
    color: var(--bmm-text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}