/* ===============================
   PROMO VIDEO
=============================== */
.promo-video {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.full-width-video {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.video-fade {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 160px;
    background: linear-gradient(to bottom, rgba(0,0,0,0), #000);
}

/* ===============================
   SANTA INFO
=============================== */
.santa-logo {
    max-width: 180px;
    margin: 0 auto 2rem;
    display: block;
}

.santa-info {
    text-align: center;
    padding: 4rem 1rem;
}

.santa-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.santa-info p {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* ===============================
   ROUTES SECTION
=============================== */

.santa-routes h2 {
    text-align: center;      /* Centers the text */
    font-size: 2rem;         /* Optional: adjust size */
    margin-bottom: 2rem;     /* Adds space below the heading */
    color: rgb(255, 255, 255);          /* Optional: match your theme */
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.route-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.3s ease;
    border-radius: 16px;
}


.route-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgb(0, 0, 0);
}

.route-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.route-card:hover img {
    transform: scale(1.02);
}

.route-card h3 {
    margin: 1.4rem 0 0.3rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;

}

.route-date {
    font-size: 1rem;
    font-weight: 600;
    color: rgb(255, 255, 255);
    margin-bottom: 0.2rem;
}

.route-statics {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 159, 0, 0.96);
    margin-bottom: 0.2rem;
}

.route-time {
    font-size: 0.95rem;
    color: #078c42;
}

.route-card h3,
.route-card p {
    text-align: center;
}

/* ===============================
   PURE CSS LIGHTBOX
=============================== */
.css-lightbox {
    position: fixed;
    inset: 0;                      /* top/right/bottom/left 0 */
    background: rgba(0,0,0,0.92);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;                /* allows scroll if image is too big */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 9999;
}

/* Show lightbox */
.css-lightbox:target {
    opacity: 1;
    pointer-events: auto;
}

/* Lightbox Image */
.css-lightbox img {
    max-width: 80%;                /* leave space around image */
    max-height: 80%;
    margin: auto;                  /* centers image inside scrollable container */
    border-radius: 16px;
    box-shadow: 0 0 60px rgba(0,0,0,0.9);
    animation: zoomIn 0.25s ease;
}

/* Zoom animation */
@keyframes zoomIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 600px) {
    .css-lightbox img {
        max-width: 95%;
        max-height: 95%;
        padding: 0.5rem;
    }
}

/* ===============================
   GET INVOLVED SECTION
=============================== */
.get-involved {
    background: linear-gradient(180deg, #111, #000);
    color: #fff;
    text-align: center;
    padding: 5rem 1rem;
}

.get-involved h2 {
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.get-involved p {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.get-involved-btn {
    padding: 0.9rem 2.2rem;
    background: #c50000;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-weight: bold;
    transition: all 0.25s ease;
}

.get-involved-btn:hover {
    background: #a40000;
    transform: translateY(-2px);
}

.donate-btn {
    padding: 0.9rem 2.2rem;
    background: #0aa84f;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-weight: bold;
    transition: all 0.25s ease;
}

.donate-btn:hover {
    background: #078c42;
    transform: translateY(-2px);
}
