/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */


.container{
	max-width: 1440px !important;
	margin: 0 auto !important;
	padding: 0 20px;
}

@media (min-width: 576px) {
    .container{
        max-width:540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width:720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width:960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width:1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width:1280px;
    }
}


@media only screen and (max-width: 991px){
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}



.icon-bx:hover {
    transform: translateY(-5px);
}



/* ===== EVENT LIST CONTAINER ===== */
/* ===== FILTER WRAPPER ===== */
.fara-filter-bar {
    display: flex;
    justify-content: flex-start; /* LEFT aligned */
    align-items: center;
    gap: 12px;
    margin: 20px 0 30px;
    flex-wrap: wrap;
}

/* ===== DROPDOWNS ===== */
.fara-filter-bar select {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    cursor: pointer;
    width: 220px;
    max-width: 100%;
    background: #fff;
}

/* ===== BUTTON ===== */
#fara-filter-btn {
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    background: #204287;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

#fara-filter-btn:hover {
    background: #f39b37;
}

/* ===== EVENTS WRAPPER ===== */
#fara-events-wrapper {
    width: 100%;
    display: block;
    min-height: 200px; /* prevents layout jump */
}

/* ===== LOADING ===== */
.fara-loading {
    padding: 20px 0;
    font-size: 14px;
    color: #666;
}

/* ===== GRID ===== */
.fara-events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ===== CARD ===== */
.fara-event-card {
    background: #fff;
}

/* ===== IMAGE ===== */
.fara-event-img img {
    width: 100%;
    border-radius: 10px;
}

/* ===== META ===== */
.fara-event-meta-wrap {
    position: relative;
    margin-top: 10px;
}

.fara-event-meta {
    font-size: 13px;
    color: #87C8FF;
}

/* ===== TYPE ===== */
.fara-event-type {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 6px;
}

.fara-event-type.free {
    background: #e6f7ee;
    color: #1a7f4b;
}

.fara-event-type.paid {
    background: #fff4e6;
    color: #d9821e;
}

/* ===== LOCATION ===== */
.fara-event-location {
    font-size: 13px;
    color: #666;
    margin-top: 6px;
}

/* ===== TITLE ===== */
.fara-event-title {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
    color: #192F5D;
}

/* ===== READ MORE ===== */
.fara-read-more {
    font-size: 14px;
    color: #F39B37;
    text-decoration: none;
}

.fara-read-more:hover {
    text-decoration: underline;
}

/* ===== NO EVENTS (FIXED) ===== */
.fara-no-events-wrap {
    width: 100%;
    display: block;
}

