header {
  color: #000;
  font-size: 50px;
  background-color: transparent;
  padding-top: 5px;
  padding-bottom: 5px;
}

body {
  margin: 0;
  padding: 0;
}

.video-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.video-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

h1,
h3 {
  font-family: "Lucida Handwriting";
}

h1 {
  text-align: center;
}

h2 {
  font-family: "Garamond";
  text-align: center;
  color: #fff;
}

h3 {
  font-size: 50px;
  line-height: 0;
}

.rsvpsection {
  background-color: #b67f44;
  text-align: center;
  padding: 50px 0;
  position: relative;
}

.border {
  position: absolute;
  bottom: -175px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 40%;
  height: auto;
}

.rsvp:link,
.rsvp:visited {
  position: relative;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}

.rsvp:hover,
.rsvp:active {
  transform: scale(1.05);
  opacity: 0.9;
}

.rsvp-image {
  width: 800px;
  height: auto;
  border-radius: 10px;
  display: block;
  position: relative;
}

.rsvp-header {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: black;
  font-family: "Lucida Handwriting";
  font-size: 50px;
  /* font-weight: bold; */
  pointer-events: none;
}

.rsvp-text {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: black;
  font-family: "Garamond";
  font-size: 24px;
  /* font-weight: bold; */
  pointer-events: none;
  /* text-shadow: 2px 2px 4px black; */
}

p {
  font-family: "Garamond";
}

/* .schedule {
  background-color: #f6f1ed;
  padding-bottom: 0px;
} */

.venue-section {
  color: black;
  background-color: transparent;
  padding-top: 0px;
  padding-bottom: 0px;
  font-size: 20px;
}

.venue-content {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  background-color: #f6f1ed;
  position: relative;
  padding: 0px;
}

.venue-box {
  width: 850px;
  padding: 0px;
  text-align: center;
  border-radius: 0px;
  margin-left: 0px;
}

.venue-map {
  width: 765px;
  height: 600px;
  border-radius: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-right: 200px;
  margin-top: 0px;
}

.venue-map iframe {
  width: 1500px;
  height: 400px;
  border: 6px solid #fff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
  padding-left: 100px;
}

.venue-text {
  width: 50%;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .venue-section {
    background: #f9f6f2; /* collapse to one color */
  }
  .venue-content {
    flex-direction: column;
  }
  .venue-map,
  .venue-photo {
    flex: 1 1 100%;
    background-color: #f9f6f2;
  }
  .venue-map iframe {
    width: 100%;
    height: 300px;
  }
  .venue-photo img {
    margin-top: 20px;
    width: 80%;
  }
}

.dresscode {
  color: white;
  background-color: transparent;
  padding-top: 0px;
  padding-bottom: 0px;
  font-size: 20px;
  font-family: "Garamond";
  position: relative;
}

.dresscode-content {
  display: flex;
  gap: 40px;
  align-items: center;
  background-color: black;
  margin-top: 0px;
  position: relative;
}

.dresscode-box {
  width: 840px;
  padding: 20px;
  text-align: center;
  border-radius: 0px;
  margin-left: 50px;
}

.dresscode-photo {
  width: 765px;
  height: 600px;
  border-radius: 0px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  overflow: hidden;
  background-color: #f6f1ed;
  padding-right: 200px;
  margin-top: 0px;
}

.dresscode-photo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0px;
}

/* .outfit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 800px;
  pointer-events: none;
} */

.accommodation {
  color: white;
  text-align: center;
  background-color: black;
  padding-top: 10px;
  padding-bottom: 5px;
  font-size: 20px;
  padding-bottom: 25px;
}

.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.hotel-card {
  background-color: #f6f1ed;
  color: #5a1f15;
  border: 2px solid #f6f1ed;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.hotel-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.hotel-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.hotel-info {
  padding: 15px 20px;
}

.hotel-info h3 {
  font-size: 1.3em;
  margin-bottom: 20px;
}

.hotel-info p {
  margin: 5px 0;
  font-size: 0.95em;
}

.honeymoon {
  color: black;
  background-color: transparent;
  padding-top: 0px;
  padding-bottom: 0px;
  font-size: 20px;
}

.honeymoon-content {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  background-color: #f6f1ed;
  position: relative;
  padding: 0px;
}

.honeymoon-box {
  width: 850px;
  padding: 20px;
  text-align: center;
  border-radius: 0px;
  margin-left: 0px;
}

.honeymoon-photo {
  width: 800px;
  height: 600px;
  border-radius: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: black;
  padding-right: 200px;
  margin-top: 0px;
}

