@charset "UTF-8";
/***!  /templates/jl_simpli_lite/css/event-article.css?d0b218  !***/

/* --- CORE LAYOUT --- */
.event-page-container {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    max-width: 100%;
    margin: 0 auto 50px auto;
}

/* 1. Dark Top Bar (Countdown) */
.event-top-bar {
    background-color: #1a1a1a;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allows stacking on tiny screens */
    gap: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.etb-left {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.etb-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    color: #bbb;
    font-weight: 600;
}

.etb-timer {
    font-family: monospace; /* Keeps numbers aligned */
    font-weight: 700;
    color: #ffcc00; /* Yellow text for visibility */
    font-size: 1.2rem;
}

.btn-top-ticket {
    background-color: #d32f2f;
    color: white;
    padding: 6px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-top-ticket:hover {
    background-color: #b71c1c;
    color: white;
    text-decoration: none;
}

/* 2. Content Structure */
.event-title {
    font-size: 2.4rem;
    margin-top: 0;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #222;
}

.event-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.event-main-col {
    flex: 2;
    min-width: 300px;
}

.event-sidebar-col {
    flex: 1;
    min-width: 300px;
}

/* 3. Image Styling */
.event-image-container {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    background: #f4f4f4;
    border: 1px solid #eee;
    max-width: 100%;
}

.event-image-container img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* 4. Text & Buttons */
.event-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.btn-ticket {
    display: inline-block;
    background-color: #d32f2f; /* Red */
    color: #fff;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-ticket:hover {
    background-color: #b71c1c;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
}

.btn-block {
    display: block;
    width: 100%;
    padding: 12px 10px;
    font-size: 1.1rem;
    box-sizing: border-box;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.3rem;
    display: inline-block;
}

.bottom-cta {
    margin: 30px 0;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.sidebar-cta {
    margin-top: 20px;
}

/* 5. Video Section (Bottom) */
.event-video-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.video-heading {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    border: none;
}

/* 6. Sidebar Details */
.event-card {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card-header {
    background: #f8f9fa;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 1px solid #e1e1e1;
    color: #333;
}

.card-body {
    padding: 20px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-row .icon {
    width: 25px;
    color: #d32f2f;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.info-content {
    flex-grow: 1;
}

.info-content strong {
    display: block;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 2px;
}

.info-content span {
    font-size: 1.1rem;
    color: #222;
    font-weight: 500;
}

.address-text {
    display: block;
    color: #666;
    margin-top: 4px;
    font-size: 0.95rem;
}

/* 7. Tags */
.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.event-tag-pill {
    background: #e9ecef;
    color: #495057;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s;
}

.event-tag-pill:hover {
    background: #dee2e6;
    color: #212529;
    text-decoration: none;
}

/* 8. Map */
.map-wrapper iframe {
    width: 100%;
    min-height: 250px;
    border: none;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .event-grid {
        flex-direction: column;
    }
    
    .event-sidebar-col {
        order: 2;
        margin-top: 20px;
    }
    
    .event-title {
        font-size: 1.8rem;
    }

    /* Stack the top bar on mobile */
    .event-top-bar {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .etb-left {
        flex-direction: column;
        gap: 5px;
    }
    
    .btn-top-ticket {
        display: block;
        width: 100%;
        margin-top: 5px;
    }
}
