/* ============================================
   LENSPO EVENTS STYLING
   ============================================ */

/* Breadcrumb Navigation */
.breadcrumb-nav {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
}

.breadcrumb-nav a {
    color: #2B8B47;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.breadcrumb-nav span {
    color: #333;
    font-weight: 600;
}

/* Event Header Banner */
.event-header-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f8ff 100%);
    border-left: 4px solid #2B8B47;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 30px;
}

.event-header-banner strong {
    color: #333;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.event-header-banner .badge {
    margin-right: 8px;
    font-size: 12px;
}

.event-header-banner a {
    color: #2B8B47;
    text-decoration: none;
    font-weight: 600;
}

.event-header-banner a:hover {
    text-decoration: underline;
}

/* Event Meta Info */
.event-meta-info {
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 30px;
}

.event-meta-info .row > div {
    padding-bottom: 10px;
}

.event-meta-info strong {
    color: #2B8B47;
    margin-right: 8px;
}

/* Event Short Description */
.event-short-desc {
    background: #f0f8ff;
    border-left: 4px solid #2B8B47;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 30px;
}

.event-short-desc h4 {
    color: #2B8B47;
    margin-bottom: 15px;
    margin-top: 0;
    font-weight: 600;
    font-size: 18px;
}

.event-short-desc p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

/* Event Content */
.event-content {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.event-content h2,
.event-content h3,
.event-content h4 {
    color: #222;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.event-content h2 {
    font-size: 28px;
}

.event-content h3 {
    font-size: 22px;
}

.event-content p {
    margin-bottom: 15px;
}

.event-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.event-content ul,
.event-content ol {
    margin-bottom: 20px;
    margin-left: 20px;
}

.event-content li {
    margin-bottom: 8px;
}

/* YouTube Embed */
.youtube-embed {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.youtube-embed iframe {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Event Footer */
.event-footer {
    border-top: 2px solid #eee;
    padding-top: 30px;
    margin-top: 50px;
}

.event-footer .btn {
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.event-footer .btn-secondary {
    background-color: #6c757d;
    color: white;
}

.event-footer .btn-secondary:hover {
    background-color: #5a6268;
    transform: translateX(-3px);
}

.event-footer .btn-primary {
    background-color: #2B8B47;
    color: white;
}

.event-footer .btn-primary:hover {
    background-color: #1f6633;
}

/* Single Event Hero */
.single-event-hero {
    position: relative;
    background: #222;
    color: white;
    overflow: hidden;
}

.single-event-hero .topsingleimg {
    position: relative;
}

.single-event-hero .topsingleimg img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0.85;
}

.single-event-hero .hero-content {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    padding: 0 30px;
    z-index: 10;
}

.single-event-hero .hero-content .badge {
    display: inline-block;
    margin-bottom: 15px;
}

.single-event-hero .event-date-badge {
    position: absolute;
    right: 30px;
    bottom: 30px;
    background: white;
    color: #2B8B47;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 700;
}

.single-event-hero .event-location {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 16px;
}

.single-event-hero .display-3 {
    color: white;
    font-size: 42px;
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

/* Responsive */
@media (max-width: 768px) {
    .event-header-banner {
        padding: 15px;
    }

    .event-header-banner .row > div {
        margin-bottom: 15px;
    }

    .event-short-desc {
        padding: 15px;
    }

    .single-event-hero .hero-content {
        padding: 0 15px;
    }

    .single-event-hero .display-3 {
        font-size: 28px;
    }

    .event-content h2 {
        font-size: 24px;
    }

    .event-content h3 {
        font-size: 20px;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}
