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

/* BASE */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #fdfcfa;
  color: #4b4b4b;
  line-height: 1.7;
}

/* HERO */
.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1523438885200-e635ba2c371e') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 248, 244, 0.75);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: #7a5c58;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-top: 10px;
}

.hero-date {
  margin-top: 20px;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* SEZIONI */
.section {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #7a5c58;
  margin-bottom: 25px;
}

/* FOTO */
.photo-section {
  display: flex;
  justify-content: center;
}

.photo-frame {
  width: 300px;
  height: 400px;
  border: 3px solid #e5d8d3;
  border-radius: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0a29d;
  font-style: italic;
  background: #faf6f4;
}

/* IBAN */
.iban-box {
  background: #f6efec;
  padding: 30px;
  border-radius: 18px;
  margin-top: 25px;
}

.iban {
  font-family: monospace;
  font-size: 1.2rem;
  margin: 10px 0;
}

/* RSVP */
.rsvp {
  background: #faf6f4;
  padding: 60px 20px;
  border-radius: 30px;
}

.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 15px 40px;
  background: #7a5c58;
  color: white;
  text-decoration: none;
  border-radius: 40px;
  font-size: 1rem;
  transition: 0.3s ease;
}

.btn:hover {
  background: #5f4744;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 60px 20px 40px;
  color: #7a5c58;
}

.signature {
  margin-top: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .photo-frame {
    width: 240px;
    height: 320px;
  }
}
