/* Header / Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  padding: 0.6rem 2rem;
  transition: all 0.4s ease;
  pointer-events: none;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  pointer-events: auto;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex: 1;
  width: 100%;
  text-align: center;
}

.nav-links a {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.65);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
  font-family: "FjordOne-Regular";
}

.nav-links a:hover { border-color: var(--accent); }

.nav-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 150px;
  width: auto;
  transition: all 0.4s ease;
  filter: brightness(100%) drop-shadow(0 3px 8px rgba(0, 0, 0, 0.5));
}

/* Nav shrink */
header.shrink {
  padding: 0.1rem 1rem;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.25);
}

header.shrink .nav-logo img {
  height: 70px;
  filter: brightness(90%);
}

/* Language toggle */
.lang-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  pointer-events: auto;
}

.lang-btn {
  border: 1px solid rgba(255,255,255,0.65);
  background: rgba(0,0,0,0.20);
  color: #fff;
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  text-shadow: 0 2px 6px rgba(0,0,0,0.65);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.lang-btn:hover {
  background: rgba(0,0,0,0.35);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.lang-btn[aria-pressed="true"] {
  background: rgba(184,154,90,0.35);
  border-color: rgba(184,154,90,0.9);
}

/* Hero */
.hero { position: relative; width: 100vw; height: 100vh; overflow: hidden; }

.hero-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.50);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.10) 20%,
    transparent 100%
  );
  pointer-events: none;
}

.hero-text { position: absolute; bottom: -10%; width: 100%; text-align: center; }

.hero-title-image {
  max-width: 90%;
  width: 600px;
  height: auto;
  filter:
    drop-shadow(0 6px 12px rgba(255,255,255,0.2))
    drop-shadow(0 2px 8px rgba(0,0,0,0.7));
  opacity: 0.95;
}

/* Invitation */
.invitation-copy { text-align: center; }
.invitation-copy h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.9rem;
}
.invitation-copy p { font-size: 0.98rem; margin-bottom: 1.5rem; }

.invitation-image {
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center;     /* vertical */
}

.invitation-image img {
  max-width: 50%;
  height: auto;
}

  
  

/* Countdown */
.countdown-title {
  font-family: "ImperialScript-Regular", "Georgia", serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: 0.06em;
  color: rgba(184,154,90,0.85);
  margin: 0 0 1.6rem;
}

.countdown--elegant {
  display: flex;
  justify-content: center;
  gap: clamp(2.2rem, 5vw, 4.2rem);
  margin: 0 0 1.8rem;
}

.countdown--elegant .count-unit { text-align: center; min-width: 72px; }

.countdown--elegant .count-number {
  font-size: clamp(3.2rem, 5.5vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(120, 104, 78, 0.85);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  display: inline-block;
  width: 3ch;
  text-align: center;
  white-space: nowrap;
}

.countdown--elegant .count-label {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(120, 104, 78, 0.7);
}

/* Cards / labels */
.card {
  border: 1px solid rgba(184,154,90,0.22);
  padding: 1.4rem 1.5rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.98);
  font-size: 0.9rem;
  box-shadow: 0 10px 26px rgba(10,10,20,0.06);
}

.label {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.17em;
  color: var(--accent-dark);
  margin-bottom: 0.25rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2.4rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  transition: all 0.25s ease;
  color: var(--accent-dark);
}
.btn:hover { background: var(--accent); color: #fff; }

/* =========================================================
   Details strip (ceremony / reception)
   ========================================================= */
.details-strip{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 2.6rem;
  text-align: center;
}

.details-date{
  font-family: "ImperialScript-Regular", "Georgia", serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  color: rgba(120, 104, 78, 0.85);
  margin: 0 0 1.6rem;
}

.details-strip-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: stretch;
  justify-items: center;
  margin: 0 auto 1.6rem;
}

.details-block{
  width: 100%;
  max-width: 420px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}


.details-icon{
  width: auto;          /* ⬅ bigger */
  height: 200px;
  opacity: 0.9;
  margin: 0 auto 1.1rem;
  display: block;
}

.details-block-title{
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(120, 104, 78, 0.85);
  margin-bottom: 0.7rem;
min-height: 1.8em;

}

.details-block-sub{
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(120, 104, 78, 0.70);
  line-height: 1.5;
  margin-bottom: 1rem;
min-height: 3.6em;

}

.details-pill{
  display: inline-block;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(184,154,90,0.55);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(120, 104, 78, 0.85);
  background: rgba(255,255,255,0.65);
  transition: all 0.2s ease;
margin-top: auto;   /* pushes button to bottom */

}

.details-pill:hover{
  background: rgba(184,154,90,0.22);
}

.details-dress{
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(120, 104, 78, 0.70);
  margin-top: 0.5rem;
}

/* Mobile */
@media (max-width: 720px){
  .details-strip-grid{
    grid-template-columns: 1fr;
  }
  .details-icon{
    width: auto;
  }
}

/* Timeline */
.timeline {
  margin-top: 0.6rem;
  border-left: 1px solid rgba(184,154,90,0.4);
  padding-left: 1.1rem;
  font-size: 0.9rem;
}
.timeline-item { margin-bottom: 0.5rem; }
.timeline-item span { font-weight: 600; margin-right: 0.4rem; }

/* RSVP Form */
.rsvp-form {
  max-width: 480px;
  margin: 1.5rem auto 0;
  text-align: left;
  font-size: 0.85rem;
}

.rsvp-form label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  color: var(--accent-dark);
}

.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea {
  width: 100%;
  padding: 0.55rem 0.6rem;
  margin-bottom: 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(184,154,90,0.35);
  background: rgba(255,255,255,0.98);
  font-size: 0.85rem;
  font-family: var(--font-sans);
}

.rsvp-form button { width: 100%; cursor: pointer; }

.rsvp-message {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 0.7rem;
}

/* Carousel */
.hero-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  box-shadow:
    0 22px 65px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.16) inset;
  background: rgba(0,0,0,0.82);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.6) inset;
  opacity: 0.3;
  pointer-events: none;
  z-index: 3;
}

.carousel-multi {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  opacity: 0.75;
}

.carousel-multi .track {
  display: flex;
  height: 100%;
  animation: heroScroll 40s linear infinite;
}

.carousel-multi .slide { flex: 0 0 33.3333%; height: 100%; }

.carousel-multi img { width: 100%; height: 100%; object-fit: cover; }

@keyframes heroScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.7rem;
  padding: 1.5rem 1rem 2.4rem;
  color: #f7f4ee;
  background: transparent;
}