<style>
:root {
  --ivory: #FBF9F6;
  --taupe: #6E6A65;
  --warmgray: #E6E2DD;
  --champagne: #C6B7A2;
}

html { scroll-behavior: smooth; }
body {
  background-color: #FBF9F6 !important;
}

body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background: var(--ivory);
  color: var(--taupe);
  line-height: 1.7;
}

/* BOTANICALS */
.botanical {
  position: fixed;
  top: 120px;
  width: 220px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.botanical.left { left: 0; }
.botanical.right { right: 0; }

/* HEADER */
.home-header {
  text-align: center;
  padding: 90px 20px 60px;
  position: relative;
  z-index: 1;
}

.names {
  font-family: 'Waterfall', cursive;
  font-size: 5rem;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 12px;
}


.date-location-top {
  font-size: 1rem;
  color: #8a857f;
  margin-bottom: 35px;
}

/* NAV */
nav { margin-bottom: 45px; }

.menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 26px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.menu a {
  text-decoration: none;
  color: var(--taupe);
  font-size: 0.95rem;
  padding-bottom: 4px;
}

.menu a:hover {
  border-bottom: 1px solid var(--champagne);
}

.hamburger {
  display: none;
  font-size: 1.7rem;
  cursor: pointer;
  margin-bottom: 25px;
}

/* IMAGE */
.home-image {
  max-width: 850px;
  margin: auto;
  padding: 12px;
  background: white;
  border: 1px solid var(--warmgray);
}

.home-image img {
  width: 100%;
  display: block;
}

/* INFO UNDER IMAGE */
.event-info {
  text-align: center;
  max-width: 600px;
  margin: 60px auto 0;
}

.event-info .date {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.event-info .location {
  font-size: 1rem;
  margin-bottom: 28px;
  color: #8a857f;
}

.event-info .description {
  font-size: 1rem;
  margin-bottom: 35px;
}
/* BUTTON */
.button {
  display: inline-block;
  padding: 14px 42px;
  background: var(--champagne);
  border: 1px solid var(--champagne);
  color: #000000;
  text-decoration: none;
  border-radius: 40px;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

/* Hover */
.button:hover {
  background: var(--taupe);
  border-color: var(--taupe);
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

/* Active (when clicked) */
.button:active {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* SECTIONS */
section {
  max-width: 900px;
  margin: auto;
  padding: 90px 20px;
  position: relative;
  z-index: 1;
}

h2 {
  text-align: center;
}

.divider {
  width: 50px;
  height: 1px;
  background: var(--champagne);
  margin: 20px auto 40px;
}
/* OUR STORY */
.story-text {
  max-width: 650px;
  margin: 0 auto 50px;
  text-align: center;
  line-height: 1.8;
}

.story-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}

.story-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border: 1px solid var(--warmgray);
  transition: transform 0.4s ease;
}

.story-gallery img:hover {
  transform: scale(1.03);
}

/* MOBILE STORY */
@media (max-width: 768px) {
  .story-gallery {
    grid-template-columns: 1fr;
  }

  .story-gallery img {
    height: auto;
  }
}

/* ACCOMMODATION CARDS */
.accommodation-cards {
  max-width: 700px;
  margin: 40px auto;
  text-align: center;
}

.accommodation-cards p {
  margin-bottom: 28px;
}

/* MAP */
.map-container {
  margin-top: 40px;
  border: 1px solid var(--warmgray);
  background: white;
}

.map-container iframe {
  width: 100%;
  height: 500px;
  border: 0;
  display: block;
}

/* FOOTER */
footer {
  background: var(--warmgray);
  text-align: center;
  padding: 35px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* MOBILE */
/* MOBILE SCROLLING PROTEA BACKGROUND */
@media (max-width: 768px) {
  body {
    background: none;
  }

  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/protea-mobile.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 110% auto;
    opacity: 0.40;
    z-index: 0;
    pointer-events: none;
  }

  .page-wrapper {
    position: relative;
    z-index: 1;
  }
@media (max-width: 768px) {
  body::before {
    filter: none !important;
  }
}

  /* Hide desktop proteas on mobile */
  .botanical {
    display: none !important;
  }
}



@media (max-width: 768px) {
  .menu { display: none; flex-direction: column; gap: 18px; }
  .menu.show { display: flex; }
  .hamburger { display: block; }
  .names { font-size: 3.6rem; }
  section { padding: 70px 18px; }
  .map-container iframe { height: 350px; }
}


/* EVENT CARDS */
.event-card {
  max-width: 680px;
  margin: 0 auto 70px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.event-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.event-card h3 {
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.event-card .event-date {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.event-card .event-time {
  font-size: 1rem;
  margin-bottom: 22px;
}

.event-card .event-location {
  font-style: italic;
  margin-bottom: 4px;
}

.event-card .event-location a {
  color: var(--taupe);
  text-decoration: none;
}

.event-card .event-location a:hover {
  text-decoration: underline;
}

.event-card .event-address {
  font-style: italic;
  margin-bottom: 18px;
}

.event-card .event-attire {
  margin-bottom: 22px;
}

.event-card .event-description {
  max-width: 520px;
  margin: auto;
  line-height: 1.75;
}

/* THIN DIVIDER BETWEEN EVENTS */
.event-divider {
  width: 60px;
  height: 1px;
  background: var(--champagne);
  margin: 60px auto;
}

/* ADD TO CALENDAR BUTTON */
.calendar-button {
  display: inline-block;
  margin-top: 28px;
  padding: 10px 26px;
  border: 1px solid var(--taupe);
  border-radius: 25px;
  text-decoration: none;
  color: var(--taupe);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.calendar-button:hover {
  background: var(--taupe);
  color: white;
}

.accommodation-cards a {
  color: var(--taupe);
  text-decoration: none;
}

.accommodation-cards a:hover {
  text-decoration: underline;
}

</style>
