body {
  font-family: Arial, Helvetica, sans-serif;
  max-width: 95%;
}

/* contenitore principale */
.mobile-container {
  max-width: 95%;
  margin: auto;
  background-color: white; /* corretto "whait" -> "white" */
  color: white;
  border-radius: 10px;
  background-image: url("/images/famiglia3.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* barra in alto */
.topnav {
  overflow: hidden;
  background-color: #D2B48C;
  position: relative;
}

/* link dentro al menu (nascosti di default per hamburger) */
.topnav #myLinks {
  display: none;
}
.topnav #myLinks a {
  display: block;
  font-size: 1.4rem;   /* PIÙ GRANDE */
  font-weight: bold;   /* GRASSETTO */
  padding: 14px 16px;
  color: maroon;
  text-decoration: none;
}

/* titolo alto */
.topnav a {
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

/* icona hamburger */
.topnav a.icon {
  background: #D2B48C;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

/* hover link */
.topnav a:hover {
  color: white !important;
}

.topnav .logo {
  width: 5px;
  margin-right: 15px;
}

.topnav .site-title {
  font-size: 12px;
  font-weight: bold;
  font-family: 'Georgia', serif; 
  color: maroon;
}

/* --- SOLO SU SMARTPHONE --- */
@media screen and (max-width: 600px) {
  .topnav #myLinks a {
    font-size: 1.8rem;   /* ancora più grande su mobile */
  }
}

.active {
  background-color: #04AA6D;
  color: white;
}

/* testo centrato */
.center {
  text-align: center;
  margin: auto;
  width: 90%;
  padding: 10px;
}

/* titoli */
h1, h2, h3 {
  text-align: center;
  color: maroon;
  margin-bottom: 1.5rem;
}
h1 { font-size: 1.6em; }
h2 { font-size: 1.6em; }
h3 { font-size: 1.5em; }

/* paragrafi */
p {
  color: maroon;
  font-size: 1.5em;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

/* liste */
li {
  list-style-type: disc;
  color: maroon;
  font-size: 1.5em;
text-align: left;
}

/* link generici */
a {
  color: maroon;
  text-decoration: none;
}
a:hover {
  font-weight: bold;
  text-decoration: none;
}
