/* Fonts & base */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #f9f9fb;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Merriweather', serif;
  margin-top: 0;
}

/* Layout helpers */
.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

/* Header */
.site-header {
  background: #B22222; /* rosso pompeiano */
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.profile-pic {
  width: 200px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.header-text h1 {
  font-size: 2.5rem;
  margin-bottom: 0.2rem;
}

.header-text h2 {
  font-weight: 300;
  margin-top: 0;
}

.logos img {
  height: 80px;
  margin-right: 1rem;
}

/* Navbar */
.navbar {
  background-color: #222;
}

.navbar ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0.5rem;
  margin: 0;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1rem;
  transition: background 0.3s;
}

.navbar a:hover {
  background: #444;
  border-radius: 5px;
}

/* Main sections */
main section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contacts p {
  margin: 0.3rem 0;
}

/* Footer */
.site-footer {
  background: #003366;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 3rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }

  .profile-pic {
    width: 150px;
  }

  .navbar ul {
    flex-direction: column;
  }
}
/* Stile moderno per i link normali */
a {
  color: #005599;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

a:hover {
  color: #003366;
  text-decoration: underline;
}


/* aggiunti */

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #f9f9fb;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Merriweather', serif;
  margin-top: 0;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.site-header {
  background: linear-gradient(135deg, #B22222, #8B1A1A); /* Pompeian red */
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

.site-header h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.site-header h2 {
  font-weight: 300;
  margin-top: 0;
}

section {
  margin: 2rem 0;
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

section h2 {
  border-bottom: 2px solid #B22222;
  padding-bottom: 0.3rem;
  margin-bottom: 1rem;
}

.pub-list {
  padding-left: 1.2rem;
}

.pub-list li {
  margin-bottom: 0.7rem;
}



