/* ============================================================
   Seamus & Gilberto — Wedding Website
   Shared Stylesheet
   ============================================================ */

/* === VARIABLES === */
:root {
  --emerald-deep: #0A2E25;
  --emerald: #0D4535;
  --emerald-mid: #1A5C4A;
  --emerald-card: #0C3C2F;
  --emerald-input: #091F1A;
  --gold: #D4A843;
  --gold-light: #DDBA58;
  --gold-shimmer: #E8C55A;
  --gold-muted: rgba(212,168,67,0.6);
  --white: #F5F0E8;
  --white-soft: rgba(232,224,208,0.95);
  --white-muted: rgba(232,224,208,0.65);
  --white-faint: rgba(232,224,208,0.35);
  --nav-height: 64px;
}

/* === RESET === */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: 'Josefin Sans', sans-serif;
  background: var(--emerald-deep);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: var(--nav-height);
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--emerald-deep);
  padding: 12px 24px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  z-index: 200;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--gold-shimmer);
  outline-offset: 2px;
}

/* Global focus styles */
*:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
/* Remove outline for mouse clicks */
*:focus:not(:focus-visible) {
  outline: none;
}

/* === BACKGROUND === */
.bg-pattern {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(201,168,76,0.04) 0%, transparent 60%);
}
.bg-pattern::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(201,168,76,0.03) 80px, rgba(201,168,76,0.03) 81px),
    repeating-linear-gradient(-45deg, transparent, transparent 80px, rgba(201,168,76,0.03) 80px, rgba(201,168,76,0.03) 81px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(11,61,46,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 960px;
}

.navbar-brand {
  font-family: 'Great Vibes', cursive;
  font-size: 26px;
  color: var(--gold-shimmer);
  text-decoration: none;
  transition: color 0.3s ease;
  flex-shrink: 0;
}
.navbar-brand:hover { color: var(--gold-light); }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.navbar-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 2px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.navbar-links a:hover { color: var(--gold-shimmer); background: rgba(201,168,76,0.1); }
.navbar-links a.active { color: var(--gold); }

.nav-lang {
  display: flex;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 2px;
  overflow: hidden;
  margin-left: 8px;
  flex-shrink: 0;
}

.nav-lang-btn {
  padding: 10px 14px;
  min-height: 44px;
  min-width: 44px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  color: var(--white-muted);
}
.nav-lang-btn.active { background: var(--gold); color: var(--emerald-deep); }
.nav-lang-btn:not(.active):hover { background: rgba(201,168,76,0.15); color: var(--gold-shimmer); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .navbar-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(11,61,46,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    gap: 4px;
  }
  .navbar-links.open { display: flex; }
  .navbar-links a { padding: 12px 16px; width: 100%; font-size: 11px; }
  .nav-lang { margin-left: 0; margin-top: 8px; align-self: flex-start; }
}

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.page-wrapper {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.page-wrapper-wide {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

/* ============================================================
   COMMON TYPOGRAPHY & ELEMENTS
   ============================================================ */
.section-heading {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(36px, 8vw, 52px);
  color: var(--gold-shimmer);
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 40px;
}

.section-prose {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--white-soft);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.section-prose.left-align {
  text-align: left;
  max-width: 100%;
}

/* ORNAMENTS */
.ornament { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 28px 0; }
.ornament-line { width: 80px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.ornament-diamond { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

.divider { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 40px 0; }
.divider-leaf { font-size: 18px; color: var(--gold-muted); }
.divider-line { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-light), transparent); }

/* CARDS */
.card {
  background: var(--emerald-card);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 2px;
  padding: 48px 40px;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  margin-bottom: 28px;
}
.card::before, .card::after {
  content: '';
  position: absolute;
  width: 40px; height: 40px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.35;
}
.card::before { top: 12px; left: 12px; border-width: 1px 0 0 1px; }
.card::after { bottom: 12px; right: 12px; border-width: 0 1px 1px 0; }

@media (max-width: 600px) { .card { padding: 32px 20px; } }

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--gold-shimmer);
  text-align: center;
  margin-bottom: 24px;
}

.card-icon {
  text-align: center;
  font-size: 32px;
  margin-bottom: 16px;
}

.card-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white-soft);
  text-align: center;
}

