/**
 * Homepage Styles — ATVCEO Child Theme
 * File: /wp-content/themes/prespa-pro-child/css/home.css
 */

/* ═══════════════════════════════════════════════════════
   GLOBAL HOMEPAGE RESETS & UTILITIES
   ═══════════════════════════════════════════════════════ */

.atvceo-homepage {
    background: var(--atv-dark);
    color: var(--atv-cream);
    font-family: 'Barlow', sans-serif;
}

.atvceo-homepage * { box-sizing: border-box; }

/* Remove default Prespa Pro page padding on homepage */
.atvceo-homepage .entry-content { padding: 0 !important; margin: 0 !important; }

/* Buttons */
.atvceo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 4px;
    transition: all 0.2s;
    cursor: pointer;
    border: 2px solid transparent;
}
.atvceo-btn--primary {
    background: var(--atv-orange);
    color: white;
    border-color: var(--atv-orange);
}
.atvceo-btn--primary:hover {
    background: var(--atv-orange-light);
    border-color: var(--atv-orange-light);
    color: white;
    transform: translateY(-2px);
}
.atvceo-btn--secondary {
    background: transparent;
    color: var(--atv-cream);
    border-color: rgba(245,240,232,0.35);
}
.atvceo-btn--secondary:hover {
    border-color: var(--atv-cream);
    color: var(--atv-cream);
    transform: translateY(-2px);
}
.atvceo-btn--ghost {
    background: transparent;
    color: rgba(245,240,232,0.5);
    border-color: rgba(245,240,232,0.12);
    font-size: 0.85rem;
    padding: 10px 20px;
}
.atvceo-btn--ghost:hover {
    color: var(--atv-cream);
    border-color: rgba(245,240,232,0.35);
}
.atvceo-btn--full { width: 100%; justify-content: center; }

/* Eyebrow labels */
.atvceo-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--atv-orange);
    margin-bottom: 0.75rem;
}
.atvceo-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--atv-orange);
    flex-shrink: 0;
}
.atvceo-eyebrow--light {
    color: rgba(255,255,255,0.6);
}
.atvceo-eyebrow--light::before {
    background: rgba(255,255,255,0.4);
}

/* Section titles */
.atvceo-section__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 1rem;
    color: var(--atv-cream);
}
.atvceo-section__title--accent { color: var(--atv-orange); }

/* Section wrappers */
.atvceo-section { padding: 5rem 0; }
.atvceo-section--dark2 { background: var(--atv-dark2); }
.atvceo-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}
.atvceo-section__inner--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.atvceo-section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 1rem;
}
.atvceo-section__header--centered {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.atvceo-section__header--centered .atvceo-eyebrow {
    justify-content: center;
}


/* ═══════════════════════════════════════════════════════
   SECTION 1 — HERO
   ═══════════════════════════════════════════════════════ */

.atvceo-hero {
    min-height: 85vh;
    max-height: 900px;    /* cap height on tall screens */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
}


.atvceo-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 60% 40%, rgba(74,124,42,0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(232,93,4,0.2) 0%, transparent 50%),
        linear-gradient(160deg, #0D1117 0%, #1C2331 40%, #2C1810 100%);
}

.atvceo-hero__tracks {
    position: absolute;
    top: 0; right: -100px;
    width: 500px;
    height: 100%;
    opacity: 0.05;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px, transparent 18px,
        #E85D04 18px, #E85D04 22px,
        transparent 22px, transparent 30px,
        #E85D04 30px, #E85D04 34px
    );
    transform: skewX(-8deg);
}

.atvceo-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    width: 100%;
}

.atvceo-hero__eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--atv-orange);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: atvceo-fade-up 0.6s 0.1s both;
}
.atvceo-hero__eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--atv-orange);
}

.atvceo-hero__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(4rem, 10vw, 8.5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--atv-cream);
    margin: 0 0 1rem;
    animation: atvceo-fade-up 0.6s 0.2s both;
}
.atvceo-hero__title--accent {
    color: var(--atv-orange);
    display: block;
}
.atvceo-hero__title--outline {
    -webkit-text-stroke: 2px var(--atv-cream);
    color: transparent;
    display: block;
}