.honeymoon-photo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: center;
  border-radius: 0px;
}

.honeymoon-text {
  width: 50%;
  text-align: center;
  padding: 20px;
}

/* .ribbon {
  position: absolute;
  top: 50%;
  left: 48.9%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 200px;
  pointer-events: none;
} */

/* .songs {
  color: white;
  text-align: center;
  background-color: black;
  padding-top: 10px;
  padding-bottom: 5px;
  font-size: 20px;
} */

.sharing {
  color: white;
  text-align: center;
  background-color: #b67f44;
  padding-bottom: 10px;
  padding-top: 10px;
  font-size: 20px;
  line-height: 0.5;
}

.photo-sharing {
  background-color: #b67f44;
  padding-bottom: 10px;
  padding-top: 10px;
}

.photos:link,
.photos:visited {
  border: 2px solid white;
  border-radius: 5px;
  color: white;
  background-color: transparent;
  font-size: 20px;
  font-family: "Lucida Handwriting";
  text-decoration: none;
  cursor: pointer;
  padding: 15px;
  display: block;
  margin: 20px auto;
  text-align: center;
  width: fit-content;
}

.photos:hover,
.photos:active {
  border: 2px solid white;
  border-radius: 5px;
  color: black;
  background-color: white;
}

.worship {
  background-color: #f6f1ed;
  color: black;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 40px;
  text-align: center;
}

.worship-title {
  margin-bottom: 50px;
  color: black;
  font-size: 25px;
}

.end-verse-1 {
  margin-bottom: 50px;
}

.end-verse-2 {
  margin-bottom: 50px;
}

.end-verse-3 {
  margin-bottom: 50px;
}

.end-verse-4 {
  margin-bottom: 50px;
}

.end-verse-5 {
  margin-bottom: 50px;
}

.end-verse-6 {
  margin-bottom: 50px;
}

.end-verse-7 {
  margin-bottom: 50px;
}

.verse-1 {
  line-height: 0.5;
  font-size: 20px;
}

.verse-2 {
  line-height: 0.5;
  font-size: 20px;
}

.verse-3 {
  line-height: 0.5;
  font-size: 20px;
}

.verse-4 {
  line-height: 0.5;
  font-size: 20px;
}

.verse-5 {
  line-height: 0.5;
  font-size: 20px;
}

.verse-6 {
  line-height: 0.5;
  font-size: 20px;
}

.verse-7 {
  line-height: 0.5;
  font-size: 20px;
}

.footer {
  font-size: 16px;
  color: #fff;
  text-align: center;
  background-color: black;
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 0;
}

@media only screen and (min-width: 601px) and (max-width: 900px) {
  /* ---------- GLOBAL ---------- */
  h1 {
    font-size: 50px;
  }

  h3 {
    font-size: 40px;
    line-height: 1.1;
  }

  p {
    font-size: 18px;
  }

  /* ---------- VIDEO SECTION ---------- */
  .video-content {
    padding: 0 30px;
    top: 52%;
  }

  /* ---------- RSVP SECTION ---------- */
  .rsvp-image {
    width: 100%;
  }

  .rsvp-header {
    font-size: 35px;
  }

  .rsvp-text {
    font-size: 18px;
  }

  .border {
    width: 60%;
    bottom: -60px;
  }

  /* ---------- VENUE SECTION ---------- */
  .venue-content {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
  }

  .venue-box,
  .venue-text {
    width: 100%;
  }

  .venue-map {
    width: 100%;
    height: auto;
    padding-right: 0;
  }

  .venue-map iframe {
    width: 100%;
    height: 320px;
    padding-left: 0;
  }

  /* ---------- DRESS CODE ---------- */
  .dresscode-content {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
  }

  .dresscode-box {
    width: 100%;
    margin-left: 0;
    padding: 20px;
    font-size: 18px;
  }

  .dresscode-photo {
    width: 100%;
    height: auto;
    padding: 10px 10px;
    justify-content: center;
    align-items: center;
  }

  .dresscode-photo img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* ---------- ACCOMMODATION ---------- */
  .accommodation {
    font-size: 18px;
    padding: 10px;
  }

  .accommodation-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }

  .hotel-card img {
    height: 210px;
  }

  /* ---------- HONEYMOON ---------- */
  .honeymoon-content {
    flex-direction: column;
    gap: 5px;
    padding: 0px 10px;
  }

  .honeymoon-box,
  .honeymoon-text {
    width: 100%;
    padding: 5px 15px;
    font-size: 20px;
  }

  .honeymoon-photo {
    width: 100%;
    height: auto;
    padding: 20px 10px;
  }

  /* ---------- SHARING ---------- */
  .sharing {
    color: white;
    text-align: center;
    background-color: #b67f44;
    padding: 10px;
    font-size: 22px;
    line-height: 1.5;
  }
  .photos {
    font-size: 20px;
    line-height: 1.1;
  }

  /* ---------- WORSHIP ---------- */
  .worship {
    font-size: 34px;
    padding: 10px 20px;
  }

  .worship-title {
    font-size: 22px;
  }

  .verse-1,
  .verse-2,
  .verse-3,
  .verse-4,
  .verse-5,
  .verse-6,
  .verse-7 {
    font-size: 19px;
    line-height: 1.5;
  }

  /* ---------- FOOTER ---------- */
  .footer {
    font-size: 15px;
    padding: 18px;
  }
}

