/* ============================================================
   deHazette — Horoscoop
   Bestand: /assets/css/horoscoop.css

   Widget (zijkolom) + volledige rubriekpagina.
   Volgt de Hewo boxed-stijl; --accent komt van de zone.
   ============================================================ */

/* ─────────────────────────────────────────────
   WIDGET (rechterkolom krantje)
   ───────────────────────────────────────────── */
.horoscoop-widget {
    padding: 4px 0 2px;
}
.horoscoop-widget__teken {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.horoscoop-widget__symbool {
    font-size: 34px;
    line-height: 1;
    color: var(--accent, #c0392b);
}
.horoscoop-widget__naam-blok {
    display: flex;
    flex-direction: column;
}
.horoscoop-widget__naam {
    font-weight: 700;
    font-size: 16px;
    color: #222;
    line-height: 1.2;
}
.horoscoop-widget__periode {
    font-size: 11px;
    color: #999;
}
.horoscoop-widget__tekst {
    font-size: 13px;
    line-height: 1.55;
    color: #444;
    margin: 0 0 10px;
}
.horoscoop-widget__geluk {
    font-size: 12px;
    color: #666;
    padding: 6px 0;
    border-top: 1px solid #f0f0f0;
    margin-bottom: 4px;
}
.horoscoop-widget__geluk strong { color: #222; }
.horoscoop-widget__meer {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent, #c0392b);
    text-decoration: none;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}
.horoscoop-widget__meer:hover { text-decoration: underline; }

/* ─────────────────────────────────────────────
   VOLLEDIGE PAGINA
   ───────────────────────────────────────────── */
.horoscoop-pagina {
    padding: 30px 0 50px;
}
.horoscoop-pagina__kop {
    text-align: center;
    margin-bottom: 30px;
}
.horoscoop-pagina__hoofdtitel {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.horoscoop-pagina__emoji { margin-right: 8px; }
.horoscoop-pagina__subtitel {
    font-size: 15px;
    color: #777;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.5;
}
.horoscoop-pagina__datum {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    color: #999;
    text-transform: capitalize;
}
.horoscoop-pagina__gisteren {
    background: #fff8e1;
    color: #a06800;
    border: 1px solid #ffe0a0;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 13px;
    text-align: center;
    max-width: 620px;
    margin: 0 auto 24px;
}

/* Grid van kaartjes */
.horoscoop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
@media (max-width: 900px) {
    .horoscoop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .horoscoop-grid { grid-template-columns: 1fr; }
    .horoscoop-pagina__hoofdtitel { font-size: 26px; }
}

/* Kaart */
.horoscoop-kaart {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
    scroll-margin-top: 90px; /* voor het scrollen naar een gedeeld teken */
}
.horoscoop-kaart:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.horoscoop-kaart--uitgelicht {
    border-color: var(--accent, #c0392b);
    box-shadow: 0 0 0 2px var(--accent, #c0392b);
}
.horoscoop-kaart__kop {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f2f2f2;
}
.horoscoop-kaart__symbool {
    font-size: 32px;
    line-height: 1;
    color: var(--accent, #c0392b);
    flex-shrink: 0;
}
.horoscoop-kaart__naam {
    font-weight: 700;
    font-size: 17px;
    color: #1a1a1a;
    line-height: 1.2;
}
.horoscoop-kaart__periode {
    font-size: 12px;
    color: #aaa;
}
.horoscoop-kaart__tekst {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    flex: 1;
    margin-bottom: 14px;
}
.horoscoop-kaart__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 12px;
    color: #777;
    margin-bottom: 12px;
}
.horoscoop-kaart__meta strong { color: #333; }
.horoscoop-kaart__handelaar {
    display: inline-block;
    background: #f0f7ff;
    color: #1565c0;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}
.horoscoop-kaart__handelaar:hover { text-decoration: underline; }

/* Deelknoppen per kaart */
.horoscoop-deel {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid #f2f2f2;
}
.horoscoop-deel__label {
    font-size: 11px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 2px;
}
.horoscoop-deel__knop {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #555;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    padding: 0;
}
.horoscoop-deel__knop:hover { background: #e0e0e0; }
.horoscoop-deel__knop--whatsapp:hover { background: #25d366; color: #fff; }
.horoscoop-deel__knop--facebook:hover { background: #1877f2; color: #fff; }
.horoscoop-deel__knop--link:hover     { background: var(--accent, #c0392b); color: #fff; }
.horoscoop-deel__knop--gekopieerd {
    background: #27ae60 !important;
    color: #fff !important;
}

/* Deelbalk voor de hele pagina */
.horoscoop-pagina__deel {
    text-align: center;
    margin: 30px 0 10px;
    padding: 20px;
    background: #fafafa;
    border-radius: 8px;
}
.horoscoop-pagina__deel-titel {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 14px;
}
.horoscoop-pagina__deel-knoppen {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.horoscoop-deel-groot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    font-family: inherit;
    transition: opacity 0.15s;
}
.horoscoop-deel-groot:hover { opacity: 0.88; text-decoration: none; }
.horoscoop-deel-groot--whatsapp { background: #25d366; }
.horoscoop-deel-groot--facebook { background: #1877f2; }
.horoscoop-deel-groot--link     { background: #555; }

/* AI-disclaimer */
.horoscoop-pagina__disclaimer {
    text-align: center;
    font-size: 12px;
    color: #aaa;
    margin-top: 30px;
    font-style: italic;
}

/* Leeg-state */
.horoscoop-pagina__leeg {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}
.horoscoop-pagina__leeg-icoon {
    font-size: 48px;
    margin-bottom: 12px;
}

/* Toast bij kopiëren */
.horoscoop-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #222;
    color: #fff;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
}
.horoscoop-toast.zichtbaar {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ─────────────────────────────────────────────
   LOTTOCOMBINATIE (pagina-kaart)
   ───────────────────────────────────────────── */
.horoscoop-kaart__lotto {
    margin-bottom: 12px;
    padding: 10px 0;
    border-top: 1px dashed #eee;
}
.horoscoop-kaart__lotto-label {
    display: block;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
.horoscoop-kaart__lotto-getallen {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.horoscoop-bal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent, #c0392b);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Lotto in de widget: compacter */
.horoscoop-widget__lotto {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}
.horoscoop-widget__lotto-label {
    display: block;
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}
.horoscoop-widget__lotto-getallen {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.horoscoop-widget__bal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent, #c0392b);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   KADER ROND DE WIDGET (krantje-zijkolom)
   Zelfde opbouw als .dehazette-bovenlokaal, maar met
   een eigen paars accent i.p.v. goud/blauw/groen.
   ───────────────────────────────────────────── */
.dehazette-horoscoopkader {
    border: 1px solid #e3e3e3;
    border-top: 3px solid #7b4fa3;      /* accentlijn: horoscoop */
    border-radius: 4px;
    background: #f9f6fb;
    padding: 14px 16px 10px;
    margin: 0 0 20px;
    font-family: inherit;
}

.dehazette-horoscoopkader__kop {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    font-size: 1.05rem;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: #1a1a1a;
}

.dehazette-horoscoopkader__emoji { font-size: 1.1em; }

/* Widget zelf heeft binnen het kader geen eigen padding nodig */
.dehazette-horoscoopkader .horoscoop-widget { padding: 0; }

/* Scheidingslijntjes iets donkerder zodat ze zichtbaar blijven
   op de lichtpaarse achtergrond */
.dehazette-horoscoopkader .horoscoop-widget__geluk,
.dehazette-horoscoopkader .horoscoop-widget__lotto,
.dehazette-horoscoopkader .horoscoop-widget__meer {
    border-top-color: #e8e0ee;
}

/* Accentkleuren binnen het kader volgen het paars van de kaderlijn */
.dehazette-horoscoopkader .horoscoop-widget__symbool,
.dehazette-horoscoopkader .horoscoop-widget__meer { color: #7b4fa3; }
.dehazette-horoscoopkader .horoscoop-widget__bal   { background: #7b4fa3; }
