/* --- Events Page Styles --- */

.events-hero {
    position: relative;
    height: 380px;
    background-color: #2B448C;
    /* Default Blue from flyer */
    background-image: url('image/event/Dr Caldwell.jpg');
    background-size: cover;
    background-position: center 20%;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
}

.events-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(43, 68, 140, 0.92) 0%, rgba(243, 111, 54, 0.75) 100%);
    z-index: 1;
}

.events-hero .container {
    position: relative;
    z-index: 2;
}

.events-hero h1 {
    font-size: 45px;
    color: var(--white);
    margin-top: 1rem;
}

.events-breadcrumb {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.events-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.events-breadcrumb span {
    display: flex;
    align-items: center;
}

.events-breadcrumb i {
    width: 14px;
    height: 14px;
}

/* --- Event Rows (Spaced Staggered Layout) --- */
.event-section {
    padding: 5rem 0;
    overflow: hidden;
    background-color: var(--white);
}

.event-section.bg-light {
    background-color: var(--bg-light);
}

.event-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.event-row.reverse {
    flex-direction: row-reverse;
}

.event-content {
    flex: 1.1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-content h3 {
    font-size: 28px;
    color: #2B448C;
    /* Blue */
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.event-content p {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: left;
}

.event-image-content {
    flex: 0.9;
    position: relative;
    min-height: auto;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.event-image-content:hover {
    transform: translateY(-6px);
}

.event-image-content img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.3s ease;
}

.event-image-content:hover img {
    transform: scale(1.02);
    filter: brightness(1.03);
}

/* Event specifics styling */
.event-details-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.event-details-list li {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-details-list li i {
    color: #F36F36;
    /* Orange */
}

.btn-orange {
    background-color: #ffc107;
    color: #1954ac;
    border: none;
}

.btn-orange:hover {
    background-color: #1954ac;
    color: var(--white);
}

/* --- Support Split (Adopted from About Page) --- */
.about-support-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 380px;
}

.about-support-img {
    background-image: url('image/About Us/Support Our Mission.jpg');
    background-size: cover;
    background-position: center;
}

.about-support-content {
    background: #14bed9;
    /* Changed to flyer blue */
    padding: 4rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-support-content h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.about-support-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 500px;
}

/* --- Responsive --- */
@media (max-width: 991px) {

    .event-row,
    .event-row.reverse {
        flex-direction: column;
        gap: 3rem;
    }

    .event-image-content {
        width: 100%;
    }

    .about-support-split {
        grid-template-columns: 1fr;
    }

    .about-support-img {
        height: 300px;
    }

    .about-support-content {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 767px) {
    .events-hero h1 {
        font-size: 27px !important;
    }

    .event-section {
        padding: 4rem 0;
    }

    .event-content h3 {
        font-size: 22px;
    }

    .event-content p {
        font-size: 14px !important;
    }
}