.fara-no-events {
    width: 100%;
    text-align: left;
    padding: 20px 0;
    color: #666;
    font-size: 15px;
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
    .fara-events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {

    .fara-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fara-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .fara-filter-bar select,
    #fara-filter-btn {
        width: 100%;
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
    .fara-events-grid {
        grid-template-columns: 1fr;
    }
}





/* ===============================
   BLOG BANNER
================================= */
.blog-banner {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.blog-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.blog-banner-overlay {
    position: absolute;
    inset: 0;
    background: #143577d6;
    z-index: 2;
}

.blog-banner .container {
    position: relative;
    z-index: 3;
}

.blog-banner-title {
    color: #ffffff !important;
    font-size: 3.2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    text-align: center;
}

/* ===============================
   BLOG LAYOUT FIX
================================= */
.blog-details-sec .row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* LEFT CONTENT */
.blog-details-sec .col-lg-8 {
    flex: 0 0 66.666%;
    max-width: 66.666%;
    padding-right: 30px; /* spacing added */
}

/* RIGHT SIDEBAR */
.blog-details-sec .col-lg-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding-left: 30px; /* spacing added */
}

/* ===============================
   BLOG CONTENT
================================= */
.blog-details-sec {
    padding-top: 50px;
    padding-bottom: 50px;
}

.blog-details-sec h1.blog_detail_title,
.blog-details-sec h1.blog-detail_title {
    font-size: 30px;
    margin-top: 35px;
}

.blog-details-sec .post-content p {
    font-size: 20px;
    line-height: 28px;
}

/* IMAGE */
.news-detail_image {
    height: 500px;
    overflow: hidden;
}

.news-detail_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===============================
   SIDEBAR
================================= */
.sidebar-widget {
    margin-top: 0;
}

/* Sidebar title */
.sidebar-widget .sidebar-title {
    font-size: 1.75rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: #000;
}

/* Reset list */
.sidebar-widget.post-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Post row */
.sidebar-widget.post-widget .post-link {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
    text-decoration: none;
}

/* Thumbnail */
.sidebar-widget.post-widget .post .thumb {
    flex: 0 0 110px;
}

.sidebar-widget.post-widget .post .thumb img {
    width: 110px;
    height: 75px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}

/* Text */
.sidebar-widget.post-widget .post .post-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Title */
.sidebar-widget.post-widget .post .post-title {
    font-weight: 600;
    font-size: 16px;
    color: #000;
    line-height: 1.4;
    margin-bottom: 5px;
}

/* Date (NEW) */
.sidebar-widget.post-widget .post .post-date {
    font-size: 13px;
    color: #888;
    margin-bottom: 5px;
}

/* Excerpt (NEW) */
.sidebar-widget.post-widget .post .post-excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

/* Hover */
.sidebar-widget.post-widget .post-link:hover .post-title {
    color: #0066cc;
}

/* ===============================
   RESPONSIVE
================================= */

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

    .blog-banner {
        height: 300px;
    }

    .blog-banner-title {
        font-size: 2.4rem;
    }

    .blog-details-sec .col-lg-8,
    .blog-details-sec .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .blog-details-sec .col-lg-8 {
        padding-right: 0;
    }

    .blog-details-sec .col-lg-4 {
        padding-left: 0;
        margin-top: 40px;
    }

    .news-detail_image {
        height: 380px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .blog-banner {
        height: 280px;
    }

    .blog-banner-title {
        font-size: 2rem;
        padding: 0 15px;
    }

    .sidebar-widget.post-widget .post .thumb {
        flex: 0 0 85px;
    }

    .sidebar-widget.post-widget .post .thumb img {
        width: 85px;
        height: 60px;
    }

    .sidebar-widget.post-widget .post .post-title {
        font-size: 15px;
    }

    .sidebar-widget.post-widget .post .post-excerpt {
        display: none; /* cleaner mobile */
    }
}

/* Small mobile */
@media (max-width: 480px) {

    .news-detail_image {
        height: 250px;
    }

    .sidebar-widget.post-widget .post-link {
        gap: 10px;
    }

    .sidebar-widget.post-widget .post .thumb {
        flex: 0 0 70px;
    }

    .sidebar-widget.post-widget .post .thumb img {
        width: 70px;
        height: 45px;
    }

    .sidebar-widget.post-widget .post .post-title {
        font-size: 14px;
    }
}



/* Checkbox accent color */
.cntct-form input[type="checkbox"] {
    accent-color: #364E7E;
}




/* WRAPPER */
.event-wrapper {
    background: #f5f7fb;
    padding: 40px 20px;
}

/* LAYOUT */
.event-container {
    max-width: 1440px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* TITLE */
.event-title {
    font-size: 28px;
    color: #192F5D;
    margin-bottom: 20px;
}

/* 🔷 TOP CARD */
.event-top-card {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    align-items: center;
}

/* IMAGE */
.event-thumb {
    width: 160px;
    flex-shrink: 0;
}

.event-thumb img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

/* INFO GRID */
.event-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 15px;
    width: 100%;
    align-items: center;
}

/* LABEL */
.info-item {
    display: flex;
    flex-direction: column;
}

.info-item .label {
    font-size: 12px;
    color: #999;
    margin-bottom: 3px;
}

.info-item .value {
    font-size: 14px;
    font-weight: 600;
    color: #192F5D;
}

/* BADGE */
.info-badge {
    text-align: right;
}

.event-badge {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

/* FREE */
.event-badge.free {
    background: #e6f7ee;
    color: #1a7f4b;
}

/* PAID */
.event-badge.paid {
    background: #fff4e6;
    color: #d9821e;
}

/* 🔷 SEATS BAR */
.event-seats-bar {
    margin-top: 15px;
    background: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.event-seats-bar .remaining {
    font-weight: 600;
    color: #1a7f4b;
}

.event-seats-bar .remaining.low {
    color: #F39B37;
}

.event-seats-bar .remaining.full {
    color: #e74c3c; /* red */
    font-weight: 600;
}

/* CONTENT */
.event-content {
    margin-top: 60px;
    line-height: 1.7;
}

/* MAP */
.event-map {
    margin-top: 20px;
}

.event-map iframe {
    width: 100%;
    height: 280px;
    border-radius: 10px;
    border: 0;
}

/* RIGHT CARD */
.event-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

/* FORM */
.event-form input,
.event-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd !important;
    border-radius: 6px;
    margin-bottom: 12px;
}

/* BUTTON */
.event-form button {
    width: 100%;
    background: #F39B37;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.event-form button:hover {
    background: #d9821e;
}

/* TOTAL */
.total-box {
    background: #f5f5f5;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-weight: 600;
}

/* MESSAGE */
.form-msg {
    margin-top: 10px;
    font-size: 14px;
    padding: 10px;
    border-radius: 6px;
}

.form-msg.error {
    background: #ffe5e5;
    color: #c0392b;
}

/* FULL */
.event-full {
    color: #e74c3c;
    font-weight: bold;
    text-align: center;
}

/* 🔷 RESPONSIVE */
@media (max-width: 1024px) {
    .event-container {
        grid-template-columns: 1fr;
    }

    .event-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .event-top-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-thumb {
        width: 100%;
    }

    .event-thumb img {
        height: 180px;
    }

    .event-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .info-badge {
        grid-column: span 2;
        text-align: left;
        margin-top: 5px;
    }
}

@media (max-width: 480px) {
    .event-info-grid {
        grid-template-columns: 1fr;
    }

    .info-badge {
        text-align: left;
    }
}



/* Charitable */
/* ===== RECEIPT PAGE WRAPPER ===== */
.page-content {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* ===== TITLE ===== */
.page-header .entry-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #192F5D;
}

/* ===== SUMMARY (TOP INFO) ===== */
.donation-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 12px;
    column-gap: 20px;
    margin-bottom: 30px;
}

.donation-summary dt {
    font-weight: 600;
    color: #555;
}

.donation-summary dd {
    margin: 0;
    color: #192F5D;
    font-weight: 500;
}

/* ===== DIVIDER ===== */
.charitable-header {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #192F5D;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}

/* ===== TABLE ===== */
.charitable-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    overflow: hidden;
    table-layout: fixed; /* 🔥 important */
}

/* HEADER */
.charitable-table thead {
    background: #f5f7fb;
}

.charitable-table th {
    padding: 16px 20px; /* ✅ equal padding */
    font-size: 14px;
    color: #555;
    font-weight: 600;
}

/* BODY */
.charitable-table td {
    padding: 16px 20px; /* ✅ same as th */
    border-top: 1px solid #eee;
    font-size: 15px;
    color: #333;
}

/* TOTAL ROW */
.charitable-table tfoot td {
    font-weight: 600;
    background: #fafafa;
}

/* ===== PERFECT COLUMN ALIGNMENT ===== */

/* Left column */
.charitable-table th:first-child,
.charitable-table td:first-child {
    width: 70%;
    text-align: left;
    padding-left: 24px; /* ✅ push inside slightly */
}

/* Right column */
.charitable-table th:last-child,
.charitable-table td:last-child {
    width: 30%;
    text-align: right;
    padding-right: 24px; /* ✅ consistent right edge */
}

/* 🔥 FORCE INNER ALIGNMENT (KEY FIX) */
.charitable-table td,
.charitable-table th {
    vertical-align: middle;
    box-sizing: border-box;
}

/* Fix weird Charitable spacing issues */
.charitable-table td * {
    margin: 0;
    padding: 0;
}

/* ===== HIGHLIGHT AMOUNT ===== */
.donation-amount,
.charitable-table tfoot td:last-child {
    color: #F39B37;
    font-weight: 600;
}


/* Charitable dination form */
#charitable-donation-form-modal-642 {
	max-width: 600px !important;
	height: 80%;
}



