@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;500;600&family=Inter:wght@300;400;500&display=swap');

body {
  margin: 0;
  padding: 0;
  background: #F8F5F0;
  color: #1A1A1A;
  font-family: 'Inter', sans-serif;
}

/* HEADER LATERALE */
.brand-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 20px 10px;
}

/* LOGO LEGGERMENTE PIÙ GRANDE (perfetto) */
.brand-logo {
  width: 60px;
  height: auto;
  display: block;
}

/* TITOLO ACCANTO AL LOGO */
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  letter-spacing: 3px;
  font-weight: 400;
  margin: 0;
}

/* NAV */
.center-nav {
  text-align: center;
  margin-top: 10px;
}

.center-nav a {
  margin: 0 18px;
  text-decoration: none;
  color: #1A1A1A;
  font-size: 16px;
  letter-spacing: 1px;
}

.center-nav a:hover {
  color: #000;
}

/* HERO IMAGE */
.hero-img {
  width: 70%;
  max-width: 800px;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 12px;
}

/* TESTO EDITORIALE */
.intro-block {
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
}

.intro {
  font-size: 18px;
  line-height: 1.9;
  color: #333;
}

/* SEZIONE NUMERI */
.issues {
  text-align: center;
  margin: 60px auto;
}

.issues h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
}

#pdf-list {
  list-style: none;
  padding: 0;
}

#pdf-list li {
  margin: 10px 0;
}

#pdf-list a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}

#pdf-list a:hover {
  border-color: #000;
}
/* CAROSELLO — SCORRE SEMPRE CON IL DITO, ANCHE CON MOLTE FOTO */
.secondary-carousel {
  margin-top: 60px;
  padding: 20px 0;
  display: flex;
  overflow-x: scroll; /* scroll vero, non auto */
  overflow-y: hidden;
  gap: 18px;
  scroll-behavior: smooth;

  /* SCORRIMENTO NATURALE SU TELEFONI */
  -webkit-overflow-scrolling: touch;

  /* EVITA CHE SI BLOCCHI O TORNI INDIETRO */
  scroll-snap-type: none;
}

.secondary-carousel img {
  width: 260px;
  border-radius: 12px;
  flex-shrink: 0; /* le immagini non si comprimono */
  scroll-snap-align: none; /* nessun magnetismo */
}


.secondary-carousel img {
  width: 260px;
  border-radius: 12px;
  flex-shrink: 0;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 50px;
  font-size: 14px;
  color: #777;
}

/* PAGINA CHI SONO */
.about-container {
  max-width: 900px;
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.about-img {
  width: 55%;
  max-width: 380px;
  border-radius: 12px;
  object-fit: cover;
}

.about-text {
  max-width: 700px;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 20px;
}