/* Single Event Page Styles */

.single-event {
    background: #fff;
}

/* Event Header */
.event-header {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 24px;
}

.event-title-single {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Event Meta Single */
.event-meta-single {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.event-meta-item-single {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #666;
}

.event-meta-item-single i {
    color: #DC2626;
    font-size: 18px;
    width: 20px;
}

/* Featured Image */
.event-featured-image {
    overflow: hidden;
    border-radius: 12px;
}

.event-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Event Content */
.event-content-single {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.event-content-single p {
    margin-bottom: 16px;
}

.event-content-single h2,
.event-content-single h3,
.event-content-single h4 {
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.event-content-single ul,
.event-content-single ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.event-content-single li {
    margin-bottom: 8px;
}

/* Event Actions Single */
.event-actions-single {
    padding: 32px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.event-actions-single .btn {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
}

.event-actions-single .btn-danger {
    background-color: #DC2626;
    border-color: #DC2626;
}

.event-actions-single .btn-danger:hover {
    background-color: #B91C1C;
    border-color: #B91C1C;
}

/* Social Share Buttons */
.event-social-share {
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.share-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.share-facebook {
    background-color: #1877f2;
    color: #fff;
}

.share-facebook:hover {
    background-color: #0d65d9;
    color: #fff;
    transform: translateY(-2px);
}

.share-twitter {
    background-color: #1da1f2;
    color: #fff;
}

.share-twitter:hover {
    background-color: #0c8bd9;
    color: #fff;
    transform: translateY(-2px);
}

.share-linkedin {
    background-color: #0077b5;
    color: #fff;
}

.share-linkedin:hover {
    background-color: #006399;
    color: #fff;
    transform: translateY(-2px);
}

.share-email {
    background-color: #6c757d;
    color: #fff;
}

.share-email:hover {
    background-color: #5a6268;
    color: #fff;
    transform: translateY(-2px);
}

.share-copy {
    background-color: #DC2626;
    color: #fff;
}

.share-copy:hover {
    background-color: #B91C1C;
    color: #fff;
    transform: translateY(-2px);
}

.share-copy.copied {
    background-color: #10b981;
}

/* Event Navigation */
.event-navigation {
    padding-top: 24px;
    border-top: 2px solid #f0f0f0;
}

.event-navigation .btn {
    padding: 12px 24px;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .event-title-single {
        font-size: 28px;
    }
    
    .event-meta-single {
        flex-direction: column;
        gap: 12px;
    }
    
    .event-actions-single {
        padding: 24px 16px;
    }
    
    .event-actions-single .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .event-social-share {
        padding: 20px;
    }
    
    .share-buttons {
        justify-content: center;
    }
}
