
body {
  margin: 0;
  font-family: 'Georgia', serif;
  color: #333;
}
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.image-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}
.image-wrapper img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-wrapper img:last-child {
  display: block;
}
.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
}
.names {
  font-size: 3.5em;
  margin: 15px 0;
  letter-spacing: 2px;
}
.countdown {
  font-size: 1.2em;
  margin-bottom: 15px;
}
.event-details {
  background: white;
  color: black;
  padding: 15px 30px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 0.9em;
  text-align: center;
}
section {
  padding: 50px;
  text-align: center;
}
footer {
  padding: 20px;
  background: #f4f4f4;
  text-align: center;
}
@media (max-width: 768px) {
  .image-wrapper {
    justify-content: center;
  }
  .image-wrapper img {
    width: 100%;
    height: 100%;
  }
  .image-wrapper img:last-child {
    display: none;
  }
  .names {
    font-size: 2em;
  }
  .event-details {
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 20px;
  }
}

.wedding-details {
  display: flex;
  height: 100vh;
  width: 100%;
}

.wedding-left, .wedding-right {
  flex: 1;
  height: 100%;
}

.wedding-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wedding-right {
  background-color: #ffffff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  padding: 3rem;
}

.details-wrapper {
  max-width: 500px;
}

.wedding-right h2 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
}

.detail-block h4 {
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
  color: #555;
}

.detail-block p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.map-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

body {
  background-color: #f5efe6; /* Soft beige similar to your shirt */
}

.wedding-right {
  background-color: #ffffff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  padding: 3rem;
}

.footer, .rsvp-section, .wedding-info {
  margin-top: auto;
  padding-bottom: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .wedding-details {
    flex-direction: column;
    height: auto;
  }

  .wedding-left, .wedding-right {
    width: 100%;
    height: auto;
  }

  .wedding-left img {
    height: auto;
    max-height: 300px;
  }

  .wedding-right {
    padding: 2rem 1rem;
    text-align: center;
  }

  .wedding-right h2 {
    font-size: 2.5rem;
  }

  .detail-block p {
    font-size: 1rem;
  }
}
