/* ========================= */
/* 🌟 EVENT CAROUSEL STYLING */
/* ========================= */

:root {
    --primary-color: #000000; /* Dark Gray */
    --accent-color:#E02B20; /* Red */
    --secondary-text-color: #6b6b6b; /* Light Gray */
    --background-color: transparent; /* Ensure NO background */
    --font-secondary: 'IBM Plex Mono', monospace;
    --font-primary: 'Eczar', Georgia, "Times New Roman", serif;
}

/* ======= CONTAINER STYLING ======= */
/* DEBUG: TEMP ONLY */
.carousel-wrapper,
.carousel-wrapper > * {
/*  outline: 1px solid red;*/
    overflow: visible !important;
}


.carousel-wrapper {
    padding-top: 50px;
    position: relative;
    width: 100%;
    max-width: 1200px; /* Match the content width above */
    margin: 0 auto;
    overflow: visible !important; /* already set correctly */
}

/* Main Event Carousel */
.events-carousel {
    width: 100%;
    position: relative;
    overflow: hidden; /* Prevent content overflow */
}

/* Slick slider wrapper */
.events-carousel .slick-list {
    overflow: hidden !important; /* Ensure no content overflow */
    padding: 0 !important;
}

.events-carousel .slick-track {
    display: flex !important;
    align-items: flex-start; /* Change from center to flex-start for top alignment */
}

.events-carousel .slick-slide {
    padding: 0 10px; /* Minimal padding between slides */
    box-sizing: border-box;
    height: auto; /* Allow flexible height */
    vertical-align: top; /* Ensure top alignment */
}

/* ======= EVENT ITEM STYLING ======= */

/* Individual Event Card */
.event {
    min-width: 350px; /* Fixed width for 3 columns */
    text-align: left;
    border: none; /* Remove borders */
    background: var(--background-color);
    transition: transform 0.3s ease-in-out;
    height: auto; /* Allow flexible height */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Top align content within each event */
}

/* SVG Icons */
.event-svg svg {
    position: absolute;
    left: 0;
    top: 10px;
    width: 40px;
    height: auto;
}

/* Event Date */
.event-date {
    font-size: 20px;
    font-weight: 300;
    font-family: var(--font-secondary);
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 5px;
}

/* Event Type */
.event-type {
    font-size: 17px;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 5px;
    transform: none;
}

/* Event Title */
.event-title {
    font-size: 32px;
    font-weight: 500;
    font-family: var(--font-primary);
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Event Location */
.event-place {
    font-size: 17px;
    font-weight: 300;
    font-family: var(--font-secondary);
    color: var(--accent-color);
    line-height: 1.5;
    margin-top: 10px;
}

/* Past Events Button */
.slider-all-events {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.slider-events-link.past-events {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--accent-color);
    padding: 10px 20px;
    transform: none;
}

.slider-events-link.past-events:hover {
    text-decoration: underline;
}

/* ======= NAVIGATION ARROWS ======= */


.slick-prev,
.slick-next {
    position: absolute;
    top: 30%;
    z-index: 1000;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: var(--primary-color) !important;  /* ✅ Force color */
    font-size: 72px;
    font-weight: 300;
    cursor: pointer;
    display: flex !important;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

/* Force arrow color even on hover/focus/active */
.slick-prev:hover,
.slick-next:hover,
.slick-prev:focus,
.slick-next:focus,
.slick-prev:active,
.slick-next:active {
    color: var(--primary-color) !important;  /* ✅ Force again */
}

.slick-prev:hover,
.slick-next:hover{    
    color: var(--accent-color) !important; 
}

.slick-prev {
    left: -70px;
}

.slick-next {
    right: -50px;
}

/* Remove Slick's default arrow ::before */
.slick-prev::before,
.slick-next::before {
    content: none;
}