.atvceo-hero__sub {
    font-size: 1.15rem;
    color: rgba(245,240,232,0.7);
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    animation: atvceo-fade-up 0.6s 0.35s both;
}

.atvceo-hero__ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: atvceo-fade-up 0.6s 0.5s both;
}

.atvceo-hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
}
.atvceo-hero__scroll span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--atv-cream);
}
.atvceo-hero__scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--atv-cream), transparent);
    animation: atvceo-scroll-pulse 2s ease-in-out infinite;
}

@keyframes atvceo-fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes atvceo-scroll-pulse {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 1; }
}

/* ── Hero — faint logo watermark background ─────────────────────── */
.atvceo-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-image: url('../images/logo-transparent.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.06;
    pointer-events: none;
    z-index: 1;
}

/* ── Hero — two-column layout when alerts present ───────────────── */
.atvceo-hero--has-alerts {
    display: grid;
    grid-template-columns: 1fr 580px;
    grid-template-rows: 1fr auto;
    align-items: center;
}

.atvceo-hero--has-alerts .atvceo-hero__bg,
.atvceo-hero--has-alerts .atvceo-hero__tracks {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
}

.atvceo-hero--has-alerts .atvceo-hero__content {
    grid-column: 1;
    grid-row: 1;
    padding-right: 2rem;
}

.atvceo-hero--has-alerts .atvceo-hero__scroll {
    grid-column: 1 / -1;
    grid-row: 2;
}

/* Alert panel */
.atvceo-hero__alerts {
    grid-column: 2;
    grid-row: 1;
    padding: 2rem 2rem 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2;
    align-self: start;
    padding-top: 5.5rem;
}

.atvceo-hero__alerts-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--atv-orange);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.atvceo-hero__alerts-eyebrow::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2px;
    background: var(--atv-orange);
}

.atvceo-hero__alert-card {
    background: rgba(13,17,23,0.85);
    border-left: 4px solid var(--atv-orange);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    backdrop-filter: blur(4px);
}

.atvceo-hero__alert-card--closed  { border-left-color: var(--alert-closed-border); }
.atvceo-hero__alert-card--caution { border-left-color: var(--alert-caution-border); }
.atvceo-hero__alert-card--info    { border-left-color: var(--alert-info-border); }
.atvceo-hero__alert-card--open    { border-left-color: var(--alert-open-border); }

.atvceo-hero__alert-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.atvceo-hero__alert-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--atv-orange-light);
}

.atvceo-hero__alert-region {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(245,240,232,0.5);
    margin-left: auto;
}

.atvceo-hero__alert-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--atv-cream);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.atvceo-hero__alerts-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--atv-tan);
    text-decoration: none;
    align-self: flex-end;
}

.atvceo-hero__alerts-link:hover {
    color: var(--atv-cream);
}

.atvceo-hero__alerts-title {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    color: var(--atv-cream) !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    margin: 0 0 1rem 0 !important;
    line-height: 1 !important;
}

.atvceo-hero__alert-excerpt {
    font-size: 0.8rem !important;
    color: rgba(245,240,232,0.7) !important;
    line-height: 1.5 !important;
    margin-top: 0.4rem !important;
}

.atvceo-hero__alert-date {
    font-size: 0.7rem !important;
    color: rgba(245,240,232,0.4) !important;
    margin-top: 0.35rem !important;
    font-family: 'Barlow Condensed', sans-serif !important;
    letter-spacing: 1px !important;
}

/* ═══════════════════════════════════════════════════════
   SECTION 2 — STATS BAR
   ═══════════════════════════════════════════════════════ */

.atvceo-stats-bar {
    background: var(--atv-orange);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1.25rem 2.5rem;
}

.atvceo-stats-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 3rem;
    border-right: 1px solid rgba(255,255,255,0.25);
}
.atvceo-stats-bar__item:last-child { border-right: none; }

.atvceo-stats-bar__number {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    line-height: 1;
    color: white;
}
.atvceo-stats-bar__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-top: 2px;
}


/* ═══════════════════════════════════════════════════════
   SECTION 4 — PERMIT CTA
   ═══════════════════════════════════════════════════════ */

