/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Description: Child theme for Astra
Author: Your Name
Author URI: https://yourwebsite.com
Template: astra
Version: 1.0.0
*/

/* Custom styles below */

body {
    background-color: #0A0A0A;
    color: #ffffff;
}

/* Responsive Cleanup */
@media (max-width: 768px) {
    .dj-wrapper {
        flex-direction: column !important;
        display: flex !important;
    }
    .dj-main, .dj-sidebar {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .dj-sidebar {
        order: 2 !important;
        margin-top: 30px !important;
    }
    .dj-main {
        order: 1 !important;
    }
    form, .wpforms-container {
        width: 100% !important;
    }
    .queue-item, .song-request-item {
        flex-wrap: wrap !important;
    }
    .dj-button, .btn, button {
        margin-bottom: 10px !important;
        display: block !important;
        text-align: center !important;
    }
    iframe {
        max-width: 100% !important;
    }
}

/* PREMIUM SINGLE DJ PAGE */
.dj-page {
    background: #0A0A0A;
    color: #ffffff;
}

.dj-hero {
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    overflow: hidden;
}

.dj-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.9) 100%);
    z-index: 1;
}

.dj-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 30px;
}

.dj-badge {
    background: linear-gradient(45deg, #a366ff, #ff66b3);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}

.dj-hero-content h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    line-height: 0.9;
    letter-spacing: -3px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.dj-meta-pills {
    display: flex;
    gap: 15px;
}

.dj-meta-pills .pill {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.dj-wrapper {
    max-width: 1200px;
    margin: -50px auto 0;
    display: flex;
    gap: 40px;
    padding: 0 30px 80px;
    position: relative;
    z-index: 3;
}

.dj-main {
    flex: 1;
}

.dj-sidebar {
    width: 350px;
}

.premium-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    backdrop-filter: blur(5px);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 0;
    width: 40px; height: 4px;
    background: #a366ff;
    border-radius: 2px;
}

.dj-glass-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    position: sticky;
    top: 100px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.profile-img-wrapper img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #a366ff;
    margin-bottom: 25px;
    box-shadow: 0 0 30px rgba(163, 102, 255, 0.4);
}

.btn-premium-glow {
    display: block;
    background: linear-gradient(45deg, #a366ff, #ff66b3);
    color: white !important;
    padding: 18px 30px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(163, 102, 255, 0.3);
}

.btn-premium-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(163, 102, 255, 0.5);
}

/* EVENT CARDS */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.event-card-premium {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.event-card-premium:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-5px);
    border-color: rgba(163, 102, 255, 0.3);
}

.event-media {
    height: 180px;
    position: relative;
}

.event-media img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.date-badge {
    position: absolute;
    top: 15px; left: 15px;
    background: white;
    color: black;
    padding: 8px 12px;
    border-radius: 12px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.date-badge .day { font-size: 1.2rem; font-weight: 900; display: block; }
.date-badge .month { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; }

.event-info { padding: 20px; }
.event-info h3 { font-size: 1.2rem; margin: 0 0 10px 0; color: #fff; }
.event-info .venue { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; }

.view-event-btn {
    font-size: 0.85rem;
    font-weight: 700;
    color: #a366ff;
    text-decoration: none;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .dj-wrapper { flex-direction: column; }
    .dj-sidebar { width: 100%; }
    .dj-glass-card { position: static; }
}