/* Fara Season Pass */

/* GRID */
.fara-pass-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CARD */
.fara-pass-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    width: 260px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.fara-pass-card h3 {
    font-size: 18px;
    color: #192F5D;
}

.fara-pass-price {
    font-size: 32px;
    color: #F39B37;
    margin: 15px 0;
}

/* BUTTON */
.fara-buy-btn {
    background: #204287;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
}

.fara-buy-btn:hover {
    background: #f39b37;
}

/* MODAL */
/* ===== MODAL OVERLAY ===== */
#fara-pass-modal {
    display: none; /* hidden by default */

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.6);
    z-index: 9999;

    /* CENTER FIX */
    display: none;
    align-items: center;
    justify-content: center;
}

/* ===== SHOW MODAL ===== */
#fara-pass-modal.active {
    display: flex; /* IMPORTANT */
}

/* ===== MODAL BOX ===== */
.fara-modal-inner {
    background: #fff;
    padding: 30px;
    border-radius: 12px;

    width: 90%;
    max-width: 400px;

    position: relative;
}

/* ===== CLOSE BUTTON ===== */
.fara-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* ===== INPUTS ===== */
.fara-modal-inner input {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* ===== BUTTON ===== */
.fara-modal-inner button {
    width: 100%;
    padding: 12px;
    background: #204287;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.fara-modal-inner button:hover {
    background: #f39b37;
}

.fara-selected-price {
    margin-bottom: 15px;
    font-size: 15px;
    color: #333;
}

/* ===== PRICE ===== */
.fara-selected-price strong {
    color: #204287;
    font-size: 18px;
}


/* Donation button hide */
.campaign-donation {
	display: none;
}