.card-text a {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  transition: all 0.3s ease;
}
.card-text a:hover { color: var(--gold-shimmer); border-bottom-color: var(--gold); }

/* GRID */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

/* === ANIMATIONS === */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.anim-fade { animation: fadeIn 1s ease-out both; }
.anim-fade-up { animation: fadeInUp 1s ease-out both; }
.anim-fade-down { animation: fadeInDown 1s ease-out both; }
.anim-delay-1 { animation-delay: 0.2s; }
.anim-delay-2 { animation-delay: 0.4s; }
.anim-delay-3 { animation-delay: 0.6s; }
.anim-delay-4 { animation-delay: 0.8s; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  text-align: center;
  margin-top: 50px;
  padding: 30px 20px 40px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-monogram { font-family: 'Great Vibes', cursive; font-size: 36px; color: var(--gold); margin-bottom: 12px; }
.footer-text { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 15px; color: var(--white-muted); line-height: 1.7; }
.footer-hashtag {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}
.footer-nav a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-faint);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav a:hover { color: var(--gold); }

/* ============================================================
   HERO (HOME PAGE)
   ============================================================ */
.hero {
  text-align: center;
  padding: 60px 20px 40px;
}
.hero-subtitle {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-names {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(48px, 10vw, 72px);
  color: var(--gold-shimmer);
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero-ampersand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 5vw, 36px);
  color: var(--white-soft);
  display: block;
  margin: -4px 0;
}
.hero-date {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--white-soft);
  letter-spacing: 3px;
  margin-top: 20px;
}
.hero-venue {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
}
.hero-location {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  color: var(--white-muted);
  margin-top: 4px;
}

/* COUNTDOWN */
.countdown {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.countdown-item { text-align: center; min-width: 70px; }
.countdown-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--gold-shimmer);
  line-height: 1;
}
.countdown-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-top: 4px;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { position: relative; padding: 10px 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--gold);
  opacity: 0.5;
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: center;
  position: relative;
  padding: 18px 0;
}
.timeline-item:first-child { padding-top: 0; }
.timeline-item:last-child { padding-bottom: 0; }

.timeline-left { text-align: right; padding-right: 8px; }
.timeline-right { text-align: left; padding-left: 8px; }

.timeline-center {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.timeline-dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--emerald-card);
  border: 1px solid rgba(201,168,76,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 12px rgba(201,168,76,0.15);
}
.timeline-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.15);
}
.timeline-icon { font-size: 22px; line-height: 1; }
.timeline-event {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-shimmer);
  margin-bottom: 3px;
}
.timeline-time {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 17px;
  color: var(--white-muted);
}

@media (max-width: 500px) {
  .timeline::before { left: 32px; }
  .timeline-item { grid-template-columns: 64px 1fr; padding: 14px 0; }
  .timeline-left, .timeline-right { text-align: left !important; padding-left: 12px; padding-right: 0; }
  .timeline-empty { display: none; }
  .timeline-center { justify-content: center; }
}

/* ============================================================
   RSVP FORM
   ============================================================ */
.form-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--gold-shimmer);
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 1px;
}
.form-group { margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; gap: 0; } }

