* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f3f3f3;
  color: #222;
}

/* BANDIERE */

.flags {
  position: fixed;
  top: 25px;
  right: 35px;
  z-index: 100;
}

.flags a {
  text-decoration: none;
  font-size: 28px;
  margin-left: 14px;
  color: #111;
}

/* PRIMA PAGINA */

.home-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.logo-area {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px 20px;
}

.logo-area img {
  width: 980px;
  max-width: 98%;
  height: auto;
  display: block;
  transition: 0.3s;
}

.logo-area img:hover {
  transform: scale(1.02);
}

/* FOOTER */

footer {
  background: #111;
  color: white;
  padding: 26px 40px;
}

.footer-grid {
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-grid p {
  font-size: 28px;
  line-height: 1.3;
  white-space: nowrap;
  text-align: center;
}

footer a {
  color: white;
  text-decoration: none;
}

/* SECONDA PAGINA */

.second-page {
  min-height: 100vh;
  padding: 70px 10px 60px;
}

.photo-area {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  text-align: center;
}

.photo-area img {
  width: 100%;
  max-width: 1500px;
  height: auto;
  display: block;
  margin: 0 auto;
  border: 12px solid white;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

.description {
  max-width: 1200px;
  margin: 50px auto 0;
  background: white;
  padding: 50px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.description p {
  font-size: 34px;
  line-height: 1.9;
  color: #222;
  text-align: center;
}

/* MOBILE */

@media (max-width: 768px) {

  .logo-area {
    padding: 120px 20px 60px;
  }

  .logo-area img {
    width: 360px;
  }

  footer {
    padding: 20px 18px;
  }

  .footer-grid {
    flex-direction: column;
    gap: 12px;
  }

  .footer-grid p {
    font-size: 18px;
    white-space: normal;
  }

  .description {
    padding: 25px;
  }

  .description p {
    font-size: 20px;
  }

  .flags {
    top: 12px;
    right: 15px;
  }

  .flags a {
    font-size: 20px;
  }
}