/* RESET BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY + BACKGROUND PROFONDITÀ */
body {
  background: linear-gradient(to bottom, #ffffff 0%, #f9f7f3 40%, #ffffff 100%);
  font-family: 'Montserrat', sans-serif;
  color: #2c2c2c;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #ffffff 0%, #f6f3ec 100%);
  padding: 40px 0 90px;
  border-bottom: 1px solid #e5e5e5;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #b89b5e;
  letter-spacing: 2px;
}

.btn {
  text-decoration: none;
  padding: 10px 22px;
  border: 1px solid #b89b5e;
  color: #b89b5e;
  border-radius: 10px;
  transition: 0.3s;
}

.btn:hover {
  background: #b89b5e;
  color: white;
}

/* HERO CONTENT */
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  margin-top: 80px;
}

.hero-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-text p {
  font-size: 20px;
  max-width: 560px;
  color: #444;
}

/* IMMAGINE RITRATTO */
.hero-img {
  width: 320px;
  height: 420px;
  border-radius: 18px;
  border: 4px solid #b89b5e;
  object-fit: cover;
  display: block;
}

/* SEZIONI: PROFONDITÀ + ANIMAZIONI */
section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;

  padding: 90px 70px;
  text-align: center;

  margin: 45px auto;
  max-width: 1200px;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

section.show {
  opacity: 1;
  transform: translateY(0);
}

section:nth-of-type(even) {
  background-color: #fafafa;
}

section:nth-of-type(odd) {
  background-color: #ffffff;
}

section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #b89b5e;
  margin-bottom: 35px;
}

section p {
  font-size: 19px;
  max-width: 820px;
  margin: 0 auto 18px;
  color: #444;
}

/* SERVICES GRID (SIMMETRICA) */
.services .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.services .grid div {
  padding: 22px;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  background: #ffffff;

  min-height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  transition: 0.3s;
}

.services .grid div:hover {
  transform: translateY(-4px);
  border-color: #b89b5e;
}

/* STUDIO IMAGE */
.studio-img {
  width: 100%;
  max-width: 700px;
  margin: 45px auto 0;
  border-radius: 16px;
  display: block;
}

/* FOOTER */
footer {
  background: #f9f7f3;
  padding: 70px 0;
  text-align: center;
  margin-top: 60px;
  border-top: 1px solid #e5e5e5;
}

footer h3 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: #b89b5e;
  margin-bottom: 30px;
}

.contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.contacts p {
  font-size: 18px;
  color: #444;
}

/* WHATSAPP BUTTON */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 28px;
  padding: 14px 18px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav h1 {
    font-size: 40px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    margin-top: 60px;
  }

  .hero-text h2 {
    font-size: 42px;
  }

  .hero-text p {
    font-size: 18px;
  }

  .hero-img {
    width: 260px;
    height: 340px;
  }

  section {
    padding: 70px 22px;
    margin: 28px 16px;
  }

  .services .grid {
    grid-template-columns: 1fr;
  }

  .contacts {
    grid-template-columns: 1fr;
  }
}

