/* =========================================================
   NUVOLE DI LUOGHI — PAGINA CHI SIAMO
   chi-siamo.css
   ========================================================= */


/* =========================================================
   DESKTOP
   ========================================================= */


/* --- BODY --- */

body.chi-siamo-page {
  background-color: black;
  min-height: 100vh;
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
}

/* --- CONTENUTO --- */

.chi-siamo-main {
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
  padding: 180px 70px 140px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.chi-siamo-content {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 70px;
  box-sizing: border-box;
}


/* --- FOTO PROFILO --- */

.chi-siamo-foto {
  flex: 0 0 340px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.chi-siamo-foto img {
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.12);
}


/* --- TESTO --- */

.chi-siamo-testo {
  flex: 1;
  max-width: 760px;
}

.chi-siamo-testo h1 {
  margin: 0 0 28px 0;
  color: white;
  font-family: "Century Gothic", "Gill Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 46px;
  line-height: 1.05;
}

.chi-siamo-testo p {
  margin: 0 0 22px 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Century Gothic", "Gill Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 19px;
  line-height: 1.75;
}

.chi-siamo-testo strong {
  color: white;
  font-weight: bold;
}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (max-width: 1100px) {

  .chi-siamo-main {
    padding: 170px 40px 120px;
  }

  .chi-siamo-content {
    gap: 45px;
  }

  .chi-siamo-foto {
    flex: 0 0 280px;
  }

  .chi-siamo-foto img {
    max-width: 280px;
  }

  .chi-siamo-testo h1 {
    font-size: 40px;
  }

  .chi-siamo-testo p {
    font-size: 18px;
    line-height: 1.7;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 768px) {

  /* --- BODY --- */

  body.chi-siamo-page {
    min-height: 100vh;
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
  }


  /* --- CONTENUTO --- */

  .chi-siamo-main {
    min-height: auto;
    padding: 190px 24px 60px;
    display: block;
  }

  .chi-siamo-content {
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .chi-siamo-foto {
    flex: none;
    width: 100%;
  }

  .chi-siamo-foto img {
    width: 100%;
    max-width: 240px;
    border-radius: 16px;
  }

  .chi-siamo-testo {
    width: 100%;
    max-width: 100%;
  }

  .chi-siamo-testo h1 {
    margin-bottom: 22px;
    font-size: 30px;
    text-align: left;
  }

  .chi-siamo-testo p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.65;
  }


  /* --- FOOTER (nascosto) --- */

  .chi-siamo-page .footer-text {
    display: none;
  }
}