/* Events page — extracted from Events.aspx inline <style>. Scoped under .page-events. */

/* Event Categories */
.page-events .event-categories-section {
    padding: 70px 0;
    background: #f9f9f9;
}

.page-events .event-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 6px;
    padding: 28px 14px;
    height: 100%;
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.page-events .event-cat-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    text-decoration: none;
}

    .page-events .event-cat-item i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: #ffffff;
        border: 1px solid var(--main-color);
        font-size: 22px;
        color: var(--main-color);
    }

.page-events .event-cat-item span {
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-events .event-cat-item:hover span {
    color: var(--main-color);
}

/* Individual Event Sections */
.page-events .evt-section {
    padding: 70px 0;
}

.page-events .evt-section--alt {
    background: #f9f9f9;
}

.page-events .evt-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.page-events .evt-image {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

.page-events .evt-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-events .evt-section .btn-default {
    font-size: 13px;
    padding: 12px 28px;
}

/* Why Events on Board */
.page-events .events-why-section {
    padding: 80px 0;
}

.events-why-text {
    font-size: 17px;
    line-height: 1.8;
}

.page-events .events-why-image {
    border-radius: 8px;
    overflow: hidden;
}

.page-events .events-why-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* What's Included / Optional Extras */
.page-events .evt-inclusions-section {
    padding: 70px 0;
}

.page-events .evt-incl-block {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 32px 28px;
    height: 100%;
}

.page-events .evt-incl-block--extras {
    background: #f5f1eb;
}

.page-events .evt-incl-block h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
}

.page-events .evt-incl-block h3 i {
    color: var(--main-color);
    margin-right: 8px;
}

.page-events .evt-incl-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-events .evt-incl-block ul li {
    font-size: 15px;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-events .evt-incl-block ul li:last-child {
    border-bottom: none;
}

.page-events .evt-incl-block ul li i {
    font-size: 12px;
    color: var(--main-color);
    flex-shrink: 0;
}

/* Why Choose Santosails for Events */
.page-events .evt-why-choose-section {
    padding: 70px 0;
    background: #f9f9f9;
}

.page-events .evt-wc-item {
    padding: 30px 16px;
}

.page-events .evt-wc-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.page-events .evt-wc-item:hover .evt-wc-icon {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.page-events .evt-wc-icon i {
    font-size: 32px;
    color: var(--main-color);
}

.page-events .evt-wc-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.page-events .evt-wc-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* Inquiry / CTA Section */
.page-events .evt-cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.page-events .evt-cta-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-events .evt-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-events .evt-cta-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page-events .evt-cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
}

.page-events .evt-cta-text {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.page-events .evt-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Events FAQ Section */
.page-events .evt-faq-section {
    padding: 80px 0;
}

.page-events .evt-faq-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

.page-events .evt-faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.page-events .evt-faq-item:first-child {
    border-top: 1px solid #e5e5e5;
}

.page-events .evt-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.page-events .evt-faq-question i {
    font-size: 13px;
    color: var(--main-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.page-events .evt-faq-question.active i {
    transform: rotate(180deg);
}

.page-events .evt-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.page-events .evt-faq-answer p {
    padding: 0 0 18px;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

@media (max-width: 575px) {
    .page-events .evt-cta-section {
        padding: 80px 0;
    }

    .page-events .evt-cta-buttons {
        flex-direction: column;
    }

    .page-events .evt-cta-buttons .hero-cta-outlined {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 991px) {
    .page-events .evt-wc-item {
        padding: 20px 10px;
    }
}

/* Events hero typography — mirrors Home hero */
.page-events .events-hero .hero-subtitle {
    font-size: 18px !important;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--main-color) !important;
    margin-bottom: 30px;
}

.page-events .events-hero .hero-supporting-text {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.3;
    max-width: 620px;
    margin: 0 auto 30px;
}

@media (max-width: 767px) {
    .page-events .events-hero .hero-ctas-secondary {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .page-events .events-hero .hero-cta-outlined {
        width: 100%;
        text-align: center;
    }

    .page-events .events-hero .hero-supporting-text {
        font-size: 15px;
        padding: 0 10px;
    }

    .page-events .events-hero .hero-subtitle {
        font-size: 18px;
        letter-spacing: 1px;
    }
}

/* =============================================
   Mobile hero banner — overlay text on image with gradient scrim (≤991.98px)
   ============================================= */
@media (max-width: 991.98px) {
    .page-events .sisf-banner {
        margin-top: 0 !important;
        position: relative;
        overflow: hidden;
    }
    .page-events .sisf-banner .banner-img { position: relative; }
    .page-events .sisf-banner .banner-img > div { display: none !important; }
    .page-events .sisf-banner .banner-img figure { margin: 0; }
    .page-events .sisf-banner .banner-img img {
        width: 100%;
        height: 620px;
        object-fit: cover;
        object-position: 50% 25%;
        display: block;
    }
    .page-events .sisf-banner .banner-img::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.85) 100%);
        pointer-events: none;
        z-index: 1;
    }
    .page-events .sisf-banner .sisf-page-title {
        position: absolute !important;
        inset: 0;
        width: 100%;
        height: 100%;
        padding: 24px 20px 36px;
        background: transparent;
        display: flex !important;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        z-index: 2;
    }
    .page-events .sisf-banner .sisf-page-title h1,
    .page-events .sisf-banner .sisf-page-title .sisf-m-title,
    .page-events .sisf-banner .sisf-page-title .entry-title {
        font-size: 32px !important;
        line-height: 1.2 !important;
        margin-bottom: 14px !important;
        color: #fff !important;
    }
    .page-events .sisf-banner .sisf-page-title .hero-subtitle {
        font-size: 15px !important;
        line-height: 1.4 !important;
        letter-spacing: 1px !important;
        margin-bottom: 14px !important;
    }
    .page-events .sisf-banner .sisf-page-title .hero-supporting-text {
        font-size: 14px !important;
        line-height: 1.55 !important;
        margin: 0 0 20px !important;
        padding: 0 !important;
        max-width: 100% !important;
    }
    .page-events .sisf-banner .sisf-page-title .btn-default {
        padding: 12px 24px !important;
        font-size: 14px !important;
    }
}
@media (max-width: 480px) {
    .page-events .sisf-banner .banner-img img { height: 580px; }
    .page-events .sisf-banner .sisf-page-title h1,
    .page-events .sisf-banner .sisf-page-title .sisf-m-title,
    .page-events .sisf-banner .sisf-page-title .entry-title { font-size: 28px !important; }
    .page-events .sisf-banner .sisf-page-title .hero-subtitle { font-size: 14px !important; }
    .page-events .sisf-banner .sisf-page-title .hero-supporting-text { font-size: 13.5px !important; }
}