label {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
label .required { color: var(--gold-shimmer); margin-left: 2px; }

input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select, textarea {
  width: 100%; padding: 12px 16px;
  font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 400;
  color: var(--white); background: var(--emerald-input);
  border: 1px solid rgba(201,168,76,0.25); border-radius: 2px;
  outline: none; transition: all 0.3s ease;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); background: var(--emerald-deep); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
input::placeholder, textarea::placeholder { color: var(--white-faint); font-style: italic; }
textarea { min-height: 90px; resize: vertical; line-height: 1.6; }

/* RSVP CHOICE */
.rsvp-choice { display: flex; gap: 16px; justify-content: center; margin: 8px 0 12px; }
.rsvp-option { position: relative; }
.rsvp-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.rsvp-option label.rsvp-label {
  display: flex; align-items: center; justify-content: center;
  min-width: 180px; padding: 14px 28px;
  font-family: 'Josefin Sans', sans-serif; font-weight: 400; font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); background: var(--emerald-input);
  border: 1px solid rgba(201,168,76,0.3); border-radius: 2px;
  cursor: pointer; transition: all 0.35s ease; margin-bottom: 0;
}
.rsvp-option input[type="radio"]:checked + label.rsvp-label { background: var(--gold); color: var(--emerald-deep); border-color: var(--gold); box-shadow: 0 2px 12px rgba(201,168,76,0.3); }
.rsvp-option input[type="radio"]:focus-visible + label.rsvp-label { outline: 3px solid var(--gold); outline-offset: 2px; }
.rsvp-option label.rsvp-label:hover { border-color: var(--gold); background: rgba(201,168,76,0.1); }
.rsvp-option input[type="radio"]:checked + label.rsvp-label:hover { background: var(--gold-light); }
@media (max-width: 420px) {
  .rsvp-choice { flex-direction: column; align-items: center; }
  .rsvp-option label.rsvp-label { min-width: 220px; }
}

.section-divider { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 36px 0 32px; }
.section-divider-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent); }
.section-divider-icon { color: var(--gold); font-size: 14px; opacity: 0.6; }

/* CHECKBOXES */
.checkbox-group { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 10px; margin-top: 8px; }
.checkbox-item { position: relative; }
.checkbox-item input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox-item label {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 400;
  letter-spacing: 0; text-transform: none;
  color: var(--white-soft); background: var(--emerald-input);
  border: 1px solid rgba(201,168,76,0.15); border-radius: 2px;
  cursor: pointer; transition: all 0.3s ease; margin-bottom: 0;
}
.checkbox-item label::before {
  content: ''; width: 18px; height: 18px;
  border: 1px solid rgba(201,168,76,0.4); border-radius: 2px;
  flex-shrink: 0; transition: all 0.3s ease; background: var(--emerald-deep);
}
.checkbox-item input[type="checkbox"]:checked + label { border-color: var(--gold); background: rgba(201,168,76,0.1); color: var(--gold-shimmer); }
.checkbox-item input[type="checkbox"]:checked + label::before { background: var(--gold); border-color: var(--gold); box-shadow: inset 0 0 0 2px var(--emerald-deep); }
.checkbox-item input[type="checkbox"]:focus-visible + label { outline: 3px solid var(--gold); outline-offset: 2px; }

/* GUEST CARD */
.guest-card {
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 2px;
  padding: 28px 24px;
  margin-bottom: 20px;
  animation: fadeIn 0.4s ease;
}
.guest-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 18px;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
@media (max-width: 500px) { .guest-card { padding: 20px 16px; } }

/* NUMBER STEPPER */
.number-stepper { display: flex; align-items: center; gap: 0; }
.stepper-btn {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,168,76,0.25);
  background: var(--emerald-input); color: var(--gold);
  font-family: 'Cormorant Garamond', serif; font-size: 20px;
  cursor: pointer; transition: all 0.2s ease;
  display: flex; align-items: center; justify-content: center;
}
.stepper-btn:first-child { border-radius: 2px 0 0 2px; }
.stepper-btn:last-child { border-radius: 0 2px 2px 0; }
.stepper-btn:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); }

