/* ── Scroll offset for sticky header ─────────────────────────────────────── */
[id] {
    scroll-margin-top: 96px;
}

/* ── Reduced motion ──────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* ── Material icons default style ────────────────────────────────────────── */
.material-symbols-outlined {
    font-variation-settings:
        "FILL" 0,
        "wght" 400,
        "GRAD" 0,
        "opsz" 24;
}

/* ── Utility classes ─────────────────────────────────────────────────────── */
.pill-shadow {
    box-shadow: 0 10px 30px -10px rgba(65, 118, 96, 0.3);
}

.asymmetric-shape {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

/* ── Floating decoration animation ──────────────────────────────────────── */
@keyframes float {
    0%   { transform: translateY(0px)   rotate(0deg); }
    50%  { transform: translateY(-10px) rotate(2deg); }
    100% { transform: translateY(0px)   rotate(0deg); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* ── Body min-height ─────────────────────────────────────────────────────── */
body {
    min-height: max(884px, 100dvh);
}

/* ── Meetup event card skeleton loader ───────────────────────────────────── */
@keyframes cv-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.cv-skeleton {
    background: linear-gradient(90deg, #ece7e8 25%, #e0dada 50%, #ece7e8 75%);
    background-size: 200% 100%;
    animation: cv-shimmer 1.4s infinite;
    border-radius: 1rem;
    min-height: 160px;
}
