/* 
 * Font Override CSS - My Place Malpensa
 * File per standardizzare i font in tutto il sito
 * Inter per il corpo del testo, SF Pro Display per i titoli
 */

/* Font base per tutto il sito */
body {
  font-family: 'Inter', sans-serif !important;
}

/* Font per titoli e elementi di intestazione */
h1, h2, h3, h4, h5, h6, .section-title, .hero-title, .structure-card-title {
  font-family: 'SF Pro Display', 'Helvetica Neue', 'Helvetica', sans-serif !important;
}

/* Override per l'header e la navigazione */
.site-header {
  font-family: 'Inter', sans-serif !important;
}

.site-header * {
  font-family: 'Inter', sans-serif !important;
}

.main-nav, .main-nav ul, .main-nav li, .main-nav a {
  font-family: 'Inter', sans-serif !important;
}

.selectors, .language-selector, .language-selector * {
  font-family: 'Inter', sans-serif !important;
}

/* Assicura che tutti gli elementi del menu usino Inter */
nav.main-nav * {
  font-family: 'Inter', sans-serif !important;
}

/* Garantisci che i titoli specifici usino SF Pro Display */
h1.hero-title, .hero-title {
  font-family: 'SF Pro Display', 'Helvetica Neue', 'Helvetica', sans-serif !important;  
}

/* Override per menu e footer */
.footer-column h3 {
  font-family: 'SF Pro Display', 'Helvetica Neue', 'Helvetica', sans-serif !important;
}

.footer-links a, .contact-info li, .footer-bottom, .footer-bottom * {
  font-family: 'Inter', sans-serif !important;
}

/* Override per bottoni */
.cta-button, .hero-button, button, .btn, a.btn, .structure-view-button {
  font-family: 'Inter', sans-serif !important;
}

/* Elementi specifici */
p, span, div, li, a, input, textarea, label {
  font-family: 'Inter', sans-serif !important;
} 