/*
Theme Name: eurogastronomia Theme
Theme URI: http://localhost/eurogastronomia
Author: Riccardo
Description: Tema blocchi personalizzato per progetto eurogastronomia
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: eurogastronomia-theme
*/

/* HEADER sticky + ombra su scroll */
.site-header.is-sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .2s ease;
  border-bottom: 1px solid #eee; /* linea leggera */
}
body.is-scrolled .site-header.is-sticky-header {
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

/* Spazi & allineamenti */
.primary-nav .wp-block-navigation__container {
  gap: 18px; /* distanza tra voci menu */
}

/* Mobile: nascondi titolo se serve spazio e lascia logo + hamburger */
@media (max-width: 782px) {
  .site-header .wp-block-site-title { display:none; }
  .header-cta { display:none; } /* CTA visibile nel menu mobile */
}