.atvceo-permit__desc {
    color: rgba(245,240,232,0.7);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.atvceo-permit__steps {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}
.atvceo-permit__steps li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 0.95rem;
    color: rgba(245,240,232,0.8);
}
.atvceo-permit__steps li div { display: flex; flex-direction: column; gap: 2px; }
.atvceo-permit__steps li span { font-size: 0.85rem; color: rgba(245,240,232,0.5); }

.atvceo-permit__step-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--atv-orange);
    line-height: 1;
    min-width: 2rem;
    flex-shrink: 0;
}

.atvceo-permit__card {
    background: linear-gradient(135deg, #2C1810 0%, var(--atv-dark3) 100%);
    border: 1px solid rgba(232,93,4,0.3);
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}
.atvceo-permit__card::before {
    content: 'PERMIT';
    position: absolute;
    top: -10px; right: -10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(232,93,4,0.06);
    letter-spacing: -2px;
    pointer-events: none;
}
.atvceo-permit__card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--atv-orange-light);
    margin-bottom: 1rem;
}
.atvceo-permit__card p {
    font-size: 0.95rem;
    color: rgba(245,240,232,0.65);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.atvceo-permit__card-notice {
    font-size: 0.85rem;
    background: rgba(232,93,4,0.1);
    border-left: 3px solid var(--atv-orange);
    padding: 0.75rem 1rem;
    color: var(--atv-tan);
    border-radius: 0 4px 4px 0;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════
   SECTION 5 — TRAIL MAP
   ═══════════════════════════════════════════════════════ */

.atvceo-map-section__info .atvceo-section__title {
    font-size: clamp(1.8rem, 2.8vw, 3rem);
    white-space: normal;
}

/* Transparent topo/trail pattern overlay */
.atvceo-map-section__info::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/trail-map-bg-optimized.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.10;  /* start at 5%, adjust up or down */
    pointer-events: none;
    z-index: 0;
}

/* Keep content above the pattern */
.atvceo-map-section__info > * {
    position: relative;
    z-index: 1;
}

.atvceo-map-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
}

.atvceo-map-section__info {
    background: var(--atv-green);
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.atvceo-map-section__info .atvceo-btn {
    width: auto;
    align-self: flex-start;
}

.atvceo-map-section__info .atvceo-section__title { color: white; }
.atvceo-map-section__desc {
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════
   WEATHER WIDGET
   ═══════════════════════════════════════════════════════ */

.atvceo-map-section__preview {
    background: var(--atv-dark3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 480px;
    padding: 3rem;
}

.atvceo-weather {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.atvceo-weather__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--atv-cream);
    margin: 0 0 0.25rem;
    line-height: 1;
}

.atvceo-weather__location {
    font-size: 0.85rem;
    color: rgba(245,240,232,0.5);
    margin: 0;
}

.atvceo-weather__current {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.atvceo-weather__icon {
    font-size: 3.5rem;
    line-height: 1;
}

.atvceo-weather__temp {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--atv-cream);
}

.atvceo-weather__temp span {
    font-size: 2rem;
    color: rgba(245,240,232,0.5);
}

.atvceo-weather__condition {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--atv-orange-light);
}

.atvceo-weather__details {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: rgba(245,240,232,0.55);
}

.atvceo-weather__forecast {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.25rem;
}

.atvceo-weather__day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
}

.atvceo-weather__day-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(245,240,232,0.5);
}

.atvceo-weather__day-icon { font-size: 1.75rem; }

