/* ============================================================
   WOW THEME — CALENDAR PAGE STYLES
   ============================================================ */

/* ----------------------------------------------------------
   HERO
---------------------------------------------------------- */
.cal-hero {
    background: var(--grad-primary);
    padding-block: var(--space-16);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cal-hero__glitter {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.07;
    mix-blend-mode: screen;
    pointer-events: none;
}

.cal-hero__inner {
    position: relative;
    z-index: 1;
}

.cal-hero__title {
    font-size: clamp(var(--text-5xl), 8vw, var(--text-7xl));
    color: var(--color-white);
    text-shadow:
        2px 2px 0 rgba(4, 42, 93, 0.3),
        0 4px 16px rgba(4, 42, 93, 0.25);
}

/* ----------------------------------------------------------
   LOCATION
---------------------------------------------------------- */
.cal-location {
    text-align: center;
    margin-bottom: var(--space-6);
}

.cal-location__heading {
    font-size: var(--text-2xl);
    color: var(--color-navy);
    margin-bottom: var(--space-2);
}

.cal-location__address {
    font-size: var(--text-lg);
    color: var(--color-navy-80);
}

.cal-location__buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
}

/* ----------------------------------------------------------
   CALENDAR EMBED
---------------------------------------------------------- */
.cal-embed {
    padding: var(--space-4);
    overflow: hidden;
}

.cal-embed iframe {
    display: block;
    width: 100%;
    border-radius: var(--radius-sm);
}
