/* Events Page Styles */

.bp-events-hero {
    background: linear-gradient(135deg, #FF6B6B 0%, #A66CFF 50%, #FF78C4 100%);
    padding: 150px 0 80px;
    text-align: center;
    color: #fff;
}
.bp-events-hero h1 { font-size: 2.8rem; margin-bottom: 10px; }
.bp-events-hero p { font-size: 1.2rem; opacity: 0.9; }

.bp-events-section-title {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #FF6B6B;
}
.bp-events-section-title.bp-past { border-color: #ccc; margin-top: 60px; }
.bp-events-section-title h2 { font-family: 'Baloo 2', cursive; font-size: 1.8rem; color: #333; }

/* Event Row Layout */
.bp-event-row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px;
    margin-bottom: 16px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.bp-event-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}
.bp-event-row.bp-event-past { opacity: 0.7; }

.bp-event-row-date {
    min-width: 70px;
    text-align: center;
    padding: 12px;
    background: linear-gradient(135deg, #FF6B6B, #A66CFF);
    border-radius: 12px;
    color: #fff;
}
.bp-event-row-day { display: block; font-size: 1.8rem; font-weight: 800; line-height: 1; }
.bp-event-row-month { display: block; font-size: 0.75rem; text-transform: uppercase; opacity: 0.9; }

.bp-event-row-visual {
    width: 120px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}
.bp-event-row-visual img { width: 100%; height: 100%; object-fit: cover; }
.bp-event-row-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    border-radius: 10px;
}

.bp-event-row-content { flex: 1; }
.bp-event-row-content h3 { margin: 0 0 6px; font-size: 1.15rem; }
.bp-event-row-content h3 a { color: #333; text-decoration: none; }
.bp-event-row-content h3 a:hover { color: #FF6B6B; }
.bp-event-row-meta { display: flex; gap: 16px; font-size: 0.85rem; color: #666; margin-bottom: 4px; flex-wrap: wrap; }
.bp-event-row-desc { font-size: 0.9rem; color: #777; margin: 4px 0 0; }

.bp-event-row-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.bp-event-badge-past {
    background: #eee;
    color: #999;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* No events */
.bp-no-events {
    text-align: center;
    padding: 80px 20px;
}
.bp-no-events-icon { font-size: 4rem; display: block; margin-bottom: 20px; }
.bp-no-events h3 { font-size: 1.5rem; margin-bottom: 10px; }
.bp-no-events p { color: #666; }

/* Responsive */
@media (max-width: 768px) {
    .bp-events-hero { padding: 120px 0 60px; }
    .bp-events-hero h1 { font-size: 2rem; }
    
    .bp-event-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .bp-event-row-date {
        flex-direction: row;
        display: flex;
        gap: 8px;
        align-items: center;
    }
    .bp-event-row-visual { width: 100%; height: 160px; }
    .bp-event-row-action {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
}

/* ============================================
   SINGLE EVENT PAGE
   ============================================ */
.bp-event-single-hero {
    padding: 140px 0 60px;
    text-align: center;
    color: #fff;
}
.bp-event-single-hero h1 {
    font-family: 'Baloo 2', cursive;
    font-size: 2.5rem;
    margin: 15px 0 10px;
}
.bp-event-single-hero-inner { max-width: 700px; margin: 0 auto; }
.bp-event-single-date { font-size: 1.1rem; opacity: 0.95; }
.bp-event-single-emoji { font-size: 4rem; margin-bottom: 5px; }
.bp-event-single-image img {
    width: 200px; height: 200px; object-fit: cover;
    border-radius: 50%; border: 4px solid rgba(255,255,255,0.3);
    margin: 0 auto; display: block;
}

.bp-event-single-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.bp-event-single-desc {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
}
.bp-event-single-desc p { margin-bottom: 16px; }

.bp-event-single-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}
.bp-event-single-card h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 1.2rem;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.bp-event-detail-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
}
.bp-event-detail-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.bp-event-detail-row strong {
    display: block;
    font-size: 0.78rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.bp-event-detail-row span { color: #333; font-weight: 500; }

.bp-event-single-action {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}
.bp-event-single-action .bp-btn { width: 100%; text-align: center; display: block; }

.bp-btn-coming-soon {
    background: #f0f0f0 !important;
    color: #888 !important;
    cursor: default;
    pointer-events: none;
    border: 2px dashed #ccc;
}

.bp-btn-disabled {
    background: #e0e0e0 !important;
    color: #999 !important;
    cursor: default;
    pointer-events: none;
}

.bp-event-single-contact {
    margin-top: 14px;
}
.bp-event-single-contact .bp-btn { width: 100%; text-align: center; display: block; }

.bp-event-single-back {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
    .bp-event-single-hero { padding: 110px 0 40px; }
    .bp-event-single-hero h1 { font-size: 1.8rem; }
    .bp-event-single-grid { grid-template-columns: 1fr; gap: 25px; }
    .bp-event-single-card { position: static; }
}