input[type="number"] { width: 80px; text-align: center; }
.number-stepper input[type="number"] { border-radius: 0; border-left: none; border-right: none; -moz-appearance: textfield; }
.number-stepper input[type="number"]::-webkit-inner-spin-button,
.number-stepper input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; }

/* SUBMIT */
.submit-wrapper { text-align: center; margin-top: 40px; }
.submit-btn {
  display: inline-block; padding: 16px 56px;
  font-family: 'Josefin Sans', sans-serif; font-weight: 400; font-size: 12px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--emerald-deep); background: var(--gold);
  border: none; border-radius: 2px; cursor: pointer;
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.submit-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 0.6s ease; }
.submit-btn:hover { background: var(--gold-shimmer); box-shadow: 0 4px 20px rgba(201,168,76,0.35); transform: translateY(-1px); }
.submit-btn:hover::before { left: 100%; }
.submit-btn:active { transform: translateY(0); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

.deadline-note { text-align: center; margin-top: 20px; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px; color: var(--white-muted); }

.conditional-section { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.6s ease, opacity 0.4s ease; }
.conditional-section.visible { max-height: 5000px; opacity: 1; }

/* OVERLAYS */
.overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 200; align-items: center; justify-content: center; animation: fadeIn 0.5s ease; }
.overlay.show { display: flex; }
.overlay-success { background: rgba(11,61,46,0.96); }
.overlay-error { background: rgba(90,30,20,0.95); }
.overlay-content { text-align: center; padding: 60px 40px; max-width: 480px; animation: fadeInUp 0.6s ease 0.2s both; }
.overlay-icon { font-size: 48px; margin-bottom: 24px; }
.overlay-title { font-family: 'Great Vibes', cursive; font-size: 48px; color: var(--gold-shimmer); margin-bottom: 16px; }
.overlay-message { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: rgba(255,255,255,0.9); line-height: 1.7; font-style: italic; }
.overlay-close { margin-top: 32px; padding: 12px 40px; font-family: 'Josefin Sans', sans-serif; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--emerald-deep); background: var(--gold); border: none; border-radius: 2px; cursor: pointer; transition: all 0.3s ease; }
.overlay-close:hover { background: var(--gold-shimmer); }
.overlay-close:focus-visible { outline: 3px solid var(--gold-shimmer); outline-offset: 2px; }
.spinner { display: none; width: 24px; height: 24px; border: 2px solid rgba(201,168,76,0.3); border-top: 2px solid var(--gold); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto; }
.spinner.show { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   VENUE & TRAVEL
   ============================================================ */
.map-wrapper {
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 2px;
  overflow: hidden;
  margin: 32px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.map-wrapper iframe { display: block; width: 100%; height: 360px; border: 0; }

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 20px; }
@media (max-width: 600px) { .info-grid { grid-template-columns: 1fr; } }

.info-item {
  padding: 20px;
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 2px;
}
.info-item-icon { font-size: 24px; margin-bottom: 10px; }
.info-item-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.info-item-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white-soft);
}

/* ============================================================
   ACCOMMODATION
   ============================================================ */
.room-card {
  background: var(--emerald-card);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.room-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.25); }

.room-card-body { padding: 24px; }
.room-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 500;
  color: var(--gold-shimmer);
  margin-bottom: 8px;
}
.room-card-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white-muted);
}
.room-card-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 14px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  border-radius: 2px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.gallery-placeholder {
  aspect-ratio: 1;
  background: var(--emerald-card);
  border: 1px dashed rgba(201,168,76,0.25);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.gallery-placeholder-icon { font-size: 32px; opacity: 0.4; }
.gallery-placeholder-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--white-faint);
}

/* CTA BUTTON */
.cta-btn {
  display: inline-block;
  padding: 14px 44px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--emerald-deep);
  background: var(--gold);
  border: none;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.4s ease;
}
.cta-btn:hover { background: var(--gold-shimmer); box-shadow: 0 4px 20px rgba(201,168,76,0.35); transform: translateY(-1px); }
