body {
  font-family: "Open Sans", Arial, sans-serif;
  margin: 0;
}

/* NAVBAR */
nav {
  padding: 20px;
  text-align: center;
  background-color: #C74C0E;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #4D086E;
  font-weight: bold;
  font-size: 20px;
}

/* LAYOUT PRINCIPALE */
.main {
  display: flex;
  min-height: 90vh;
  font-size: 14px; 
  flex-wrap: wrap;
}

h1 {
  font-family: "Georgia", serif;
}

h2 {
  font-size: 36px; 
  font-family: "Georgia", serif;
}

h3 { 
  font-family: "Georgia", serif;
}

h5 {
  font-size: 16px;
}

/* COLONNA SINISTRA (PICCOLA) */
.left {
  width: 23%;
  padding: 40px 20px;
  text-align: center;
  background-color: #f5f5f5;
}

/* COLONNA DESTRA (GRANDE) */
.right {
  width: 77%;
  padding: 20px;
  /*display: flex;*/
  /*flex-direction: column;*/
}

/* FOTO TONDA */
.profile {
  width: 120px;
  height: 120px;
  max-width: 100%;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

/* SOTTOTITOLO */
.subtitle {
  color: #666;
}

/* IMMAGINE GRANDE */
/* IMMAGINE GRANDE FINALE 
.cover {
  margin-top: 30px;
  width: 100%;
  height: 300px;
  background-image: url('cover.jpg');
  background-size: cover;
  background-position: center;
}*/

.email {
  font-size: 12px;
  word-break: break-all;
}

.social {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social a {
  color: #007acc;
  font-size: 36px;   /* prova 32px o 36px */
  text-decoration: none;
}

.social a:hover {
  color: #005a99;
}

ul {
  list-style-type: disc; /* restores bullets */
}

@media (max-width: 768px) {

  .main {
    flex-direction: column; /* stack instead of side-by-side */
    font-size: 10px; 
  }

  .left,
  .right {
    width: 100%; /* full width on mobile */
    padding: 20px;
  }

  nav a {
    display: block;   /* menu becomes vertical */
    margin: 10px 0;
  }

  .profile {
    width: 80px;
    height: 80px;
  }

  h1 {
    font-size: 18px;
  }

  h2 {
    font-size: 18px;
  }

  h3 {
    font-size: 17px;
  }

  h5 {
    font-size: 12px;
  }
}
