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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "PPEiko-Light", Helvetica, sans-serif;
  background: rgba(159, 102, 143, 0.05);
  color: #A37C2E;
  height: 100vh;
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

:nth-child(4n+1)::selection {
  background: #a4608c;
  color: #fff;
}

:nth-child(4n+2)::selection {
  background: #8d91c8;
  color: #fff;
}

:nth-child(4n+3)::selection {
  background: #e6d6df;
  color: #a4608c;
}

:nth-child(4n+4)::selection {
  background: #efbe5d;
  color: #fff;
}

@font-face {
  font-family: "PPEditorialOld";
  src: url("../fonts/PPEditorialOld-Regular.woff2") format("woff2"), url("../fonts/PPEditorialOld-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "PPEditorialOld";
  src: url("../fonts/PPEditorialOld-Italic.woff2") format("woff2"), url("../fonts/PPEditorialOld-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "PPEditorialOld-Ultralight";
  src: url("../fonts/PPEditorialOld-Ultralight.woff2") format("woff2"), url("../fonts/PPEditorialOld-Ultralight.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "PPEditorialOld-Ultralight";
  src: url("../fonts/PPEditorialOld-UltralightItalic.woff2") format("woff2"), url("../fonts/PPEditorialOld-UltralightItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "PPEiko";
  src: url("../fonts/PPEiko-Regular.woff2") format("woff2"), url("../fonts/PPEiko-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "PPEiko-Light";
  src: url("../fonts/PPEiko-Light.woff2") format("woff2"), url("../fonts/PPEiko-Light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "PPEiko-Light";
  src: url("../fonts/PPEiko-LightItalic.woff2") format("woff2"), url("../fonts/PPEiko-LightItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "PPEiko-Medium";
  src: url("../fonts/PPEiko-Medium.woff2") format("woff2"), url("../fonts/PPEiko-Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
h1, h2, h3, p {
  color: #A37C2E;
}

h1, h2, h3 {
  font-family: "PPEditorialOld-Ultralight", Georgia, serif;
  font-weight: 200;
  line-height: 1.2;
}

h1 {
  font-size: 4rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: 36px;
  font-weight: 200;
  color: #A37C2E;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  font-family: "PPEiko-Light", Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #A37C2E;
  letter-spacing: 0.05em;
}

em {
  font-style: italic;
}

strong {
  font-weight: 700;
}

sup {
  font-size: 1.5rem;
  vertical-align: super;
}

/******************************************************
 * 02 COMPONENTS
 ******************************************************/
/******************************************************
 * Global Layout
 ******************************************************/
html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

/******************************************************
 * RSVP Arrow Animation
 ******************************************************/
.rsvp-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.hero-rsvp:hover .rsvp-arrow {
  transform: translate(0.125rem, -0.125rem);
}

/******************************************************
 * Hero Section
 ******************************************************/
.hero {
  background: #9F668F;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero::after {
  background: rgba(0, 0, 0, 0.15);
  content: "";
  inset: 0;
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.hero-shader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto 1fr auto;
  grid-template-areas: "title icon" ". ." "rsvp location" ". ." "disclaimer disclaimer";
  min-height: 100vh;
  padding: 5.5rem 5rem 3rem;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding: 3.75rem 1.25rem 3rem;
  }
}

.hero-icon {
  animation: floatY 2.5s ease-in-out infinite;
  grid-area: icon;
  justify-self: center;
  align-self: start;
  height: auto;
  will-change: transform;
  opacity: 0.98;
}
@media (max-width: 768px) {
  .hero-icon {
    position: absolute;
    top: 10rem;
    right: 1.5rem;
    width: 3.5rem;
    transform: rotate(-150deg) scaleY(-1) skewX(-5deg);
  }
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  } /* move up slightly */
  100% {
    transform: translateY(0);
  }
}
.hero-title {
  grid-area: title;
  font-family: "PPEditorialOld-Ultralight", Georgia, serif;
  font-feature-settings: "dlig" 1, "liga" 1;
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-variant-ligatures: discretionary-ligatures;
  line-height: 1.24;
  letter-spacing: 0.02em;
  color: white;
  margin: 0;
  text-transform: uppercase;
}
.hero-title em {
  font-family: "PPEditorialOld-UltralightItalic", Georgia, serif;
  font-style: italic;
  text-transform: none;
}
.hero-title sup {
  font-size: 0.44em;
  letter-spacing: 0.07em;
  vertical-align: top;
  margin-left: 0.15em;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.5rem, 14vw, 3.375rem);
    line-height: 1.2;
  }
}

.hero-rsvp {
  grid-area: rsvp;
  align-self: center;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  font-family: "PPEditorialOld-Ultralight", Georgia, serif;
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  letter-spacing: 0.03em;
  color: white;
  cursor: pointer;
  padding: 0;
  margin: 0;
  text-align: left;
  text-transform: uppercase;
}
.hero-rsvp .rsvp-arrow {
  font-size: 0.72em;
}
.hero-rsvp:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .hero-rsvp {
    font-size: clamp(2.5rem, 14vw, 3.375rem);
    order: 3;
  }
}

.hero-location {
  grid-area: location;
  align-self: end;
  justify-self: end;
  text-align: right;
  font-family: "PPEditorialOld-Ultralight", Georgia, serif;
  font-feature-settings: "dlig" 1, "liga" 1;
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-variant-ligatures: discretionary-ligatures;
  line-height: 1.24;
  letter-spacing: 0.02em;
  color: white;
  margin: 0;
  text-transform: uppercase;
}
.hero-location em {
  font-family: "PPEditorialOld-UltralightItalic", Georgia, serif;
  font-style: italic;
  text-transform: none;
  font-size: 0.64em;
  letter-spacing: 0.01em;
}
@media (max-width: 768px) {
  .hero-location {
    font-size: clamp(2.5rem, 14vw, 3.375rem);
    line-height: 1.2;
    text-align: left;
    justify-self: start;
    order: 2;
  }
}

.hero-disclaimer {
  grid-area: disclaimer;
  align-self: end;
  font-family: "PPEiko-Light", Helvetica, sans-serif;
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.67;
  letter-spacing: 0.01em;
  color: white;
  margin: 0;
}
.hero-disclaimer sup {
  font-size: 0.65em;
  margin-right: 0.25em;
}
@media (max-width: 768px) {
  .hero-disclaimer {
    order: 4;
  }
}

.rsvp-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.hero-rsvp:hover .rsvp-arrow {
  transform: translate(0.125rem, -0.125rem);
}

/******************************************************
 * Main Content Section
 ******************************************************/
.content {
  background: linear-gradient(90deg, rgba(230, 214, 223, 0.05) 0%, rgba(230, 214, 223, 0.05) 100%), linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
  padding: 0;
}

.content-inner {
  display: flex;
  flex-direction: row;
  gap: 5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 5rem;
}
@media (max-width: 768px) {
  .content-inner {
    flex-direction: column;
    gap: 2.25rem;
    padding: 2.25rem 1.5rem 2.25rem;
  }
}

.content-text {
  flex: 0 0 47%;
  max-width: 37.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .content-text {
    flex: 1;
    max-width: 100%;
  }
}

.content-images {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  padding-top: 1.75rem;
}
@media (max-width: 768px) {
  .content-images {
    display: none;
  }
}

.story-images-mobile {
  display: none;
  position: relative;
  margin: 1.5rem 0;
}
@media (max-width: 768px) {
  .story-images-mobile {
    display: block;
  }
}

/******************************************************
 * Schedule Section
 ******************************************************/
.schedule-section .split-left h2 {
  margin-bottom: 5px;
}
@media (min-width: 969px) {
  .schedule-section .split-right {
    margin-top: 100px;
  }
}

.schedule-address {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.schedule-timeline {
  display: flex;
  flex-direction: column;
  margin-top: 4rem;
  gap: 3rem;
}

.timeline-item {
  display: flex;
  align-items: baseline;
  gap: 2rem;
}
@media (max-width: 768px) {
  .timeline-item {
    gap: 1rem;
  }
}

.timeline-time {
  font-family: "PPEiko-Light", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  min-width: 100px;
}
@media (max-width: 768px) {
  .timeline-time {
    min-width: 80px;
    font-size: 1rem;
  }
}

.timeline-label {
  font-family: "PPEiko-Light", Helvetica, sans-serif;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .timeline-label {
    font-size: 1rem;
  }
}

.info-block {
  margin-top: 5.5rem;
  margin-bottom: 3rem;
}
.info-block:last-child {
  margin-top: 0;
  margin-bottom: 0;
}
.info-block h3 {
  font-family: "PPEditorialOld-Ultralight", Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.info-block p {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
.info-block p:last-child {
  margin-bottom: 0;
}

/******************************************************
 * Story Section
 ******************************************************/
.story h2 {
  font-family: "PPEditorialOld-Ultralight", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
  color: #A37C2E;
  margin-bottom: 1.125rem;
  font-variant-ligatures: discretionary-ligatures;
  font-feature-settings: "dlig" 1;
}
.story p {
  font-family: "PPEiko-Light", Helvetica, sans-serif;
  font-size: 1.125rem;
  line-height: 1.48;
  letter-spacing: 0.01em;
  color: #A37C2E;
  margin-bottom: 1.5rem;
}
.story p:last-of-type {
  margin-bottom: 0;
}

/******************************************************
 * Story Images (Polaroid style)
 ******************************************************/
.story-image {
  display: block;
  width: 100%;
  max-width: 22rem;
  height: auto;
  object-fit: cover;
  border: 0.75rem solid white;
  border-radius: 1px;
  box-shadow: 1px -1px 1.25rem 0.3125rem rgba(143, 147, 201, 0.1);
}
.content-images .story-image--1 {
  transform: rotate(-4deg);
  margin-right: 2rem;
}
.content-images .story-image--2 {
  transform: rotate(3.5deg);
  margin-top: -3rem;
  margin-right: 0;
}
.content-images .story-image--3 {
  transform: rotate(-1deg);
  margin-top: -2rem;
  margin-right: 1rem;
}
.content-images .story-image--4 {
  transform: rotate(4deg);
  margin-top: -1rem;
  margin-right: 0.5rem;
}
.story-images-mobile .story-image {
  max-width: 100%;
  margin: 0 auto;
}
.story-images-mobile .story-image--1 {
  transform: rotate(-4deg);
  max-width: 90%;
}
.story-images-mobile .story-image--2 {
  transform: rotate(3.5deg);
  margin-top: -4rem;
  margin-left: 1.25rem;
  max-width: 85%;
}
.story-images-mobile .story-image--3, .story-images-mobile .story-image--4 {
  transform: rotate(-1deg);
  max-width: 88%;
}

/******************************************************
 * FAQ Section
 ******************************************************/
.faq h2 {
  font-family: "PPEditorialOld-Ultralight", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
  color: #A37C2E;
  margin-bottom: 1.125rem;
  font-variant-ligatures: discretionary-ligatures;
  font-feature-settings: "dlig" 1;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border: none;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.25rem;
  padding: 0.875rem 0;
  background: none;
  border: none;
  font-family: "PPEiko-Light", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  text-align: left;
  cursor: pointer;
  transition: opacity 0.3s ease;
  color: #A37C2E;
}
.faq-question:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .faq-question {
    font-size: 1.5rem;
  }
}

.faq-icon {
  font-family: "PPEditorialOld-Ultralight", Georgia, serif;
  font-size: 2.25rem;
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  font-family: "PPEiko-Light", Helvetica, sans-serif;
  font-size: 1.125rem;
  line-height: 1.48;
  letter-spacing: 0.01em;
  padding-bottom: 1.5rem;
  margin: 0;
  color: #A37C2E;
}

.faq-item.active .faq-answer {
  max-height: 31.25rem;
}

/******************************************************
 * Footer Section
 ******************************************************/
.footer {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 5rem 4rem;
}
@media (max-width: 768px) {
  .footer {
    padding: 2rem 1.5rem 6.25rem;
  }
}
.footer p {
  font-family: "PPEiko-Light", Helvetica, sans-serif;
  font-size: 1.125rem;
  line-height: 1.48;
  letter-spacing: 0.01em;
  color: #A37C2E;
  margin: 0;
}
.footer a {
  color: #A37C2E;
  text-decoration: underline;
}
.footer a:hover {
  opacity: 0.7;
}

.footer-icon {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  border-radius: 50%;
  background-size: cover;
}

/******************************************************
 * RSVP Section Styles
 ******************************************************/
.rsvp-button {
  background: transparent;
  border: none;
  font-size: 36px;
}

/******************************************************
 * RSVP Modal
 ******************************************************/
.rsvp-modal {
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  overflow-y: auto;
  padding: 2rem;
}
.rsvp-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .rsvp-modal {
    padding: 1rem;
  }
}

.rsvp-modal-content {
  background-color: #fff;
  border-radius: 4px;
  color: #A37C2E;
  max-height: 90vh;
  max-width: 600px;
  overflow-y: auto;
  padding: 3rem;
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .rsvp-modal-content {
    padding: 2rem 1.5rem;
  }
}

.rsvp-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  padding: 0.5rem;
  cursor: pointer;
  color: #A37C2E;
  transition: opacity 0.3s ease;
}
.rsvp-modal-close:hover {
  opacity: 0.5;
}

.form-container h2 {
  margin-bottom: 1.5rem;
  color: #A37C2E;
}

.form-intro {
  font-family: "PPEiko-Light", Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #A37C2E;
}

.form-group {
  margin-bottom: 2rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #D4C5A9;
  background: #fff;
  color: #A37C2E;
  font-family: "PPEiko-Light", Helvetica, sans-serif;
  font-size: 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #A37C2E;
  box-shadow: 0 0 0 3px rgba(163, 124, 46, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #C4A57B;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.label-note {
  font-family: "PPEiko-Light", Helvetica, sans-serif;
  font-weight: 400;
  color: #8A6B2C;
  font-size: 14px;
}

.form-description {
  font-family: "PPEiko-Light", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  margin-top: -0.5rem;
}
.form-description:last-child {
  margin-bottom: 0;
  margin-top: 0.5rem;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0 2rem 0;
}

.form-title {
  font-family: "PPEiko-Medium", Helvetica, sans-serif;
}

#guest-fields,
#food-preferences,
.form-description {
  margin-top: 1rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-family: "PPEiko-Light", Helvetica, sans-serif;
  font-weight: 400;
  color: #A37C2E;
}
.radio-label input[type=radio] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #A37C2E;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid #A37C2E;
  border-radius: 50%;
  position: relative;
  background: transparent;
}
.radio-label input[type=radio]:checked {
  background: #A37C2E;
  border-color: #A37C2E;
}
.radio-label input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}
.radio-label input[type=radio]:hover {
  border-color: #8A6B2C;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-family: "PPEiko-Light", Helvetica, sans-serif;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #A37C2E;
}
.checkbox-label input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin: 0;
  flex-shrink: 0;
  accent-color: #A37C2E;
}
.checkbox-label span {
  flex: 1;
}

.btn-primary {
  width: 100%;
  padding: 1.25rem 2rem;
  background: #A37C2E;
  color: #fff;
  border: none;
  font-family: "PPEditorialOld-Ultralight", Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.btn-primary:hover {
  background: #8A6B2C;
}
.btn-primary:disabled {
  background: #D4C5A9;
  cursor: not-allowed;
}

.btn-secondary {
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: #A37C2E;
  border: 1px solid #A37C2E;
  font-family: "PPEiko-Light", Helvetica, sans-serif;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: #A37C2E;
  color: #fff;
}

.form-error {
  color: #C44;
  font-size: 14px;
  margin-top: 0.5rem;
  font-family: "PPEiko-Light", Helvetica, sans-serif;
}

#guest-fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.guest-field-group {
  width: 100%;
}

.input-with-remove {
  position: relative;
  display: flex;
  align-items: center;
}
.input-with-remove input {
  flex: 1;
  padding-right: 3rem;
}
.input-with-remove .btn-remove {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  color: #C4A57B;
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.input-with-remove .btn-remove:hover {
  background: rgba(204, 68, 68, 0.1);
  color: #C44;
}

/*# sourceMappingURL=main.css.map */
