/* Zaiju Custom Styles */

/* Dark Header */
.dark-header {
    background: linear-gradient(135deg, rgba(24, 36, 84, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.dark-header .navbar {
    padding: 0.8rem 1rem;
}

.dark-header .navbar-brand img {
    transition: all 0.3s ease;
}

.dark-header .navbar-brand:hover img {
    transform: scale(1.05);
}

.dark-header .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    padding: 0.8rem 1.5rem !important;
    transition: all 0.3s ease;
    border-radius: 25px;
    margin: 0 0.2rem;
}

.dark-header .nav-link:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

.brand-logos {
    gap: 15px;
    margin-right: 15px;
}

.brand-logo {
    height: 35px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: brightness(1.2);
}

.brand-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.email-icon {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
}

.email-icon:hover {
    color: #fff;
    background: rgba(255,255,255,0.2);
    text-decoration: none;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .dark-header .navbar-collapse {
        background: rgba(0,0,0,0.95);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 10px;
    }
    
    .brand-logos {
        justify-content: center;
        margin: 1rem 0;
    }
    
    .brand-logo {
        height: 30px;
    }
}

/* Section Styles - Alternating Dark/Light */
.dark-section {
    background: linear-gradient(135deg, rgba(24, 36, 84, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(24, 36, 84, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.light-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Hero Section Styles */
.hero-title {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
}

.video-placeholder {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 60px 40px;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.video-placeholder h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.video-placeholder p {
    font-size: 1rem;
    opacity: 0.7;
    margin: 0;
}

/* Social Media Icons */
.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-icon.youtube {
    background: #FF0000;
}

.social-icon.facebook {
    background: #1877F2;
}

.social-icon.threads {
    background: #000;
}

.social-icon.tiktok {
    background: #000;
}

.social-icon.xiaohongshu {
    background: #FF2442;
}

.social-link {
    text-decoration: none;
    color: #333;
    font-size: 12px;
    display: block;
}

.social-link:hover {
    color: #667eea;
    text-decoration: none;
}

/* Hero Section */
.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* News Cards */
.news-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.news-card .card-img-top {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* Artist Cards */
.artist-card {
    padding: 2rem 1rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.artist-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.artist-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.artist-category {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.artist-social .social-link {
    margin: 0 5px;
    color: #667eea;
    font-size: 18px;
}

.artist-social .social-link:hover {
    color: #764ba2;
}

/* Social Media Posts */
.social-post {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.post-overlay, .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-post:hover .post-overlay,
.social-post:hover .video-overlay {
    opacity: 1;
}

.post-info, .video-info {
    color: white;
}

.platform {
    font-size: 12px;
    background: rgba(255,255,255,0.2);
    padding: 3px 8px;
    border-radius: 15px;
    margin-bottom: 5px;
    display: inline-block;
}

.post-caption, .video-title {
    font-size: 14px;
    margin: 0;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    color: #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Section Titles */
.section-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 500;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-outline-light {
    border: 2px solid white;
    border-radius: 25px;
    padding: 10px 28px;
    font-weight: 500;
}

.btn-outline-primary {
    border: 2px solid #667eea;
    color: #667eea;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
}

.btn-outline-primary:hover {
    background: #667eea;
    border-color: #667eea;
}

/* Footer Styles */
.footer-area {
    background: #2c2c2c !important;
    color: white;
}

.footer-area h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    font-size: 14px;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #667eea;
    text-decoration: none;
}

.footer-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
    transform: translateY(-2px);
    color: #667eea;
}

.contact-info {
    font-size: 14px;
}

.contact-item {
    color: #ccc;
    display: flex;
    align-items: flex-start;
}

.contact-item i {
    margin-top: 2px;
    color: #667eea;
}

.contact-item strong {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #444 !important;
    padding-top: 30px !important;
    margin-top: 40px !important;
}

.footer-text {
    color: #ccc;
    font-size: 14px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #667eea;
    text-decoration: none;
}

.footer-brand-logo {
    height: 30px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: brightness(1.2);
    margin: 0 5px;
}

.footer-brand-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-social .social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social .social-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social .social-link:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .artist-image img {
        width: 120px;
        height: 120px;
    }
    
    .footer-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    .footer-link {
        margin-right: 15px !important;
    }
    
    .single-footer-widget {
        margin-bottom: 30px;
    }
}