/* ============================================================
   ic-hero-text-fix.css  (2026-06-01)
   Forza i 4 testi dell'hero home in BIANCO, in modo definitivo.
   - Selettori basati su ID (#ic-home-title, #ic-search-bar): NON dipendono
     da .hero (così funziona anche se la sezione ha classi diverse) e vincono
     su force-light/force-dark (che li rendevano navy #0b2340 / #4B5563).
   - Imposta sia `color` sia `-webkit-text-fill-color` (in WebKit text-fill
     scavalca color: senza, il testo resterebbe del colore precedente).
   - Caricato per ULTIMO tra i CSS → vince anche a parità di specificità.
   ============================================================ */

/* 1) Titolo "La Puglia e i suoi 257 comuni" + tutti i suoi span figli */
html body #ic-home-title,
html body #ic-home-title > span,
html.force-light body #ic-home-title,
html.force-light body #ic-home-title > span,
html.force-dark body #ic-home-title,
html.force-dark body #ic-home-title > span {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5) !important;
}

/* 2) Sottotitolo "Eventi, servizi e informazioni per cittadini e visitatori" */
html body #ic-home-title > .ic-hero-h1-visible__sub,
html body .ic-hero-h1-visible .ic-hero-h1-visible__sub,
html.force-light body #ic-home-title > .ic-hero-h1-visible__sub,
html.force-dark body #ic-home-title > .ic-hero-h1-visible__sub {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .45) !important;
}

/* 3) Caption "257 Comuni • 6 Province • Tutto a portata di mano" (sotto la search) */
html body #ic-search-bar > div:last-child,
html body #ic-search-bar [data-i18n="home_search_subtitle"],
html.force-light body #ic-search-bar > div:last-child,
html.force-light body #ic-search-bar [data-i18n="home_search_subtitle"] {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: 0 1px 5px rgba(0, 0, 0, .5) !important;
}

/* 4a) Testo digitato nell'input + 4b) placeholder "Cerca in Puglia…" */
html body #ic-search-bar input[type="search"],
html.force-light body #ic-search-bar input[type="search"] {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
html body #ic-search-bar input[type="search"]::placeholder,
html.force-light body #ic-search-bar input[type="search"]::placeholder {
  color: rgba(255, 255, 255, .82) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, .82) !important;
  opacity: 1 !important;
}
