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

body {
  font-family: "Ysabeau Office", sans-serif;
  background-color: white;
  color: black;
  font-size: 1.125rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Platypi", serif;
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  border-bottom: 1px solid #e0e0e0;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo a,
.logo a:visited,
.logo a:hover,
.logo a:active {
  text-decoration: none;
  color: inherit;
}

.logo h1 {
  font-family: "Ysabeau Office", sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.logo p {
  font-family: "Ysabeau Office", sans-serif;
  font-size: 14px;
  margin-top: -5px;
  letter-spacing: 5px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: black;
  font-size: 16px;
  transition: color 0.3s;
}

nav a:hover {
  color: #666;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: auto;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: black;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Main Content */
main {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 50px;
}

main h1 {
  font-size: 48px;
  margin-bottom: 40px;
  font-weight: 400;
}

main h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

main p {
  margin-bottom: 25px;
}

main ul {
  list-style-position: outside;
  margin-left: 20px;
}

main li {
  margin-bottom: 15px;
}

/* Home Page Styles */
.home-main {
  text-align: center;
}

.photo-placeholder {
  width: 250px;
  height: 320px;
  background-color: #f0f0f0;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
}

/* Couples Page Styles */
.small-image {
  width: 275px;
  height: 116px;
  background-color: #f0f0f0;
  margin: 0 0 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
}

/* Suggested Reading Styles */
.reading-list p {
  margin-bottom: 15px;
}

/* Contact Page Styles */
.contact-main {
  max-width: 800px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-image {
  width: 100%;
  height: 400px;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
}

.contact-info h2 {
  font-size: 24px;
  margin-bottom: 10px;
  margin-top: 30px;
}

.contact-info h2:first-child {
  margin-top: 0;
}

.contact-info p {
  margin-bottom: 0;
}

/* Footer Styles */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
  border-top: 1px solid #e0e0e0;
  margin-top: 100px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
}

.footer-logo h2 {
  font-family: "Ysabeau Office", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.footer-logo a,
.footer-logo a:visited,
.footer-logo a:hover,
.footer-logo a:active {
  text-decoration: none;
  color: inherit;
}

.footer-logo p {
  font-family: "Ysabeau Office", sans-serif;
  font-size: 14px;
  margin-top: -3px;
  letter-spacing: 5px;
}

.book-button {
  background-color: gray;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  font-family: "Ysabeau Office", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.44px;
  border-radius: 20px;
  transition: background-color 0.3s;
  display: inline-block;
}

.book-button:hover {
  background-color: #555;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio (9/16 = 0.5625) */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  header {
    padding: 20px;
  }

  .hamburger {
    display: flex;
  }

  nav ul {
    position: absolute;
    top: 80px;
    right: 0;
    background-color: white;
    width: 100%;
    flex-direction: column;
    gap: 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  nav ul.active {
    max-height: 400px;
  }

  nav ul li {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  main {
    padding: 0 20px;
    margin: 40px auto;
  }

  main h1 {
    font-size: 36px;
  }

  .photo-placeholder {
    width: 100%;
    max-width: 250px;
    height: 320px;
  }

  .small-image {
    width: 100%;
    max-width: 275px;
    height: 116px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-image {
    height: 300px;
  }

  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
