/* ===================== FONTS ===================== */
@font-face {
  font-family: 'Eterne';
  src: url('fonts/EterneText-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Eterne';
  src: url('fonts/EterneText-Medium.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Eterne';
  src: url('fonts/EterneText-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Rosalie';
  src: url('fonts/Rosalie-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

/* ===================== TOKENS ===================== */
:root {
  --bg: #D6E2DC;
  --red: #EC3535;
  --red-deep: #2A4C46;
  --dark: #2A4C46;
  --light-on-dark: #D6E2DC;
}

/* ===================== RESET ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  display: block;
}

/* ===================== BASE ===================== */
body {
  background: var(--bg);
  color: var(--red);
  font-family: 'Eterne', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

p {
  margin: 0 0 1em 0;
}

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

strong {
  font-weight: 600;
}

/* ===================== LAYOUT WRAPPERS ===================== */
.hero,
.intro,
.location,
.info,
.dress,
.timeline,
.contact {
  width: 100%;
}

.intro,
.location,
.info,
.dress,
.timeline {
  max-width: 90%;
  margin: 30px auto;
  padding: 60px 40px;
}

/* ===================== HERO / TITLE ===================== */
.hero {
  padding: 40px 0 20px;
}

.hero-img {
  width: 95%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero-img-mobile {
  display: none;
  width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===================== INTRO ===================== */
.intro {
  text-align: center;
  max-width: 800px;
  padding-top: 20px;
  padding-bottom: 30px;
}

.intro-title {
  font-size: 38px;
  letter-spacing: 0.01em;
  font-weight: 600;
  margin: 76px 0 20px 0;
  line-height: 1.2;
}

.squiggle {
  width: 280px;
  height: auto;
  margin: 40px auto 40px;
  display: block;
}

.intro-text {
  font-size: 20px;
  line-height: 1.6;
  max-width: 100%;
  margin: 0 auto 18px;
}

.intro-text-bottom {
  margin-top: 18px;
}

/* date row */
.date-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 26px;
  margin: 30px 0 26px;
}

.date-block {
  text-align: center;
}

.date-label {
  font-size: 13px;
  letter-spacing: 0.06em;
  margin: 0 0 4px 0;
  text-transform: uppercase;
}

.date-value {
  font-size: 36px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.02em;
}

.date-divider {
  width: 1px;
  background: var(--red);
  align-self: stretch;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  background: var(--red);
  color: #fff !important;
  /*padding: 13px 44px;*/
  padding: 13px 80px;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.06em;
  border-radius: 999px;
  text-align: center;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--red-deep); }

.btn-small {
  padding: 13px 40px;
  font-size: 20px;
  letter-spacing: 0.06em;
  margin: 30px 0 0 0;
}

/* ===================== SECTION TITLE ===================== */
.section-title {
  font-family: 'Rosalie', 'Eterne', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 120px;
  line-height: 1;
  margin: 0 0 30px 0;
  letter-spacing: -0.01em;
}

/* ===================== LOCATION ===================== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 140px;
  align-items: start;
}

.location-text p {
  font-size: 20px;
  line-height: 1.6;
}

.location-image img {
  width: 100%;
  height: auto;
}

.location-image {
  text-align: center;
}

.location-map-mobile {
  display: none;
}

/* ===================== INFO (TWO COLUMNS) ===================== */
.info {
  padding-top: 20px;
  padding-bottom: 40px;
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 140px;
}

.info-title {
  font-size: 32px;
  letter-spacing: 0.01em;
  font-weight: 600;
  margin: 0 0 16px 0;
}

.info-col p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ===================== DRESS CODE ===================== */
.dress-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 140px;
  align-items: start;
}

.dress-text p {
  font-size: 20px;
  line-height: 1.6;
}

.dress-image img {
  width: 100%;
  height: auto;
}

.dress-image {
  text-align: center;
}

.dress-moodboard-mobile {
  display: none;
}

/* ===================== TIMELINE ===================== */
.timeline {
  text-align: center;
  max-width: 800px;
}

.timeline-title {
  font-family: 'Eterne', Georgia, 'Times New Roman', serif;
  font-style: normal;
  font-size: 38px;
  letter-spacing: 0.01em;
  font-weight: 600;
  line-height: 1.2;
}

.timeline-intro {
  font-size: 20px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px;
}

.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.timeline-list li {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
}

.timeline-list strong {
  font-weight: 700;
}

/* ===================== CONTACT ===================== */
.contact {
  background: var(--dark);
  color: var(--light-on-dark);
  text-align: center;
  padding: 60px 40px 40px;
  margin-top: 40px;
}

.contact-title {
  font-family: 'Eterne', Georgia, 'Times New Roman', serif;
  font-style: normal;
  font-size: 38px;
  letter-spacing: 0.01em;
  font-weight: 600;
  line-height: 1.2;
}

.contact p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 14px;
}

.squiggle-footer {
  width: 1100px;
  margin-top: 100px;
}

/* ===================== MOBILE ===================== */
@media (max-width: 720px) {
  .hero {
    padding: 20px 10px 0;
  }

  .hero-img-desktop {
    display: none;
  }

  .hero-img-mobile {
    display: block;
  }

  .intro,
  .location,
  .info,
  .dress {
    padding: 0px 10px;
  }

  .timeline {
    padding: 0px 10px;
    margin-bottom: 80px;
  }

  .intro-title {
    font-size: 30px;
  }

  .intro-text {
    font-size: 16px;
    line-height: 1.6;
    max-width: 80%;
    margin: 0 auto 18px;
    font-weight: 400;
  }

  .squiggle {
    width: 200px;
    height: auto;
    margin: 30px auto 30px;
    display: block;
  }

  .btn {
    font-size: 16px;
    line-height: 1.6;
  }


  .section-title {
    font-size: 100px;
    text-align: center;
    margin: 30px 0 20px 0;
  }

  .timeline-title {
    font-size: 30px;
    margin-top: 70px;
  }

  .location-grid,
  .info-grid,
  .dress-grid {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .location-text,
  .dress-text,
  .timeline-intro {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto 18px;
    font-weight: 400;
    text-align: center;
  }

  .location-text p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto 18px;
    font-weight: 400;
    text-align: center;
    max-width: 98%;
  }

  .dress-text p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto 18px;
    font-weight: 400;
    text-align: center;
    max-width: 98%;
  }

  .contact p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto 18px;
    font-weight: 400;
    text-align: center;
  }

  .location-map-desktop {
    display: none;
  }

  .location-map-mobile {
    display: inline-block;
    margin-top: 50px;
  }

  .dress-text {
    order: 1;
  }

  .dress-image {
    order: 2;
  }

  .dress-moodboard-desktop {
    display: none;
  }

  .dress-moodboard-mobile {
    display: inline-block;
    margin-top: 20px;
  }

  .info-title {
    text-align: left;
    margin-top: 30px;
    font-size: 26px;
  }

  .info-col p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 100%;
    margin: 0 auto 18px;
    font-weight: 400;
    text-align: left;
  }

  .date-row {
    gap: 18px;
  }

  .date-value {
    font-size: 30px;
  }

  .timeline-intro {
    font-size: 16px;
    line-height: 1.6;
    max-width: 90%;
  }
  .timeline-list li {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
  }

  .contact {
    padding: 50px 26px 30px;
  }

  .contact-title {
    font-size: 30px;
  }

  .squiggle-footer {
    width: 100%;
    margin-top: 80px;
    margin-bottom: 0;
  }

}
