/* ------------------------------
   BASE TYPOGRAPHY & GLOBAL
--------------------------------*/
body {
  margin: 0;
  padding: 0;
  background-color: #d1e4de;
  color: #000000;
	background-color: #d1e4de
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
               Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.8;
  font-size: 18px;
}

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.25;
  margin: 2.5rem 0 1rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

p, ul, li {
  margin-bottom: 1.4rem;
}

/* ------------------------------
   LINKS
--------------------------------*/
a {
  color: #0073aa;
  text-decoration: underline;
}

a:hover {
  color: #005177;
}

/* ------------------------------
   LAYOUT
--------------------------------*/
main {
  max-width: 650px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
background-color: #d1e4de;
}

/* ------------------------------
   HEADER
--------------------------------*/
header {
  padding: 2rem 1.5rem 1rem;
  text-align: left;
background-color: #d1e4de
}

header img {
  height: 80px;
}

header h1 {
  margin: 0.5rem 0 0.2rem;
  font-size: 2.4rem;
}

header .tagline {
  margin: 0;
  font-size: 1.1rem;
  color: #444;
}

.site-header {
  padding: 1.5rem 1.5rem 1rem;
  background-color: #aa9ba7;
  border-bottom: 1px solid #dcd7ca;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.branding {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 70px;
}

.site-title {
  margin: 0;
  font-size: 1.8rem;
}

.tagline {
  margin: 0;
  font-size: 1rem;
  color: #444;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
}

.site-nav a {
  text-decoration: none;
  color: #000;
  font-size: 1.1rem;
}

.site-nav a:hover {
  text-decoration: underline;
}

/* Bottone hamburger nascosto su desktop */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}


/* ------------------------------
   NAVIGATION
--------------------------------*/
nav {
  margin-top: 1.5rem;
}

nav a {
  text-decoration: none;
  margin-right: 1.5rem;
  font-size: 1.1rem;
  color: #000;
}

nav a:hover {
  text-decoration: underline;
}

/* ------------------------------
   SECTIONS
--------------------------------*/
.section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #dcd7ca;
}

.section:first-of-type {
  border-top: none;
  padding-top: 0;
}

/* ------------------------------
   INFO BOX
--------------------------------*/
.info-box {
  background-color: #d1e4de;
  padding: 1rem 1.2rem;
  border-left: 4px solid #dcd7ca;
  margin: 1.5rem 0;
}

/* ------------------------------
   FOOTER
--------------------------------*/
footer {
  background-color: #aa9ba7;
  padding: 0.5rem 0.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #333;
  margin-top: 1rem;
}

@media (max-width: 800px) {

  .header-inner {
    flex-wrap: wrap;
  }

  /* Mostra hamburger */
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  /* Menu mobile nascosto */
  .site-nav {
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    display: none;
  }

  /* Quando aperto */
  .site-nav.open {
    display: flex;
  }
}

