/* === Global Styles === */
body {
  margin: 0;
  font-family: "Georgia", serif;
  background: #faf9f7;
  color: #333;
}

html {
  scroll-behavior: smooth;
}

/* === Hero Section === */
.hero-section {
  height: 100vh;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  position: relative;
}

.hero-section h1 {
  font-size: 4rem;
  margin: 0;
  font-weight: 300;
  font-family: 'Nanum Gothic', sans-serif;
  position: relative;
  top: -100px;
}

.hero-section p {
  font-size: 1.5rem;
  margin-top: 10px;
  font-family: 'Nanum Gothic', sans-serif;
  position: relative;
  top: -100px;
}

/* === General Section Styling === */
section {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

h2 {
  font-weight: 300;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: goldenrod;
  font-family: 'Nanum Gothic', sans-serif;
}

p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: black;
  font-family: 'Nanum Gothic', sans-serif;
}

/* === Photo Strip Sections === */
.photo-strip {
  height: 70vh;
  background-size: cover;
  background-position: center;
  margin: 60px 0;
  border-radius: 6px;
}

/* === RSVP Button === */
.rsvp-button {
  display: inline-block;
  padding: 14px 28px;
  background: #c3a663;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 20px;
  font-size: 1.2rem;
  transition: 0.3s ease;
}

.rsvp-button:hover {
  background: #a88c52;
}

/* === Footer === */
footer {
  padding: 30px 0;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
  .hero-section {
    background-position: top center;
    background-size: cover;
  }

  .hero-section h1 {
    font-size: 2.7rem;
    top: -40px;
  }

  .hero-section p {
    font-size: 1.2rem;
    top: -30px;
  }

  .photo-strip {
    height: 40vh;
  }

  section {
    padding: 50px 15px;
  }
}
