/*
Reset Stylesheet
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/* ==========================================================================
   Shilip's Baecation — design system
   ========================================================================== */

:root {
  --cream: #fff8f5;
  --blush: #fce1dd;
  --peach: #ffd9c7;
  --rose: #c41e3a;
  --rose-dark: #9e1830;
  --deep: #6e1220;
  --text: #452525;
  --muted: #a97d7d;
  --gold: #d9a566;

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-script: 'Dancing Script', cursive;
  --font-body: 'Nunito', 'Catamaran', sans-serif;
}

* {
  text-decoration: none;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
}

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

/* ---------- shared layout ---------- */

.wrapper {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 245, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(196, 24, 50, 0.15);
  padding: 16px 24px;
  text-align: center;
}

.site-header .logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--deep);
  letter-spacing: 0.3px;
}

.site-header .logo span {
  font-family: var(--font-script);
  font-size: 25px;
  color: var(--rose-dark);
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 24px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--deep);
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto 44px;
  line-height: 1.6;
}

/* ---------- front page hero ---------- */

.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #fbdcd8 0%, #fff8f5 55%, #ffd9c7 100%);
}

.hero::before,
.hero::after {
  content: "❤";
  position: absolute;
  font-size: 220px;
  color: rgba(196, 24, 50, 0.08);
  z-index: 0;
  line-height: 1;
}

.hero::before { top: -60px; left: -60px; transform: rotate(-12deg); }
.hero::after { bottom: -80px; right: -60px; transform: rotate(10deg); }

.hero-eyebrow {
  position: relative;
  z-index: 1;
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--rose-dark);
  margin-bottom: 6px;
}

.hero-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1.15;
  color: var(--deep);
  font-weight: 900;
}

.hero-sub {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
}

.scroll-cue {
  position: relative;
  z-index: 1;
  margin-top: 46px;
  font-size: 14px;
  color: var(--rose-dark);
  font-weight: 700;
  letter-spacing: 0.5px;
  animation: bob 2.2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ---------- memory photos ---------- */

.memories-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.memory-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(110, 18, 32, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.memory-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(110, 18, 32, 0.3);
}

/* ---------- destination card grid (front page) ---------- */

.destinations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}

.dest-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 320px;
  flex: 0 1 300px;
  width: 300px;
  max-width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 0 10px 30px rgba(110, 18, 32, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dest-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 40px rgba(110, 18, 32, 0.28);
}

.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(46, 10, 14, 0) 35%, rgba(46, 10, 14, 0.82) 100%);
}

.dest-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px;
  color: #fff;
}

.dest-card-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
}

.dest-card-teaser {
  font-size: 13.5px;
  opacity: 0.92;
  margin-top: 5px;
  line-height: 1.4;
}

.dest-card-cta {
  display: inline-block;
  margin-top: 12px;
  font-weight: 800;
  font-size: 13px;
  color: #f7d6d1;
  border-bottom: 1px solid currentColor;
}

/* ---------- destination detail page ---------- */

.dest-hero {
  height: 58vh;
  min-height: 360px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.dest-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(46, 10, 14, 0.05) 30%, rgba(46, 10, 14, 0.85) 100%);
}

.dest-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 40px 24px;
  color: #fff;
}

.dest-hero-tag {
  font-family: var(--font-script);
  font-size: 22px;
  color: #ffd9de;
}

.dest-hero-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  margin-top: 4px;
}

.quote-block {
  max-width: 760px;
  margin: 60px auto 50px;
  text-align: center;
  padding: 0 24px;
}

