/* Imposta qui il tuo font custom */
@font-face {
  font-family: "SuisseIntl";
  src: url("../fonts/SuisseIntl-Medium.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

/* Reset di base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "SuisseIntl", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background-color: #f5f5f5;
  color: #000000;
  overflow: hidden; /* niente scrolling */
}

/* Layout principale a tutta altezza */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Contenuto centrale, leggermente sopra il centro verticale */
.content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  padding-bottom: 10vh; /* spinge il testo un po' sopra il centro */
}

/* Wrapper per poter fare altri aggiustamenti, se necessario */
.message-wrapper {
  max-width: 700px;
}

/* Testo centrato orizzontalmente e giustificato */
.message {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
}


/* Footer per il logo in basso, centrato orizzontalmente */
.logo-area {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
}

/* Dimensioni di base del logo (puoi modificarle a piacere) */
.logo {
  max-width: 160px;
  height: auto;
}

/* Responsività di base per mobile */
@media (max-width: 600px) {
  .content {
    padding: 16px;
    padding-bottom: 8vh;
  }

  .message {
    font-size: 1rem;
  }

  .logo {
    max-width: 120px;
  }
}


/* Underlined button-style link */
.cta-link {
  display: inline-block;
  margin-top: 12px;
  text-decoration: underline;
  font-weight: inherit; /* same weight as parent */
  color: inherit;
  cursor: pointer;
}


.cta-link:hover {
  opacity: 0.7; /* simple hover effect */
}
