body{
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #111;
  line-height: 1.6;
}

h1, h2{
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}
.hero{
  height: 75vh;

  background: url("/assets/hero.jpg") center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay{
  background: rgba(0,0,0,0.35);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content{
  text-align: center;
  color: white;
  padding: 20px;
}

.hero h1{
  font-size: 48px;
  margin-bottom: 10px;
}

.subtitle{
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-switch{
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 1000;
}

.lang-link{
  text-decoration: none;
  color: white;
  opacity: 0.85;
}

.lang-link:hover{
  opacity: 1;
  text-decoration: underline;
}

.lang-sep{
  opacity: 0.55;
  color: white;
}

/* FOTO PROFILO */
.profile-photo{
  width: 260px;
  margin: 30px 0;
  display: block;
}

/* BOOK LAYOUT */
.book-layout{
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.book-text{
  flex: 1;
  min-width: 280px;
}

.book-image img{
  max-width: 220px;
  height: auto;
  display: block;
}
/* --- FIX LAYOUT BASE (EN) --- */
.container{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

.section{
  padding: 64px 0;
}

.section.alt{
  background: #fff; /* se vuoi alternanza diversa dimmelo */
}

/* --- FIX BOOK LAYOUT --- */
.book-layout{
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.book-text{
  flex: 1;
  min-width: 320px;
}

.book-image{
  flex: 0 0 240px;
}

.book-image img{
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile: immagine sotto */
@media (max-width: 820px){
  .book-layout{
    flex-direction: column;
  }
  .book-image{
    flex: none;
    max-width: 260px;
  }
}
body{
  margin: 0;
}

img{
  max-width: 100%;
  height: auto;
  display: block;
}

main{
  display: block;
}