@media only screen and (max-width: 600px) {
  /* ---------- GLOBAL ---------- */
  h1 {
    font-size: 50px;
  }

  h3 {
    font-size: 34px;
    line-height: 1.2;
  }

  p {
    font-size: 16px;
  }

  /* ---------- VIDEO SECTION ---------- */
  .video-content {
    top: 55%;
    padding: 0 15px;
  }

  /* ---------- RSVP SECTION ---------- */
  .rsvp-image {
    width: 100%;
  }

  .rsvp-header {
    font-size: 35px;
  }

  .rsvp-text {
    font-size: 16px;
  }

  .border {
    width: 60%;
    bottom: -60px;
  }

  /* ---------- VENUE SECTION ---------- */
  .venue-content {
    flex-direction: column;
    gap: 20px;
    padding: 20px 10px;
  }

  .venue-box,
  .venue-text {
    width: 100%;
  }

  .venue-map {
    width: 100%;
    height: auto;
    padding-right: 0;
  }

  .venue-map iframe {
    width: 100%;
    height: 250px;
    padding-left: 0;
  }

  /* ---------- DRESS CODE ---------- */
  .dresscode-content {
    flex-direction: column;
    gap: 20px;
    padding: 0px 10px;
  }

  .dresscode-box {
    width: 100%;
    margin-left: 0;
    padding: 0px;
    font-size: 16px;
  }

  .dresscode-photo {
    width: 100%;
    height: auto;
    padding: 10px 10px;
    justify-content: center;
    align-items: center;
  }

  .dresscode-photo img {
    width: 100%;
    height: auto;
    object-fit: conyain;
  }

  /* ---------- ACCOMMODATION ---------- */
  .accommodation {
    font-size: 16px;
    padding: 10px;
  }

  .accommodation-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .hotel-card img {
    height: 200px;
  }

  /* ---------- HONEYMOON ---------- */
  .honeymoon-content {
    flex-direction: column;
    gap: 5px;
    padding: 0px 10px;
  }

  .honeymoon-box,
  .honeymoon-text {
    width: 100%;
    padding: 5px 15px;
    font-size: 18px;
  }

  .honeymoon-photo {
    width: 100%;
    height: auto;
    padding: 20px 10px;
  }

  /* ---------- SHARING ---------- */
  .sharing {
    color: white;
    text-align: center;
    background-color: #b67f44;
    padding: 10px;
    font-size: 20px;
    line-height: 1.5;
  }

  .photos {
    font-size: 18px;
  }

  /* ---------- WORSHIP ---------- */
  .worship {
    font-size: 28px;
    padding: 5px 10px;
  }

  .worship-title {
    font-size: 20px;
  }

  .verse-1,
  .verse-2,
  .verse-3,
  .verse-4,
  .verse-5,
  .verse-6,
  .verse-7 {
    font-size: 17px;
    line-height: 1;
  }

  /* ---------- FOOTER ---------- */
  .footer {
    font-size: 14px;
    padding: 15px;
  }
}

/* @media (max-width: 1024px) {
  header {
    font-size: 25px;
    padding-top: 2.5px;
    padding-bottom: 2.5px;
  }

  .background-video {
    width: 100%;
  }
} */

/*@media (max-width: 992px) {
  header {
    font-size: 25px;
    padding-top: 2.5px;
    padding-bottom: 2.5px;
  }

  .background-video {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  header {
    font-size: 25px;
    padding-top: 2.5px;
    padding-bottom: 2.5px;
  }

  .background-video {
    width: 100%;
  }
} */