.quote-block .mark {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--rose);
  opacity: 0.35;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.quote-block p {
  font-size: 19px;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

.gallery-item {
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.gallery-item:not(.placeholder):hover {
  transform: scale(1.04);
}

.gallery-item.placeholder {
  border: 2px dashed rgba(196, 24, 50, 0.45);
  background: #fbe4e1;
  color: #b57e7e;
  font-family: var(--font-body);
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.gallery-item.placeholder:hover {
  background: #f7d6d1;
  transform: translateY(-4px);
}

.gallery-item.placeholder .icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.todo-card {
  max-width: 680px;
  margin: 0 auto 60px;
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 10px 30px rgba(110, 18, 32, 0.08);
}

.todo-card h2 {
  font-family: var(--font-display);
  text-align: center;
  color: var(--deep);
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: 700;
}

.todo-card ul {
  list-style: none;
}

.todo-card li {
  font-size: 16px;
  color: var(--text);
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid #f3e3e6;
  line-height: 1.5;
}

.todo-card li:last-child { border-bottom: none; }

.todo-card li::before {
  content: "💗";
  position: absolute;
  left: 0;
  top: 11px;
  font-size: 14px;
}

.video-frame {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

.video-frame .video-inner {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  background: #2a1418;
  aspect-ratio: 16 / 9;
}

.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}

.decision {
  display: flex;
  gap: 18px;
  max-width: 620px;
  margin: 0 auto 30px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 24px;
}

.next-link {
  text-align: center;
  margin: 0 auto 90px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.next-link a {
  color: var(--rose-dark);
  border-bottom: 1px dashed currentColor;
  padding-bottom: 2px;
}

.next-link a:hover {
  color: var(--deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2;
  padding: 16px 34px;
  border-radius: 50px;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.decision .btn {
  flex: 1;
  min-width: 220px;
}

.btn-primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 12px 26px rgba(196, 24, 50, 0.4);
}

.btn-primary:hover {
  background: var(--deep);
  transform: translateY(-3px);
}

.btn-secondary {
  background: #fff;
  color: var(--deep);
  border: 2px solid rgba(196, 24, 50, 0.35);
}

.btn-secondary:hover {
  background: #fbe4e1;
  transform: translateY(-3px);
}

/* ---------- confirmation page ---------- */

.confirm-wrap {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  background: linear-gradient(160deg, #fff8f5, #f7d6d1);
}

.confirm-emoji {
  font-size: 56px;
  margin-bottom: 14px;
}

.confirm-title {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--deep);
  margin-bottom: 16px;
  font-weight: 800;
}

.confirm-text {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 36px;
}

.confirm-photo {
  width: 240px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(110, 18, 32, 0.25);
  margin-bottom: 36px;
}

/* ---------- password gate ---------- */

.gate-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(160deg, #fbdcd8, #fff8f5 55%, #ffd9c7);
}

.gate-card {
  background: #fff;
  border-radius: 24px;
  padding: 54px 42px;
  text-align: center;
  max-width: 420px;
  box-shadow: 0 20px 50px rgba(110, 18, 32, 0.18);
}

.gate-card .gate-emoji {
  font-size: 40px;
  margin-bottom: 12px;
}

.gate-card h1 {
  font-family: var(--font-script);
  font-size: 34px;
  color: var(--deep);
  margin-bottom: 12px;
}

.gate-card p {
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
  font-size: 15px;
}

input[type=button] {
  background: var(--rose);
  border: none;
  color: #fff;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  padding: 16px 30px;
  border-radius: 50px;
  box-shadow: 0 12px 26px rgba(196, 24, 50, 0.4);
  transition: transform 0.2s ease, background 0.2s ease;
}

input[type=button]:hover {
  background: var(--deep);
  transform: translateY(-3px);
}

/* ---------- scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- modals ---------- */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(46, 10, 14, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  max-width: 440px;
  width: 100%;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(46, 10, 14, 0.35);
  transform: translateY(24px);
  transition: transform 0.25s ease;
}

.modal-overlay.open .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
}

.modal-close:hover {
  color: var(--deep);
}

.modal-card h3 {
  font-family: var(--font-display);
  color: var(--deep);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.modal-card > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.modal-dates {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.modal-dates label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
}

.modal-dates input[type=date] {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  padding: 10px 12px;
  border-radius: 10px;
  border: 2px solid rgba(196, 24, 50, 0.25);
  background: #fff;
}

.modal-email {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  margin-bottom: 24px;
}

.modal-email label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.modal-email input[type=email] {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  padding: 10px 12px;
  border-radius: 10px;
  border: 2px solid rgba(196, 24, 50, 0.25);
  background: #fff;
  width: 100%;
}

.modal-email small {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}

.note-btn {
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.note-card {
  max-width: 480px;
}

.note-heading {
  font-family: var(--font-script);
  color: var(--rose-dark);
  font-size: 26px;
  margin-bottom: 14px;
}

.note-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  text-align: left;
  margin-bottom: 18px !important;
}

.note-sign {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--rose-dark);
  text-align: right;
}

/* ---------- map graphic ---------- */

.map-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 24px 20px 10px;
  box-shadow: 0 10px 30px rgba(110, 18, 32, 0.08);
  max-width: 1000px;
  margin: 0 auto;
}

.map-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}

.map-label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  fill: var(--deep);
}

.map-label.home {
  fill: var(--muted);
}

/* ---------- destination tile backgrounds ---------- */

.box-bruges,
.fig-bruges-1 { background-image: url(img/bruges/bruges1.jpeg); }
.fig-bruges-2 { background-image: url(img/bruges/bruges2.jpeg); }
.fig-bruges-3 { background-image: url(img/bruges/bruges3.jpeg); }
.fig-bruges-4 { background-image: url(img/bruges/bruges4.jpeg); }

.box-sdowns,
.fig-sdowns-1 { background-image: url(img/sdowns/sdowns1.jpeg); }
.fig-sdowns-2 { background-image: url(img/sdowns/sdowns2.jpeg); }
.fig-sdowns-3 { background-image: url(img/sdowns/sdowns3.jpeg); }
.fig-sdowns-4 { background-image: url(img/sdowns/sdowns4.jpeg); }

.box-ystad,
.fig-ystad-1 { background-image: url(img/ystad/ystad1.jpeg); }
.fig-ystad-2 { background-image: url(img/ystad/ystad2.jpeg); }
.fig-ystad-3 { background-image: url(img/ystad/ystad3.jpeg); }
.fig-ystad-4 { background-image: url(img/ystad/ystad4.jpeg); }

.box-shuzenji,
.fig-shuzenji-1 { background-image: url(img/shuzenji/shuzenji1.jpeg); }
.fig-shuzenji-2 { background-image: url(img/shuzenji/shuzenji2.jpeg); }
.fig-shuzenji-3 { background-image: url(img/shuzenji/shuzenji3.jpeg); }
.fig-shuzenji-4 { background-image: url(img/shuzenji/shuzenji4.jpeg); }

.box-wens,
.fig-wens-1 { background-image: url(img/wens/wens1.jpeg); }
.fig-wens-2 { background-image: url(img/wens/wens2.jpeg); }
.fig-wens-3 { background-image: url(img/wens/wens3.jpeg); }
.fig-wens-4 { background-image: url(img/wens/wens4.jpeg); }

/* ---------- responsive ---------- */

@media only screen and (max-width: 480px) {
  .site-header .logo { font-size: 17px; }
  .site-header .logo span { font-size: 21px; }

  .hero { min-height: 88vh; padding: 48px 20px 32px; }
  .hero-eyebrow { font-size: 22px; }
  .hero-title { font-size: 34px; }
  .hero-sub { font-size: 16px; }

  .section { padding: 50px 20px; }
  .section-title { font-size: 26px; }

  .dest-hero { min-height: 300px; }
  .dest-hero-tag { font-size: 18px; }
  .dest-hero-title { font-size: 32px; }

  .quote-block { margin: 40px auto 36px; padding: 0 20px; }
  .quote-block p { font-size: 17px; }

  .gallery-grid { padding: 0 20px; gap: 12px; }
  .video-frame { padding: 0 20px; }

  .todo-card { padding: 28px 22px; }

  .decision { flex-direction: column; padding: 0 20px; }
  .decision .btn { width: 100%; min-width: 0; }

  .confirm-title { font-size: 30px; }
  .confirm-text { font-size: 16px; }
  .confirm-photo { width: 200px; }

  .gate-card { padding: 40px 26px; }

  .modal-card { padding: 32px 22px; }
  .modal-dates { gap: 10px; }
  .map-label { font-size: 12px; }
}

@media only screen and (min-width: 640px) {
  .memories-strip { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

@media only screen and (min-width: 1000px) {

  .wrapper {
    width: 1000px;
    margin: 0 auto;
  }

  .hero-title { font-size: 64px; }

  .dest-hero-title { font-size: 56px; }
}
