/* CSS per la pagina dei contatti */

/* Importa il font */
@import url('https://fonts.googleapis.com/css2?family=San+Francisco:wght@400;500;600&display=swap');

body {
  margin: 0;
  font-family: 'San Francisco', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #f5f5f7;
  color: #1c1c1e;
  line-height: 1.6;
  padding: 0;
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

h1 {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #1c1c1e;
  letter-spacing: 1px;
}

p {
  text-align: center;
  font-size: 1.2rem;
  color: #333333;
  margin-bottom: 2rem;
}

/* Menu di navigazione */
nav {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

nav ul {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

nav a:hover {
  background-color: #e0e0e0;
}

/* Titolo pagina contatti */
.contact-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #777;
  margin-bottom: 2.5rem;
}

/* Layout per i membri del team */
.team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);  /* 2 colonne per ogni riga */
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  background-color: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.team-member h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: #222;
}

.team-member p {
  color: #555;
  font-size: 0.95rem;
  margin: 4px 0;
}