<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Base styles */
html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/* Common section styles */
section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center; 
  flex-direction: column;
  position: relative; 
  width: 100%;
  min-height: 100vh;
  padding: 4rem 0;
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero section */
.hero {
  color: #eae4cc;
  background-image: url('img/optimized/page-1-large.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

.hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  width: 100%;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero__logo {
  padding-top: 2em;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.hero__logo-image {
  max-width: 100%;
  height: auto;
  width: 108px; /* 10% smaller than 120px */
}

.hero__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  text-align: center;
  width: 100%;
  margin-top: -5%; /* Move content up */
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2em; /* Add some space between title and footer content */
}

.hero__heading {
  margin: 0;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

.hero__heading-image {
  max-width: 100%;
  height: auto;
  width: 800px; /* Adjust this value based on your image size */
}

.hero__subheading {
  margin: 0;
  font-family: 'Pinyon Script';
  font-size: 3rem;
  font-weight: lighter;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.6s;
  color: rgba(234, 228, 204, 0.8);
  text-shadow: 0 0 1px rgba(234, 228, 204, 0.3);
}

.hero__details {
  text-align: center;
  font-family: 'TT Hoves';
  font-size: 1.5rem;
  padding-bottom: 2em;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.9s;
  margin-top: auto; /* Push details to bottom */
}

.hero__date,
.hero__location {
  display: block;
  font-style: normal;
  margin: 0.2em 0;
}

/* Invitation section */
.invitation {
  background-color: #e6ddd0;
  min-height: 100vh;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.invitation.active {
  opacity: 1;
  transform: translateY(0);
}

.invitation__content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  background-image: url('img/optimized/page-2-large.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 80%;
  min-height: 80vh;
  flex-direction: column;
  gap: 1.5em;
  padding-bottom: 5%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
}

.invitation.active .invitation__content {
  opacity: 1;
  transform: translateY(0);
}

.invitation__text {
  font-family: 'Pinyon Script';
  color: #eae4cc;
  font-size: 3rem;
  font-style: oblique;
  font-weight: 100;
  margin: 0;
}

.invitation__rsvp-button {
  display: inline-block;
  padding: 0.8em 2.5em;
  background-color: transparent;
  border: 2px solid #eae4cc;
  color: #eae4cc;
  font-family: 'TT Hoves';
  font-size: 1.1em;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin-bottom: 1em;
}

.invitation__rsvp-button:hover {
  background-color: #eae4cc;
  color: #2f556e;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.invitation__rsvp-button:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Story section */
.story {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  position: relative;
}

.story-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('img/optimized/coral-beige-background-large.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.story.active {
  opacity: 1;
  transform: translateY(0);
}

.story__content {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 3em;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
}

.story.active .story__content {
  opacity: 1;
  transform: translateY(0);
}

.story__media {
  position: relative;
  padding-top: 1em;
  z-index: 2;
  flex: 1;
  height: 100%;
}

.story__heading {
  font-family: 'Astone Nouvea';
  font-size: 2em;
  text-transform: uppercase;
  font-weight: 100;
  margin: 0;
  color: #2f556e;
  font-style: normal;
  letter-spacing: 0.15em;
  line-height: 1.2;
  align-self: flex-start;
  margin-top: 10%;
}

.story__text {
  color: #ffffff;
  font-family: 'TT Hoves';
  margin-top: 1em;
}

.story__photo-container {
  display: flex;
  gap: 1em;
  justify-content: center;
  align-items: center;
  padding: 2em;
  height: 100%;
  max-width: 100%;
  overflow-x: hidden;
  flex-wrap: wrap;
}

.story__photo {
  width: 300px;
  height: 400px;
  border-radius: 12px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.story__photo:hover {
  transform: scale(1.05);
}

.left-window-photo {
  background-image: url('img/optimized/left-window-photo-large.png');
  background-size: contain;
}

.middle-window-photo {
  background-image: url('img/optimized/middle-window-photo-large.png');
  background-size: contain;
}

.right-window-photo {
  background-image: url('img/optimized/right-window-photo-large.png');
  background-size: contain;
}

.left-hand-drawing, .right-hand-drawing {
  width: 150px;  /* 50% of the 300px window photo width */
  height: 200px; /* 50% of the 400px window photo height */
  background-size: contain;
}

.left-hand-drawing {
  background-image: url('img/optimized/left-hand-drawing-large.png');
}

.right-hand-drawing {
  background-image: url('img/optimized/right-hand-drawing-large.png');
}

.proposal {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  position: relative;
}

.proposal-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('img/optimized/photo-collage-large.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.proposal.active {
  opacity: 1;
  transform: translateY(0);
}

.proposal__video-container {
  position: relative;
  width: 50%; /* Changed to 50% of screen width */
  max-width: 600px;
  margin: 0 auto;
  padding: 2em;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
}

.proposal.active .proposal__video-container {
  opacity: 1;
  transform: translateY(0);
}

.proposal__video-container iframe {
  width: 100%;
  aspect-ratio: 9/16;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Wedding venues section */
.wedding-venues {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 6em 2em;
  box-sizing: border-box;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.wedding-venues-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/optimized/blue-background-large.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  opacity: 1;
}

.wedding-venues__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  text-align: center;
  background: transparent;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.wedding-venues.active .wedding-venues__content {
  opacity: 1;
  transform: translateY(0);
}

.wedding-venues__heading {
  font-family: 'Astone Nouvea';
  font-style: normal;
  font-weight: 200;
  color: #2f556e;
  font-size: 3.5em;
  margin: 0 0 1.5em 0;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.wedding-venues__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3em;
  padding: 2em;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.venue-card {
  background: transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 2em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  box-sizing: border-box;
  overflow: visible;  /* Changed from hidden to visible */
  height: 100%;  /* Added height */
}

.venue-card:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.venue-card__image {
  width: 100%;
  margin-bottom: 1.5em;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 280px;  /* Reduced from 320px */
  max-height: 320px;
  padding: 0.5em;
  box-sizing: border-box;
}

.venue-card__photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  padding: 1em;
}

.venue-card:hover .venue-card__photo {
  transform: scale(1.05);
}

.venue-card:hover .venue-card__image {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

.venue-card__title {
  font-family: 'Pinyon Script';
  color: #2f556e;
  font-size: 2.5em;
  font-style: lighter;
  margin: 0 0 0.5em 0;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.venue-card__details {
  font-family: 'TT Hoves';
  color: #2f556e;
  font-size: 1.2em;
  margin: 0.3em 0;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.venue-card__address,
.venue-card__time {
  font-family: 'TT Hoves';
  color: #557a96;
  margin: 0.2em 0;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.church-image {
  background-image: url('img/optimized/church-photo-large.png');
}

.reception-image {
  background-image: url('img/optimized/reception-icon-large.png');
}

/* Wedding timeline section */
.wedding-timeline {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 4em 2em;
  box-sizing: border-box;
  overflow: hidden;
}

.wedding-timeline-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('img/optimized/blue-background-large.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.wedding-timeline.background_active .wedding-timeline-background {
  opacity: 1;
}

.wedding-timeline__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
}

.wedding-timeline.active .wedding-timeline__content {
  opacity: 1;
  transform: translateY(0);
}


.wedding-timeline__image {
  flex: 1;
  width: 100%;
  max-width: 1200px;
  margin: 2em auto;
  border-radius: 12px;
  overflow: hidden;
  background-image: url('img/optimized/timeline-large.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 16/9;
}

.wedding-timeline__heading {
  font-family: 'Astone Nouvea';
  font-style: normal;
  font-weight: 200;
  color: #2f556e;
  font-size: 3.5em;
  margin: 0 0 1.5em 0;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.wedding-timeline__note {
  font-family: 'TT Hoves';
  color: #2f556e;
  font-size: 1.2em;
  margin: 0.3em 0;
}

/* Guest attire section */
.guest-attire {
  background-image: url('img/optimized/beige-background-large.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4em 2em;
  box-sizing: border-box;
  overflow-x: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.guest-attire.active {
  opacity: 1;
  transform: translateY(0);
}

.guest-attire__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
}

.guest-attire.active .guest-attire__content {
  opacity: 1;
  transform: translateY(0);
}

.guest-attire__heading {
  font-family: 'Astone Nouvea';
  font-style: normal;
  font-weight: 200;
  color: #6d532a;
  font-size: 4.5em;
  margin: 0 0 1.5em 0;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out 0.6s, transform 1s ease-out 0.6s;
}

.guest-attire.active .guest-attire__heading {
  opacity: 1;
  transform: translateY(0);
}

.guest-attire__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3em;
  padding: 0 10%;
  width: 100%;
  margin: 0 auto;
  align-items: start;
  justify-content: center;
}

.guest-attire-card {
  border-radius: 12px;
  padding: 3em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: none;
  margin: 0;
}

.guest-attire-card__title {
  font-family: 'Pinyon Script';
  color: #6d532a;
  font-size: 3em;
  font-style: lighter;
  margin: 0 0 0.8em 0;
}

.guest-attire-card__image {
  width: 100%;
  margin-bottom: 2em;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 280px;
  max-height: 320px;
}

.guest-attire-card__description {
  font-family: 'TT Hoves';
  color: #6d532a;
  font-size: 1.4em;
  margin: 0.5em 0;
  text-align: center;
  line-height: 1.4;
}

.ladies-image {
  background-image: url('img/optimized/guest-dresscode-women-large.png');
}

.semi-formal-image {
  background-image: url('img/optimized/guest-color-palette-default-large.png');
}

.gentlemen-image {
  background-image: url('img/optimized/guest-dresscode-men-large.png');
}

/* Entourage section */
.entourage {
  background-image: url('img/optimized/beige-background-large.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4em 2em;
  box-sizing: border-box;
  overflow-x: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.entourage.active {
  opacity: 1;
  transform: translateY(0);
}

.entourage__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
}

.entourage.active .entourage__content {
  opacity: 1;
  transform: translateY(0);
}

.entourage__heading {
  font-family: 'Astone Nouvea';
  font-style: normal;
  font-weight: 200;
  color: #6d532a;
  font-size: 4.5em;
  margin: 0 0 1.5em 0;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out 0.6s, transform 1s ease-out 0.6s;
}

.entourage.active .entourage__heading {
  opacity: 1;
  transform: translateY(0);
}

.entourage__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3em;
  padding: 0 10%;
  width: 100%;
  margin: 0 auto;
  align-items: start;
  justify-content: center;
}

.entourage-card {
  border-radius: 12px;
  padding: 3em;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: none;
  margin: 0;
}

.entourage-card__title {
  font-family: 'Pinyon Script';
  color: #6d532a;
  font-size: 3em;
  font-style: lighter;
  margin: 0 0 0.8em 0;
}

.entourage-card__image {
  width: 100%;
  margin-bottom: 2em;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 280px;
  max-height: 320px;
}

.entourage-card__description {
  font-family: 'TT Hoves';
  color: #6d532a;
  font-size: 1.4em;
  margin: 0.5em 0;
  text-align: center;
  line-height: 1.4;
}

.principal-sponsors-image {
  background-image: url('img/optimized/entourage-dresscode-large.png');
}

.formal-image {
  background-image: url('img/optimized/entourage-color-palette-default-large.png');
}

.bridesmaids-groomsmen-image {
  background-image: url('img/optimized/entourage-dresscode-men-large.png');
}

/* Principal Sponsors section */
.principal-sponsors {
  background-image: url('img/optimized/beige-background-large.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4em 2em;
  box-sizing: border-box;
  overflow-x: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.principal-sponsors.active {
  opacity: 1;
  transform: translateY(0);
}

.principal-sponsors__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
}

.principal-sponsors.active .principal-sponsors__content {
  opacity: 1;
  transform: translateY(0);
}

.principal-sponsors__heading {
  font-family: 'Astone Nouvea';
  font-style: normal;
  font-weight: 200;
  color: #6d532a;
  font-size: 4.5em;
  margin: 0 0 1.5em 0;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out 0.6s, transform 1s ease-out 0.6s;
}

.principal-sponsors.active .principal-sponsors__heading {
  opacity: 1;
  transform: translateY(0);
}

.principal-sponsors__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3em;
  padding: 0 10%;
  width: 100%;
  margin: 0 auto;
  align-items: start;
  justify-content: center;
}

.principal-sponsors__footer {
  width: 100%;
  text-align: center;
  padding: 0 10%;
  margin-top: auto;
}

.principal-sponsors__footer-text {
  font-family: 'Astone Nouvea';
  font-style: normal;
  font-weight: 200;
  color: #6d532a;
  font-size: 2.5em;
  margin: 0;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.principal-sponsors-card {
  border-radius: 12px;
  padding: 3em;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.principal-sponsors-card__title {
  font-family: 'Pinyon Script';
  color: #6d532a;
  font-size: 3em;
  font-style: lighter;
  margin: 0 0 0.8em 0;
}

.principal-sponsors-card__image {
  width: 100%;
  margin-bottom: 2em;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 280px;
  max-height: 320px;
}

.principal-sponsors-card__description {
  font-family: 'TT Hoves';
  color: #6d532a;
  font-size: 1.4em;
  margin: 0.5em 0;
  text-align: center;
  line-height: 1.4;
}

.sponsors-ladies-image {
  background-image: url('img/optimized/principal-sponsors-dresscode-women-large.png');
}

.sponsors-color-palette-image {
  background-image: url('img/optimized/principal-sponsor-color-palette-default-large.png');
}

.sponsors-gentlemen-image {
  background-image: url('img/optimized/principal-sponsor-dresscode-men-large.png');
}

/* Font faces */
@font-face {
  font-family: 'TT Hoves';
  src: url('fonts/TT-Hoves-Pro-Trial-Thin.ttf') format('truetype');
}

@font-face {
  font-family: 'Astone Nouvea';
  src: url('fonts/Astone-Nouvea.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Pinyon Script';
  src: url('fonts/PinyonScript-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: lighter;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Playfair Display Italic';
  src: url('fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Responsive styles */
@media screen and (max-width: 1200px) {
  .hero {
    background-image: url('img/optimized/page-1-medium.jpg');
  }
  .hero__logo-image {
    content: url('img/optimized/logo-medium.png');
    width: 90px; /* 10% smaller than 100px */
  }
  .hero__heading-image {
    content: url('img/optimized/title-medium.png');
    width: 600px;
  }
  .hero__subheading {
    font-size: 2.5rem;
    color: rgba(234, 228, 204, 0.75);
  }
  .invitation__content {
    background-image: url('img/optimized/page-2-medium.jpg');
  }
  .church-image {
    background-image: url('img/optimized/church-photo-medium.png');
  }
  .reception-image {
    background-image: url('img/optimized/reception-icon-medium.png');
  }
  .venue-card__image {
    min-height: 280px;
    max-height: 300px;
  }
}

@media screen and (max-width: 500px) {
  .hero__logo-image {
    content: url('img/optimized/logo-small.png');
    width: 72px; /* 10% smaller than 80px */
  }
  .hero__heading {
    font-size: 5em;
  }
  .hero__heading-image {
    content: url('img/optimized/title-small.png');
    width: 300px;
  }
  .hero__subheading {
    font-size: 1.8rem;
    color: rgba(234, 228, 204, 0.65);
    text-shadow: 0 0 0.5px rgba(234, 228, 204, 0.2);
  }
  .hero__details {
    font-size: 1em;
  }
  .hero {
    background-image: url('img/optimized/page-1-mobile-small.jpg');
  }
  .invitation__content {
    background-image: url('img/optimized/page-2-small.jpg');
  }
  .invitation__text {
    font-size: 1.5rem;
    font-weight: 100;
    text-shadow: 0 0 0.5px rgba(234, 228, 204, 0.2);
  }
  .story {
    flex-direction: column;
  }
  .story-background {
    background-image: url('img/optimized/coral-beige-background-mobile-small.jpeg');
  }
  .story__content,
  .story__media {
    width: 100%;
  }

  .story__media {
    padding-bottom: 5%;
  }

  .wedding-venues {
    padding: 10%;
    flex-direction: column;
  }
  .wedding-venues__content,
  .wedding-venues__media {
    width: 100%;
    height: 50vh;
  }
  .wedding-venues__grid {
    padding: 20%;
  }
  .venue-card {
    padding: 20%;
  }
  .church-image {
    background-image: url('img/optimized/church-photo-small.png');
  }
  .reception-image {
    background-image: url('img/optimized/reception-icon-small.png');
  }
  .venue-card__image {
    min-height: 160px;
    max-height: 180px;
  }
}

@media screen and (max-width: 1440px) {
  .story__photo {
    width: 250px;
    height: 333px;
  }
  
  .left-hand-drawing, .right-hand-drawing {
    width: 125px;
    height: 166px;
  }
}

@media screen and (max-width: 1024px) {
  .wedding-venues {
    padding: 4em 1.5em;
  }

  .wedding-venues__grid {
    gap: 2em;
    padding: 1.5em;
  }

  .venue-card {
    padding: 1.5em;
  }
  
  .venue-card__image {
    min-height: 240px;
    max-height: 280px;
  }

  .story__photo-container {
    flex-direction: column;
    gap: 1em;
  }

  .story__photo {
    width: 250px;
    height: 333px;
  }

  .left-hand-drawing, .right-hand-drawing {
    width: 125px;  /* 50% of the 250px responsive window photo width */
    height: 166px; /* 50% of the 333px responsive window photo height */
  }

  .guest-attire__grid {
    gap: 1.5em;
    padding: 0 1em;
  }

  .guest-attire-card {
    padding: 2em;
  }

  .guest-attire-card__title {
    font-size: 2.5em;
  }

  .guest-attire-card__description {
    font-size: 1.2em;
  }

  .entourage-card {
    padding: 2em;
  }

  .entourage-card__title {
    font-size: 2.5em;
  }

  .entourage-card__image {
    min-height: 240px;
    max-height: 280px;
  }

  .entourage-card__description {
    font-size: 1.2em;
  }

  .principal-sponsors-card {
    padding: 2em;
  }

  .principal-sponsors-card__title {
    font-size: 2.5em;
  }

  .principal-sponsors-card__description {
    font-size: 1.2em;
  }

  .principal-sponsors__footer-text {
    font-size: 2em;
  }

  .wedding-timeline__image {
    max-width: 700px;
    background-image: url('img/optimized/timeline-medium.png');
  }

  .story-background {
    background-image: url('img/optimized/coral-beige-background-mobile-large.jpeg');
  }
}

@media screen and (max-width: 768px) {
  .proposal__video-container {
    width: 100%; /* Full width on mobile */
    max-width: 320px;
    padding: 1em;
  }
  
  .proposal__video-container iframe {
    aspect-ratio: 9/16;
    max-height: 85vh;
  }

  .semi-formal-image {
    background-image: url('img/optimized/guest-color-palette-mobile-large.png');
  }

  .formal-image {
    background-image: url('img/optimized/entourage-color-palette-mobile-large.png');
  }

  .wedding-venues {
    padding: 4em 1em;
    height: auto;
    min-height: auto;
  }

  .wedding-timeline {
    height: auto;
    min-height: 100vh;
    padding: 4em 1em;
  }

  .guest-attire {
    height: auto;
    min-height: 100vh;
    padding: 4em 0;
  }

  .wedding-venues__heading,
  .wedding-timeline__heading,
  .guest-attire__heading {
    font-size: 2.8em;
    margin: 0 0 1em 0;
  }

  .wedding-venues__grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    padding: 0 1em;
  }

  .venue-card {
    padding: 1.2em;
  }
  
  .venue-card__image {
    min-height: 110px;  /* Reduced from 220px */
    max-height: 130px;  /* Reduced from 260px */
  }
  .church-image {
    background-image: url('img/optimized/church-photo-small.png');
  }
  .reception-image {
    background-image: url('img/optimized/reception-icon-small.png');
  }

  .entourage {
    height: auto;
    min-height: 100vh;
    padding: 4em 0;
  }

  .entourage__heading {
    font-size: 2.8em;
    margin: 0 0 1em 0;
  }

  .invitation__text {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: lighter;
    text-shadow: 0 0 0.5px rgba(234, 228, 204, 0.2);
  }

  .principal-sponsors {
    height: auto;
    min-height: 100vh;
    padding: 4em 0;
  }

  .principal-sponsors__heading {
    font-size: 2.8em;
    margin: 0 0 1em 0;
  }

  .principal-sponsors-card__description {
    font-size: 1.2em;
  }

  .principal-sponsors__footer-text {
    font-size: 1.8em;
    letter-spacing: 0.1em;
  }

  .wedding-timeline__image {
    max-width: 500px;
  }

  .guest-attire-card:nth-child(2),
  .entourage-card:nth-child(2),
  .principal-sponsors-card:nth-child(2) {
    margin-top: 0;
    padding: 0 3em;
  }

  .hero__subheading {
    font-size: 2.2rem;
    color: rgba(234, 228, 204, 0.7);
  }
}

@media screen and (max-width: 480px) {
  .wedding-venues {
    padding: 3em 1em;
  }

  .wedding-venues__heading,
  .wedding-timeline__heading,
  .guest-attire__heading {
    font-size: 1.8em;
    letter-spacing: 0.08em;
    margin: 0 0 0.8em 0;
  }

  .wedding-venues__grid {
    max-width: 400px;  /* Increased from 250px */
    padding: 0.8em;
  }

  .venue-card {
    padding: 1em;
  }

  .venue-card__title {
    font-size: 1.8em;
    margin: 0 0 0.3em 0;
  }

  .venue-card__details {
    font-size: 0.9em;
    line-height: 1.3;
  }

  .venue-card__address,
  .venue-card__time {
    font-size: 0.8em;
  }

  .guest-attire__grid {
    padding: 0 2%;
  }

  .guest-attire-card__title {
    font-size: 2em;
  }

  .guest-attire-card__image {
    min-height: 250px;
    max-height: 300px;
  }

  .guest-attire-card__description {
    font-size: 1.1em;
  }

  .entourage__heading {
    font-size: 1.8em;
    letter-spacing: 0.08em;
    margin: 0 0 0.8em 0;
  }

  .entourage-card {
    padding: 1.5em;
  }

  .entourage-card__title {
    font-size: 2em;
  }

  .entourage-card__image {
    min-height: 200px;
    max-height: 240px;
  }

  .entourage-card__description {
    font-size: 1.1em;
  }

  .principal-sponsors {
    padding: 2em 0;
  }

  .principal-sponsors__heading {
    font-size: 1.8em;
    letter-spacing: 0.08em;
    margin: 0 0 0.8em 0;
  }

  .principal-sponsors__grid {
    padding: 0 10%;
  }

  .principal-sponsors-card {
    padding: 1.5em;
  }

  .principal-sponsors-card__title {
    font-size: 2em;
  }

  .principal-sponsors-card__description {
    font-size: 1.1em;
  }

  .principal-sponsors__footer-text {
    font-size: 1.5em;
    letter-spacing: 0.08em;
  }

  .wedding-timeline__image {
    max-width: 250px;
    background-image: url('img/optimized/timeline-vertical-small.png');
    aspect-ratio: 9/16;
  }

  .hero__subheading {
    font-size: 1.4rem;
    color: rgba(234, 228, 204, 0.6);
    text-shadow: 0 0 0.3px rgba(234, 228, 204, 0.15);
  }
}

/* Extra small devices */
@media screen and (max-width: 320px) {
  .wedding-venues,
  .wedding-timeline,
  .guest-attire {
    padding: 1em 0.3em;
    min-height: auto;
    height: auto;
  }

  .wedding-venues__heading,
  .wedding-timeline__heading,
  .guest-attire__heading {
    font-size: 1.2em;
    letter-spacing: 0.05em;
    margin: 0 0 0.5em 0;
  }

  .wedding-venues__grid {
    max-width: 200px;
    padding: 0 0.5em;
  }

  .venue-card {
    padding: 0.8em;
  }

  .venue-card__image {
    min-height: 160px;
    max-height: 180px;
  }

  .venue-card__photo {
    padding: 0.3em;
  }

  .venue-card__title {
    font-size: 1.2em;
    margin: 0 0 0.2em 0;
  }

  .venue-card__details {
    font-size: 0.7em;
    margin: 0.15em 0;
    line-height: 1.2;
  }

  .venue-card__address,
  .venue-card__time {
    font-size: 0.65em;
    margin: 0.1em 0;
    line-height: 1.2;
  }

  .invitation {
    height: 100vh;
  }

  .invitation__content {
    width: 90%;
  }

  .invitation__text {
    font-size: 1.5rem;
    padding-bottom: 3%;
  }

  .venue-card__image {
    min-height: 160px;
    max-height: 180px;
  }

  .guest-attire-card__title {
    font-size: 1.2em;
    margin: 0 0 0.2em 0;
  }

  .guest-attire-card__description {
    font-size: 0.8em;
    margin: 0.15em 0;
    line-height: 1.2;
  }

  .entourage {
    padding: 1em 0;
    min-height: auto;
    height: auto;
  }

  .entourage-card {
    padding: 0.5em;
  }

  .entourage-card__image {
    min-height: 160px;
    max-height: 200px;
  }

  .entourage-card__title {
    font-size: 1.2em;
    margin: 0 0 0.2em 0;
  }

  .entourage-card__description {
    font-size: 0.8em;
    margin: 0.15em 0;
    line-height: 1.2;
  }

  .principal-sponsors-card {
    padding: 0.5em;
  }

  .wedding-timeline__image {
    max-width: 380px;
  }

  .hero__subheading {
    font-size: 1.4rem;
    color: rgba(234, 228, 204, 0.6);
    text-shadow: 0 0 0.3px rgba(234, 228, 204, 0.15);
  }
}

/* Ultra small devices */
@media screen and (max-width: 280px) {
  .wedding-venues,
  .wedding-timeline,
  .guest-attire {
    padding: 0.8em 0.2em;
  }

  .wedding-venues__heading,
  .wedding-timeline__heading,
  .guest-attire__heading {
    font-size: 1em;
    margin: 0 0 0.4em 0;
  }

  .wedding-venues__grid {
    gap: 0.6em;
  }

  .venue-card {
    padding: 0.4em;
  }

  .venue-card__title {
    font-size: 1em;
  }

  .venue-card__details {
    font-size: 0.65em;
  }

  .venue-card__address,
  .venue-card__time {
    font-size: 0.6em;
  }

  .invitation__content {
    width: 95%;
  }

  .invitation__text {
    font-size: 1.2rem;
  }

  .venue-card__image {
    min-height: 160px;
    max-height: 180px;
    padding: 0.2em;
  }

  .entourage {
    padding: 0.8em 0;
  }

  .entourage__heading {
    font-size: 1em;
    margin: 0 0 0.4em 0;
  }

  .principal-sponsors__heading {
    font-size: 1em;
    margin: 0 0 0.4em 0;
  }

  .principal-sponsors__footer-text {
    font-size: 0.9em;
  }

  .wedding-timeline__image {
    max-width: 280px;
  }

  .hero__subheading {
    font-size: 1.4rem;
    color: rgba(234, 228, 204, 0.6);
    text-shadow: 0 0 0.3px rgba(234, 228, 204, 0.15);
  }
}

/* Handle very small heights */
@media screen and (max-height: 500px) {
  section {
    min-height: auto;
    height: auto;
    padding: 1em 0;
  }


  .wedding-venues {
    min-height: auto;
    height: auto;
    padding: 1em 0.3em;
  }

  .venue-card {
    margin-bottom: 0.5em;
  }
}

/* FAQs section */
.faqs {
  background-color: #5286a8;
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 4em 2em;
  box-sizing: border-box;
  overflow: hidden;
}

.faqs__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
}

.faqs.active .faqs__content {
  opacity: 1;
  transform: translateY(0);
}

.faqs__heading {
  font-family: 'Astone Nouvea';
  font-style: normal;
  font-weight: 200;
  color: #eae4cc;
  font-size: 4.5em;
  margin: 0 0 1.5em 0;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.faqs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
  padding: 0 10%;
  width: 100%;
  margin: 0 auto;
}

.faq-item {
  border-radius: 12px;
  padding: 2em;
  text-align: left;
  transition: transform 0.3s ease;
  border: 2px solid #eae4cc;
}

.faq-item:hover {
  transform: translateY(-5px);
}

.faq-item__question {
  font-family: 'Pinyon Script';
  color: #eae4cc;
  font-size: 2em;
  margin: 0 0 0.5em 0;
  font-weight: normal;
  text-align: center;
}

.faq-item__answer {
  font-family: 'TT Hoves';
  color: #eae4cc;
  font-size: 1.2em;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* Add specific style for the middle cards */
.principal-sponsors-card:nth-child(2),
.guest-attire-card:nth-child(2),
.entourage-card:nth-child(2) {
  margin-top: 4em;  /* Add space at the top to move it down */
}

@media screen and (max-width: 1200px) {
  .wedding-venues-background,
  .wedding-timeline-background {
    background-image: url('img/optimized/blue-background-large.jpg');
  }
  
}

@media screen and (max-width: 768px) {
  .faqs {
    padding: 3em 1.5em;
  }

  .faqs__heading {
    font-size: 2.8em;
    margin-bottom: 1em;
  }

  .faqs__grid {
    grid-template-columns: 1fr;
    padding: 0 15%;
  }

  .faq-item {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 500px) {
  .faqs {
    padding: 2em 1em;
  }

  .faqs__heading {
    font-size: 2em;
  }

  .faqs__grid {
    padding: 0 10%;
  }

  .faq-item {
    padding: 1.5em;
  }

  .faq-item__question {
    font-size: 1.5em;
  }

  .faq-item__answer {
    font-size: 1em;
  }

  .guest-attire-card:nth-child(2),
  .entourage-card:nth-child(2),
  .principal-sponsors-card:nth-child(2) {
    padding: 0 2em;
  }

}

@media screen and (max-width: 320px) {
  .faqs__grid {
    padding: 0 5%;
  }

  .faq-item {
    padding: 1em;
  }

  .faq-item__question {
    font-size: 1.3em;
  }

  .faq-item__answer {
    font-size: 0.9em;
  }
}

/* Media queries */
@media screen and (max-width: 768px) {
  .faqs {
    padding: 3em 1.5em;
  }

  .faqs::before {
    background-image: url('img/optimized/dark-blue-background-large-mobile.jpg');
  }

  .faqs__heading {
    font-size: 2.8em;
    margin-bottom: 1em;
  }

  .faqs__grid {
    grid-template-columns: 1fr;
    padding: 0 15%;
  }

  .faq-item {
    max-width: 600px;
    margin: 0 auto;
  }

  .wedding-venues__grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    padding: 0 1em;
  }

  .guest-attire__grid {
    grid-template-columns: 1fr;
    gap: 2em;
    padding: 0 1%;
  }

  .entourage__grid {
    grid-template-columns: 1fr;
    gap: 2em;
    padding: 0;
  }

  .principal-sponsors__grid {
    grid-template-columns: 1fr;
    gap: 2em;
    padding: 0;
  }

  /* Reset margin for middle cards on mobile */
  .principal-sponsors-card:nth-child(2),
  .guest-attire-card:nth-child(2),
  .entourage-card:nth-child(2) {
    margin-top: 0 !important;  /* Use !important to ensure override */
  }
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(47, 85, 110, 0.95); /* Changed to dark blue with slight transparency */
  padding: 0.7rem 1rem;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar__logo {
  margin-left: -1rem;
  padding: 0.5rem 1rem;
}

.navbar__logo-image {
  width: 48px; /* Increased from 32px */
  height: auto;
  display: block;
}

.navbar.visible {
  transform: translateY(0);
}

.navbar__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.3s ease;
}

.navbar__toggle:hover {
  transform: scale(1.1);
}

.navbar__toggle-icon {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #eae4cc;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.navbar__toggle-icon::before,
.navbar__toggle-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #eae4cc;
  transition: all 0.3s ease-in-out;
  left: 0;
}

.navbar__toggle-icon::before {
  top: -8px;
}

.navbar__toggle-icon::after {
  top: 8px;
}

/* Active state for the toggle button */
.navbar__toggle.active .navbar__toggle-icon {
  background-color: transparent;
  transform: rotate(180deg);
}

.navbar__toggle.active .navbar__toggle-icon::before {
  transform: rotate(45deg);
  top: 0;
  background-color: #ffffff;
}

.navbar__toggle.active .navbar__toggle-icon::after {
  transform: rotate(-45deg);
  top: 0;
  background-color: #ffffff;
}

.navbar__menu {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.navbar__link {
  color: #eae4cc; /* Changed to light color for contrast */
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.navbar__link:hover {
  color: #ffffff; /* Changed hover color to white */
}

/* Mobile Styles */
@media (max-width: 768px) {
  .navbar {
    padding: 0.4rem 0.5rem;
    height: 60px; /* Fixed height for mobile */
  }

  .navbar__logo {
    margin-left: -0.5rem;
    padding: 0.4rem 0.5rem;
  }

  .navbar__logo-image {
    width: 40px;
  }

  .navbar__toggle {
    display: block;
    position: relative;
    right: 0;
    top: 0;
    z-index: 1001;
  }

  .navbar__menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: rgba(47, 85, 110, 0.95);
    padding: 1rem 0;
    gap: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    opacity: 0;
  }

  .navbar__menu.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }

  .navbar__link {
    display: block;
    padding: 0.8rem 1rem;
    text-align: center;
    font-size: 1.1rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }

  .navbar__menu.active .navbar__link {
    transform: translateY(0);
    opacity: 1;
  }

  /* Stagger the animation for each link */
  .navbar__menu.active .navbar__link:nth-child(1) { transition-delay: 0.1s; }
  .navbar__menu.active .navbar__link:nth-child(2) { transition-delay: 0.2s; }
  .navbar__menu.active .navbar__link:nth-child(3) { transition-delay: 0.3s; }
  .navbar__menu.active .navbar__link:nth-child(4) { transition-delay: 0.4s; }
  .navbar__menu.active .navbar__link:nth-child(5) { transition-delay: 0.5s; }
}

/* Extra small devices */
@media screen and (max-width: 320px) {
  .navbar {
    height: 50px; /* Slightly smaller height for very small devices */
  }

  .navbar__menu {
    top: 50px; /* Match navbar height */
  }

  .navbar__logo-image {
    width: 35px; /* Slightly smaller logo for very small devices */
  }

  .navbar__link {
    padding: 0.6rem 1rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .proposal__video-container {
    padding: 1em;
    max-width: 320px; /* Slightly smaller for tablets */
  }
  
  .proposal__video-container iframe {
    aspect-ratio: 9/16;
    max-height: 85vh;
  }
}

@media screen and (max-width: 480px) {
  .proposal__video-container {
    padding: 0.8em;
    max-width: 280px; /* Even smaller for mobile phones */
  }
  
  .proposal__video-container iframe {
    aspect-ratio: 9/16;
    max-height: 80vh;
  }
}

@media screen and (max-width: 320px) {
  .proposal__video-container {
    padding: 0.5em;
    max-width: 240px; /* Smallest for very small devices */
  }
  
  .proposal__video-container iframe {
    aspect-ratio: 9/16;
    max-height: 75vh;
  }
}</pre></body></html>