/* Contenitore centrale */
.description-container {
  width: 80%;
  max-width: 1100px;
  margin: 120px auto;
  padding: 40px;
  background-color: rgba(30, 25, 20, 0.85);
  border: 4px solid #a07e43;
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(160, 126, 67, 0.5);
  font-family: 'Cormorant Garamond', serif;
  color: #f3e7d4;
  line-height: 1.7;
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Titolo principale */
.description-container h1 {
  font-family: 'UnifrakturCook', cursive;
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 35px;
  color: #ffd38c;
  text-shadow: 2px 2px 4px #000;
  text-transform: none;
}

/* Paragrafi */
.description-container p {
  font-size: 1.2em;
  margin-bottom: 18px;
  text-transform: none;
}

/* Responsive */
@media (max-width: 768px) {
  .description-container {
    width: 90%;
    max-width: 600px;
    padding: 25px 18px;
    margin: 60px auto;
    border-width: 3px;
  }

  .description-container h1 {
    font-size: 1.8em;
  }

  .description-container p {
    font-size: 1em;
  }
}

/* === AGGIUNTE === */

/* Sfondo generale */
body {
  background-image: url('/img/sfondo.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}

/* Riduzione larghezza cornice del testo su desktop */
@media (min-width: 769px) {
  .description-container {
    width: 64%; /* 20% in meno rispetto all'originale 80% */
  }
}
