/* Upcoming Holidays — hero card for the next one + a dated list below. */

.services-add-btn {
    margin-left: auto; flex-shrink: 0;
    width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--indigo); color: #fff; font-size: .85rem; text-decoration: none;
    transition: background .12s ease;
}
.services-add-btn:hover { background: color-mix(in srgb, var(--indigo) 85%, black); }

.ho-hero {
    position: relative; overflow: hidden;
    min-height: 165px; margin-bottom: .7rem;
    background: linear-gradient(135deg, #0f7a63, #0a5c4d); color: #fff;
    border-radius: 5px; padding: 1.4rem 1.2rem; text-align: center;
    box-shadow: 0 14px 32px -14px rgba(0,0,0,.35);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.ho-hero-content { position: relative; z-index: 3; }
.ho-hero-share-form { position: absolute; top: .7rem; right: .7rem; margin: 0; z-index: 4; }
.ho-hero-share {
    width: 34px; height: 34px; border-radius: 50%; border: none; cursor: pointer;
    background: rgba(255,255,255,.16); color: #fff; font-size: .9rem;
    display: flex; align-items: center; justify-content: center;
    transition: background .12s ease;
}
.ho-hero-share:hover { background: rgba(255,255,255,.28); }

/* ---- Background flourish: soft glow + drifting confetti ---- */
.ho-hero-glow {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 240px; height: 240px; border-radius: 50%; z-index: 1;
    background: radial-gradient(circle, rgba(244,211,94,.28), transparent 70%);
    animation: ho-glow-pulse 5s ease-in-out infinite;
}
@keyframes ho-glow-pulse {
    0%, 100% { opacity: .6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.ho-hero-confetti { position: absolute; inset: 0; overflow: hidden; z-index: 1; pointer-events: none; }
.ho-confetti-piece {
    position: absolute; top: -12px; width: 6px; height: 10px; border-radius: 1px; opacity: 0;
    animation: ho-confetti-fall 4s linear infinite;
}
.ho-confetti-piece:nth-child(1) { left: 6%;  background: #f4d35e; animation-delay: 0s;   animation-duration: 3.6s; }
.ho-confetti-piece:nth-child(2) { left: 20%; background: #fff;    animation-delay: .7s;  animation-duration: 4.3s; }
.ho-confetti-piece:nth-child(3) { left: 36%; background: #ffb347; animation-delay: 1.4s; animation-duration: 3.9s; }
.ho-confetti-piece:nth-child(4) { left: 52%; background: #f4d35e; animation-delay: 2.1s; animation-duration: 4.5s; }
.ho-confetti-piece:nth-child(5) { left: 68%; background: #fff;    animation-delay: .3s;  animation-duration: 3.7s; }
.ho-confetti-piece:nth-child(6) { left: 84%; background: #ffb347; animation-delay: 1.9s; animation-duration: 4.1s; }
.ho-confetti-piece:nth-child(7) { left: 94%; background: #f4d35e; animation-delay: 1s;   animation-duration: 3.5s; }
@keyframes ho-confetti-fall {
    0%   { transform: translateY(-12px) rotate(0deg); opacity: 0; }
    12%  { opacity: .85; }
    88%  { opacity: .85; }
    100% { transform: translateY(190px) rotate(340deg); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .ho-hero-glow, .ho-confetti-piece { animation: none; }
    .ho-hero-glow { opacity: .5; }
    .ho-confetti-piece { display: none; }
}
.ho-hero-label { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; opacity: .85; }
.ho-hero-name { font-size: 1.3rem; font-weight: 800; font-family: var(--font-display); margin-top: .3rem; }
.ho-hero-date { font-size: .84rem; opacity: .9; margin-top: .2rem; }
.ho-hero-countdown {
    display: inline-block; margin-top: .7rem; padding: .4rem 1rem; border-radius: 999px;
    background: rgba(255,255,255,.16); font-weight: 800; font-size: .95rem;
}

.ho-list {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius, 5px);
    overflow: hidden;
}
.ho-row {
    display: flex; align-items: center; gap: .8rem;
    padding: .75rem .9rem; border-bottom: 1px solid var(--border);
}
.ho-row:last-child { border-bottom: none; }

.ho-row-date {
    flex-shrink: 0; width: 3rem; height: 3rem; border-radius: 8px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: var(--indigo-soft, var(--paper));
}
.ho-row-day { font-weight: 800; font-size: 1.05rem; color: var(--indigo); line-height: 1; }
.ho-row-month { font-size: .62rem; font-weight: 700; text-transform: uppercase; color: var(--indigo); letter-spacing: .03em; }

.ho-row-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: .1rem; }
.ho-row-name { font-weight: 700; font-size: .9rem; color: var(--ink); }
.ho-row-type {
    display: inline-block; margin-left: .3rem; font-size: .62rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .02em; color: #0a5c4d;
    background: rgba(15,122,99,.12); padding: .05rem .4rem; border-radius: 999px; vertical-align: middle;
}
.ho-row-desc { font-size: .76rem; color: var(--ink-soft); }
.ho-row-countdown { flex-shrink: 0; font-size: .8rem; font-weight: 700; color: var(--ink-soft); white-space: nowrap; }

@media (max-width: 480px) {
    .ho-hero-name { font-size: 1.1rem; }
    .ho-row-date { width: 2.6rem; height: 2.6rem; }
    .ho-row-name { font-size: .84rem; }
}
