/* ========================================
   Event Detail Styles
   ======================================== */
.single-event {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 40px;
}

.event-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--color-gray-dark);
}

.meta-item i {
    color: var(--color-secondary);
    font-size: 18px;
}

.event-image-large {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.event-image-large img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.event-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-gray-dark);
    margin-bottom: 40px;
}

.event-description p {
    margin-bottom: 20px;
}

.event-map {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.event-registration-box {
    background: var(--color-gray-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid var(--color-primary);
}

.registration-closed {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #d41317;
    margin-bottom: 15px;
    font-size: 18px;
}

.event-contact h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.back-link {
    text-align: center;
    margin-top: 50px;
}
