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

body {
  font-family: 'Montserrat', sans-serif;
}

/* HERO SECTION */
.hero {
  height: 100vh;
  background: url("tuscany.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Besseres Overlay (kein milchiger Effekt mehr) */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.1)
  );
}

/* CONTENT */
.content {
  position: relative;
  z-index: 2;
  padding: 20px;
  width: 90%;
  max-width: 900px;
  color: rgba(240,240,240,1);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* TEXT ELEMENTE */

.save-the-date {
  letter-spacing: 4px;
  font-size: 14px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* Divider */
.divider {
  margin: 10px 0 25px;
  font-size: 18px;
  opacity: 0.9;
}

.date {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  margin-bottom: 15px;
}

.separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.branch-img {
  width: 120px;
  opacity: 0.9;
}

.separator span {
  display: block;
  height: 1px;
  width: 60px;
  background: rgba(47,62,47,0.8);
  opacity: 0.5;
}

.separator .heart {
  width: auto;
  height: auto;
  background: none;
  font-size: 26px;
  color: rgba(47,62,47,0.8);
  text-shadow: 0;
}

.names {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  margin: 10px 0 15px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.location {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 34px;
  margin-bottom: 40px;
}

.footer-text {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
}

/* MOBILE OPTIMIERUNG */
@media (max-width: 600px) {

  .content {
    width: 92%;
  }

  .date {
    font-size: 40px;
  }

  .names {
    font-size: 44px;
  }

  .location {
    font-size: 28px;
  }

  .footer-text {
    font-size: 16px;
  }
}