.atvceo-weather__day-temps {
    display: flex;
    gap: 0.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.atvceo-weather__day-temps .high { color: var(--atv-orange-light); }
.atvceo-weather__day-temps .low  { color: rgba(245,240,232,0.4); }

.atvceo-weather__footer {
    font-size: 0.75rem;
    color: rgba(245,240,232,0.25);
    letter-spacing: 0.5px;
}

.atvceo-weather--error {
    color: rgba(245,240,232,0.4);
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════
   SECTION 6 — EVENTS
   ═══════════════════════════════════════════════════════ */

.atvceo-events__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.atvceo-event-card {
    background: var(--atv-dark3);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: border-color 0.2s, transform 0.2s;
}
.atvceo-event-card:hover {
    border-color: rgba(232,93,4,0.4);
    transform: translateY(-4px);
}

.atvceo-event-card__date-bar {
    background: var(--atv-orange);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.atvceo-event-card__month {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    line-height: 1;
}
.atvceo-event-card__day {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    color: white;
}
.atvceo-event-card__year {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
}

.atvceo-event-card__body { padding: 1.25rem; }
.atvceo-event-card__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.atvceo-event-card__title a {
    color: var(--atv-cream);
    text-decoration: none;
    transition: color 0.15s;
}
.atvceo-event-card__title a:hover { color: var(--atv-orange-light); }
.atvceo-event-card__venue,
.atvceo-event-card__time {
    font-size: 0.85rem;
    color: rgba(245,240,232,0.5);
    margin-bottom: 0.3rem;
}


/* ═══════════════════════════════════════════════════════
   SECTION 7 — NEWS
   ═══════════════════════════════════════════════════════ */

.atvceo-news__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
}

.atvceo-news-card {
    background: var(--atv-dark3);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: border-color 0.2s;
}
.atvceo-news-card:hover { border-color: rgba(232,93,4,0.3); }

.atvceo-news-card__img {
    overflow: hidden;
    max-height: 220px;
}
.atvceo-news-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.atvceo-news-card:hover .atvceo-news-card__img img { transform: scale(1.03); }

.atvceo-news-card__body { padding: 1.25rem; }
.atvceo-news-card__meta {
    font-size: 0.75rem;
    color: var(--atv-orange);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.atvceo-news-card__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 0.5rem;
}
.atvceo-news-card--featured .atvceo-news-card__title { font-size: 1.4rem; }
.atvceo-news-card__title a {
    color: var(--atv-cream);
    text-decoration: none;
    transition: color 0.15s;
}
.atvceo-news-card__title a:hover { color: var(--atv-orange-light); }
.atvceo-news-card__excerpt {
    font-size: 0.88rem;
    color: rgba(245,240,232,0.55);
    line-height: 1.6;
}
.atvceo-news-card__excerpt p { margin: 0; }


/* ═══════════════════════════════════════════════════════
   SECTION 8 — CLUBS
   ═══════════════════════════════════════════════════════ */

.atvceo-section--clubs { background: var(--atv-dark); }

/* ═══════════════════════════════════════════════════════
   PRESPA PRO OVERRIDES — full width homepage
   ═══════════════════════════════════════════════════════ */

/* Remove Prespa Pro's default page constraints on homepage */
.atvceo-homepage.site-wrapper,
.site-wrapper.atvceo-homepage {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.atvceo-homepage #primary,
.atvceo-homepage .site-main {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.atvceo-homepage .entry-content {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — all breakpoints consolidated
   ═══════════════════════════════════════════════════════ */

@media ( min-width: 1600px ) {
    .atvceo-hero {
        min-height: 75vh;
    }
}

@media ( max-width: 1024px ) {
    .atvceo-section__inner--split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .atvceo-map-section {
        grid-template-columns: 1fr;
    }
    .atvceo-map-section__preview {
        min-height: 380px;
    }
    .atvceo-events__grid {
        grid-template-columns: 1fr 1fr;
    }
    .atvceo-news__grid {
        grid-template-columns: 1fr 1fr;
    }
    .atvceo-news-card--featured {
        grid-column: 1 / -1;
    }
}

@media ( max-height: 900px ) and ( max-width: 768px ) {
    .atvceo-hero {
        min-height: 100svh;
        padding-top: 160px;
        align-items: flex-start;
    }
    .atvceo-hero__title {
        font-size: clamp(3rem, 15vw, 5rem);
    }
    .atvceo-stats-bar {
        gap: 0;
    }
    .atvceo-stats-bar__item {
        padding: 0.75rem 1.5rem;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        width: 50%;
    }
    .atvceo-events__grid {
        grid-template-columns: 1fr;
    }
    .atvceo-news__grid {
        grid-template-columns: 1fr;
    }
    .atvceo-section__header {
        flex-direction: column;
        align-items: flex-start;
    }
    .atvceo-map-section__info {
        padding: 3rem 1.5rem;
    }
    .atvceo-map-section__preview {
        min-height: 300px;
    }
}
