/* ==========================================
   RECAPS PAGE STYLES
   ========================================== */

/* ==========================================
   FILTER SECTION
   ========================================== */
.filter-section {
    background-color: #111111;
    padding: 2rem 0;
    border-bottom: 1px solid 
        rgba(192,192,192,0.1);
    position: relative;
    
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 2px solid rgba(192,192,192,0.3);
    border-radius: 25px;
    background-color: transparent;
    color: #888888;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #C0C0C0;
    border-color: #C0C0C0;
    color: #000000;
}

/* ==========================================
   RECAPS GRID
   ========================================== */
.recaps-section {
    background-color: #0A0A0A;
    padding: 4rem 0;
    min-height: 50vh;
    position: relative;
    z-index: 1;
}

/* 3 column grid */
.recaps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* No recaps message */
.no-recaps-msg {
    text-align: center;
    padding: 4rem 2rem;
    display: none;
    color: #888888;
}

.no-recaps-msg.show {
    display: block;
}

.no-recaps-msg i {
    font-size: 4rem;
    color: rgba(192,192,192,0.2);
    margin-bottom: 1rem;
    display: block;
}

.no-recaps-msg h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

/* ==========================================
   RECAP CARD
   ========================================== */
.recap-card {
    background-color: #111111;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(192,192,192,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.recap-card:hover {
    border-color: #C0C0C0;
    transform: translateY(-5px);
    box-shadow: 0 8px 40px 
        rgba(192,192,192,0.15);
}

/* Card image - same as past events */
.recap-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.recap-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recap-card:hover .recap-card-image img {
    transform: scale(1.05);
}


/* Previous and next buttons */
.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(192,192,192,0.2);
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #C0C0C0;
    color: #000000;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .recaps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .recaps-grid {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}/* ==========================================
   VIDEOS SECTION
   ========================================== */
.videos-section {
    background-color: #111111;
    padding: 5rem 0;
    position: relative;
    
}

/* Two column grid for videos */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Individual video card */
.video-card {
    background-color: #1A1A1A;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(192,192,192,0.1);
    transition: all 0.3s ease;
}

.video-card:hover {
    border-color: #C0C0C0;
    transform: translateY(-5px);
    box-shadow: 0 8px 40px 
        rgba(192,192,192,0.1);
}

/* YouTube embed container */
/* 16:9 aspect ratio */
.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video info below player */
.video-info {
    padding: 1.2rem 1.5rem;
}

.video-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: #888888;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-info i {
    color: #C0C0C0;
}

/* No videos message */
.no-videos-msg {
    text-align: center;
    padding: 4rem 2rem;
    display: none;
}

.no-videos-msg.show {
    display: block;
}

.no-videos-msg i {
    font-size: 4rem;
    color: rgba(192,192,192,0.2);
    margin-bottom: 1rem;
    display: block;
}

.no-videos-msg h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.no-videos-msg p {
    color: #888888;
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}
/* ==========================================
   LIGHTBOX
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.97);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.lightbox-container {
    position: relative;
    max-width: 900px;
    width: 90%;
    text-align: center;
}

.lightbox-container img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid rgba(192,192,192,0.2);
}

.lightbox-info {
    margin-top: 1rem;
}

.lightbox-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: 3px;
}

.lightbox-info p {
    color: #C0C0C0;
    font-size: 0.85rem;
}

.lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(192,192,192,0.2);
    border: 1px solid rgba(192,192,192,0.4);
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox-close:hover {
    background: #C0C0C0;
    color: #000000;
}


.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(192,192,192,0.2);
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #C0C0C0;
    color: #000000;
}
