@import url('https://fonts.googleapis.com/css2?family=Charm:wght@400;700&display=swap');

/* General styles */
body {
  font-family: "Charm", serif;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  color: #333;
}

header {
  background-color: #32827e;
  color: #fff;
  padding: 20px;
  text-align: center; /* Ensures the content is centered horizontally */
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center; /* Centers items horizontally */
  align-items: center;
  flex-direction: column; /* Stacks title and nav vertically */
}

.header-title {
  font-size: 2rem;
  margin: 0 0 10px 0; /* Adds space below the title */
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex; /* Ensures list items are displayed side by side */
  justify-content: center; /* Centers the navigation items */
}

nav li {
  margin: 0;
}

nav li:not(:last-child)::after {
  content: "|"; /* Adds the separator between items */
  margin: 0 10px;
  color: #fff; /* Matches the color of the text */
}

nav a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  padding: 5px 10px;
  transition: color 0.3s;
}

nav a:hover {
  color: #0000ff; /* Changes link color on hover */
}

/* Style for the current page */
a.current-page {
  text-decoration: underline; /* Underlines the current page link */
  font-weight: bold; /* Optional: makes the current link stand out more */
  /* color: #50C878; /* Optional: different color for the active link */
}
.wave-container {
  width: 100%;
  height: auto;
  padding: 300px 0px 400px 0px; /* Adds top and bottom margins */
  background-image: url('images/wave-top.png'), url('images/wave-bottom.png');
  background-position: top, bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: 100% auto, 100% auto; /* Ensures the images stretch to fit the container width */
}

.wave-container h1 {
  text-align: center;
  margin: 0;
  color: #32827e;
  font-size: 3rem; /* Larger font size */
}

.wave-container h2 {
  text-align: center;
  margin: 0;
  padding: 50px 0;
  color: #32827e;
}

.wave-container h3 {
  text-align: center;
  margin: 0;
  padding: 0 0;
  color: #32827e;
}

.photo-container {
  margin: 0;
}

.photo-container img {
  display: block; /* Ensures the image behaves as a block element */
  margin: 0;      /* Removes any default margins */
}

.thank-you-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 120px 20px 20px 20px;
  height: 300px;
  width: 40%; /* Sets the width to 50% of the page */
  margin: 0 auto; /* Centers the container horizontally */
}

.thank-you-column {
  flex: 1;
  text-align: center;
}

.vertical-bar {
  width: 2px;
  background-color: #32827e;
  height: auto;
}

@media (max-width: 768px) {
  .thank-you-container {
    flex-direction: column;
    gap: 10px;
    width: 80%; /* Ensures full width on smaller screens */
  }

  .schedule-content {
    flex-direction: column;
    gap: 10px;
  }

  .vertical-bar {
    display: none;
  }
}

.schedule-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin: 0 auto;
}

.schedule-container h2 {
  font-size: 2rem;
  color: #32827e;
  margin-bottom: 20px;
}

.schedule-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.schedule-container li {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.schedule-container li:last-child {
  border-bottom: none;
}

.schedule-container time {
  font-weight: bold;
  color: #32827e;
}

.schedule-container p {
  margin: 5px 0 0 0;
  color: #333;
}

@media (max-width: 768px) {
  .schedule-container {
    padding: 30px 10px;
    width: 90%;
  }

  .schedule-container h2 {
    font-size: 1.5rem;
  }
}

.schedule-content {
  display: flex;
  justify-content: center;
  align-items: stretch; /* Aligns items to the top */
  gap: 20px; /* Space between columns */
  padding: 20px; /* Adjusted padding for a cleaner layout */
  width: 80%; 
  margin: 0 auto; /* Centers the container horizontally */
}

.schedule-content {
  align-items: stretch;
}


.schedule-column {
  flex: 1;
  text-align: center;
}

.schedule-column p {
  padding: 5px 0;
}

.video-container {
  position: relative;
  width: 100%; /* Full width */
  padding-bottom: 56.25%; /* Aspect ratio for 16:9 */
  height: 0; /* Reset height */
  overflow: hidden; /* Ensures no content spills out */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
}
