/* ==========================================================================
   EPIK LEADERS - EVENT DETAILS PAGE STYLES
   ========================================================================== */

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
body {
                margin-top : -32px !important;

}
.hero-event {
    background: linear-gradient(135deg, #004862 0%, #B5252C 100%);
    position: relative;
    overflow: hidden;
}

/* ==========================================================================
   FLOATING ELEMENTS
   ========================================================================== */

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2) {
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
    }
}

/* ==========================================================================
   EVENT GALLERY
   ========================================================================== */

.event-gallery img {
    transition: transform 0.3s ease;
}

.event-gallery img:hover {
    transform: scale(1.05);
}

/* ==========================================================================
   EVENT INFO CARD
   ========================================================================== */

.event-info-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    backdrop-filter: blur(10px);
}

/* ==========================================================================
   TIMELINE STYLES
   ========================================================================== */

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 60px;
    width: 2px;
    height: calc(100% - 60px);
    background: linear-gradient(to bottom, #B5252C, #004862);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-dot {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #B5252C 0%, #004862 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
