/* =====================
   Global Styles
===================== */

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

body {
  font-family: "Libertinus Math", sans-serif;
  background: #faf9f5;
  color: #1f2937;
  line-height: 1.8;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
}


/* =====================
   Hero Section
===================== */

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.65)
  );
}


.hero-content {
  position: absolute;
  left: 50%;
  bottom: 60%;
  top:200px;
  transform: translatex(-50%);
  width: 90%;
  max-width: 900px;
  color: white;
  text-align: center;
}


.date {
  position:relative;
  opacity: 20%;
  width: 200px;
  height: auto;
  font-size: 2rem;
  margin: auto;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.9;
}

.date-right{
  margin-left: 25px;
}
.date-flower{
  position: absolute;
  left: 74px;
  bottom: -11px;
  right: 348px;
  width: 60px;
  height: auto;
}


.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.2;
  margin-bottom: 25px;
}


.subtitle {
  font-size: 1.15rem;
  max-width: 600px;
  margin: auto;
  color: rgba(255,255,255,0.9);
}



/* =====================
   Story Section
===================== */

.story {
  padding: 100px 20px;
}


.container {
  max-width: 750px;
  margin: auto;
}


.story h2 {
  font-size: 2.2rem;
  margin: 60px 0 20px;
  color: #1f3d2b;
}


.story p {
  font-size: 1.08rem;
  margin-bottom: 25px;
  color: #4b5563;
}


/* =====================
   Ending
===================== */

.ending {
  margin-top: 80px;
  padding: 40px 30px;
  text-align: center;
  background: #f1eee5;
  border-radius: 12px;
}


.ending p {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #23412f;
}



/* =====================
   Responsive
===================== */

@media (max-width: 768px) {

  .hero {
    height: 90vh;
  }


  .hero-content {
    bottom: 10%;
  }


  .hero-content h1 {
    font-size: 2.5rem;
  }


  .subtitle {
    font-size: 1rem;
  }


  .story {
    padding: 60px 20px;
  }


  .story h2 {
    font-size: 1.8rem;
    margin-top: 45px;
  }


  .story p {
    font-size: 1rem;
  }

}