:root {
  --accent: #7b5cff;
  --bg: #fffdf9;
  --text: #222;
  --muted: #666;
}

* {
  box-sizing: border-box
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  margin: 0;
  color: var(--text);
  background: var(--bg)
}

.hidden {
  display: none
}

body.site-locked> :not(#siteLock) {
  display: none
}

.site-lock {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000
}

.site-lock.hidden {
  display: none
}

.site-lock-card {
  background: rgba(255, 255, 255, 0.95);
  max-width: 420px;
  width: 90%;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease
}

.site-lock-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px)
}

.site-lock-card h2 {
  margin: 0 0 0.5rem;
  font-family: serif
}

.site-lock-card p {
  margin: 0.5rem 0 1rem;
  color: var(--muted)
}

.site-lock-card form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem
}

.site-lock-card button {
  align-self: center;
  transition: all 0.3s ease
}

.site-lock-card button:hover {
  opacity: 0.85;
  transform: scale(1.05)
}

.site-lock-error {
  color: #b21f2d;
  font-weight: 600
}

.site-header {
  border-bottom: 1px solid #eee
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  position: relative
}

.nav-links {
  list-style: none;
  margin: 0;
  display: flex;
  gap: 1rem
}

.brand {
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  font-size: 1.25rem
}

.menu-toggle {
  display: block;
  background: transparent;
  border: 0;
  font-size: 1.6rem;
  color: var(--text);
  cursor: pointer;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease
}

.menu-toggle:hover {
  opacity: 0.7;
  transform: translateY(-50%) scale(1.1)
}

.menu-toggle:focus {
  outline: 2px solid var(--accent)
}

.hero {
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #eee;
  background-image: url('../images/JancoZene.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2))
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 3rem 1rem
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin: 0 0 .5rem;
  font-family: serif;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5)
}

.date {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  margin: 0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5)
}

@media (max-width:600px) {
  .hero {
    min-height: 80vh;
    background-attachment: scroll
  }
}

.troudag {
  background: linear-gradient(135deg, rgba(255, 249, 230, 0.9) 0%, rgba(255, 253, 249, 0.9) 100%);
  padding: 4rem 2rem;
  text-align: center;
  border-bottom: 2px solid #eee;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease
}

.troudag:hover {
  background: linear-gradient(135deg, rgba(255, 249, 230, 1) 0%, rgba(255, 253, 249, 1) 100%)
}

/* Use hamburger-only (hide regular nav links by default) */
.nav-links {
  display: flex;
  flex-direction: column;
  width: 200px;
  gap: 0;
  padding: 0;
  margin: 0;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  background: rgba(255, 253, 249, 0.98);
  box-shadow: 6px 0 18px rgba(0, 0, 0, 0.15);
  z-index: 99;
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-100%);
  overflow-y: auto
}

.nav-links.open {
  transform: translateX(0)
}

.nav-links li {
  width: 100%;
  text-align: center;
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease
}

.nav-links li:hover {
  background: rgba(123, 92, 255, 0.1);
  opacity: 0.8
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  display: block;
  width: 100%;
  padding: 0.75rem 0;
  transition: all 0.2s ease
}

.nav-links a:hover {
  opacity: 0.7
}

/* Backdrop overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 98;
  pointer-events: none
}

body.menu-open {
  overflow: hidden
}

body.menu-open::before {
  opacity: 1;
  visibility: visible;
  pointer-events: auto
}

/* On larger screens make menu a dropdown from header center */
@media (min-width:901px) {
  .nav {
    position: relative
  }

  /* .nav-links{display:flex;flex-direction:column;width:200px;gap:0;padding:0;margin:0;position:fixed;left:0;top:0;height:100vh;background:rgba(255,253,249,0.98);box-shadow:6px 0 18px rgba(0,0,0,0.15);z-index:99;backdrop-filter:blur(10px);transition:all 0.5s cubic-bezier(0.4, 0, 0.2, 1);transform:translateX(-100%);overflow-y:auto} */
  .nav-links {
    display: none;
    position: absolute;
    width: 260px;
    height: auto;
    top: 50px;
    left: auto;
    right: 0;
    transform: none !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 0;
    flex-direction: column
  }

  .nav-links.open {
    display: flex
  }

  .nav-links li {
    padding: 0.5rem 0
  }

  body::before {
    display: none !important
  }

  body.menu-open {
    overflow: auto
  }
}

.troudag h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-family: serif;
  color: var(--text);
  margin: 0 0 3rem;
  font-weight: 700;
  letter-spacing: 0.02em
}

.tagline {
  font-size: 1.05rem;
  color: var(--muted);
  font-style: normal;
  margin: 0.35rem 0;
  font-weight: 600;
  opacity: 0.95
}

.wedding-date {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0.35rem 0;
  font-weight: 600
}

.at-label {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0.6rem 0 0
}

.location-name {
  font-size: 1.15rem;
  color: var(--text);
  margin: 0.2rem 0 0;
  font-weight: 600
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease
}

.countdown-item:hover {
  transform: translateY(-5px);
  opacity: 0.9
}

.countdown-value {
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin: 0
}

.countdown-label {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600
}

.venue {
  position: relative;
  padding: 3.5rem 2rem;
  background-image: url('../images/florence.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transition: all 0.3s ease
}

.venue::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 249, 247, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1;
  transition: all 0.3s ease
}

.venue:hover::before {
  background: rgba(250, 249, 247, 0.6)
}

.venue h2 {
  position: relative;
  letter-spacing: 0.1em;
  z-index: 2;
  font-size: 2rem;
  font-family: serif;
  color: var(--text);
  margin: 0 0 3.5rem;
  font-weight: 700;
  text-align: center
}

.venue h3 {
  position: relative;
  z-index: 2;
  font-size: 1.3rem;
  font-family: serif;
  color: var(--accent);
  margin: 1.5rem 0 1rem;
  font-weight: 600
}

.venue h3 {
  position: relative;
  z-index: 2;
  font-size: 1.3rem;
  font-family: serif;
  color: var(--text);
  margin: 1.2rem 0 0.6rem;
  font-weight: 600;
  text-align: center
}

.venue p {
  position: relative;
  z-index: 2;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0.6rem 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center
}

.venue p strong {
  color: var(--text);
  font-weight: 700
}

/* Map link: keep neutral color but show underline; hover to accent */
.venue a.map-link {
  color: var(--text);
  text-decoration: underline;
  font-weight: 700;
  transition: all 0.3s ease
}

.venue a.map-link:hover {
  color: var(--accent);
  opacity: 0.8;
  transform: scale(1.05)
}

.venue p:first-of-type {
  color: #555;
  font-style: italic
}

@media (max-width:600px) {
  .venue {
    background-attachment: scroll
  }
}

.about {
  position: relative;
  padding: 3.5rem 2rem;
  background-image: url('../images/verloof.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transition: all 0.3s ease
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 249, 247, 0.35);
  backdrop-filter: blur(5px);
  z-index: 1;
  transition: all 0.3s ease
}

.about:hover::before {
  background: rgba(250, 249, 247, 0.45)
}

.about h2 {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  font-family: serif;
  color: var(--text);
  margin: 0 0 3.5rem;
  font-weight: 700;
  text-align: center
}

.about p {
  position: relative;
  z-index: 2;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin: 1rem 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto
}

@media (max-width:600px) {
  .about {
    background-attachment: scroll
  }
}

.die-troudag {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 4rem 2rem;
  background: rgba(249, 248, 245, 0.95);
  max-width: 1200px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease
}

.die-troudag:hover {
  background: rgba(249, 248, 245, 1)
}

.troudag-content {
  flex: 1;
  min-width: 300px
}

.die-troudag h2 {
  font-size: 2rem;
  font-family: serif;
  color: var(--text);
  margin: 0 0 3.5rem;
  font-weight: 700;
  letter-spacing: 0.1em
}

.troudag-item {
  margin-bottom: 2.5rem;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px
}

.troudag-item:hover {
  background: rgba(123, 92, 255, 0.08);
  transform: translateX(5px)
}

.troudag-item h3 {
  font-size: 1.1rem;
  font-family: serif;
  color: var(--text);
  margin: 0 0 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em
}

.troudag-item p {
  font-size: 0.95rem;
  color: #666;
  margin: 0.3rem 0;
  line-height: 1.6
}

.troudag-label {
  /* font-style: italic; */
  color: #999;
  font-size: 0.9rem
}

.troudag-highlight {
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 700;
  margin: 0.5 rem 0
}

.troudag-note {
  font-size: 0.9rem;
  color: #999
}

.troudag-image {
  flex: 1;
  min-width: 450px
}

.troudag-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2)
}

.troudag-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  opacity: 0.95
}

@media (max-width:900px) {
  .die-troudag {
    flex-direction: column;
    gap: 2rem
  }

  .troudag-image {
    width: 100%;
    max-width: 400px
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5rem
}

.nav {
  flex-wrap: wrap
}

.nav-links {
  gap: .5rem
}

/* Mobile-friendly adjustments */
@media (max-width:900px) {
  .hero {
    min-height: 60vh
  }

  .hero-content h1 {
    font-size: clamp(1.6rem, 6vw, 3rem)
  }
}

@media (max-width:600px) {
  .nav {
    padding: .75rem 1rem
  }

  .menu-toggle {
    right: .5rem
  }

  .hero {
    min-height: 55vh;
    background-position: center top
  }

  .hero-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.2))
  }

  .hero-content {
    padding: 2rem 1rem
  }

  /* gallery scroll: make each thumb larger for easy tapping */
  .gallery-scroll img {
    min-width: 60vw;
    height: 40vh;
    border-radius: 8px
  }

  /* lightbox sizing for small screens */
  .lightbox-image {
    max-width: 95vw;
    max-height: 90vh
  }
}

.verblyf {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  padding: 4rem 2rem;
  background: rgba(245, 245, 240, 0.95);
  max-width: 1200px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease
}

.verblyf:hover {
  background: rgba(245, 245, 240, 1)
}

.verblyf-image {
  flex: 1;
  min-width: 300px;
  order: 1
}

.verblyf-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2)
}

.verblyf-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  opacity: 0.95
}

.verblyf-content {
  flex: 1;
  min-width: 300px;
  order: 2
}

.verblyf h2 {
  font-size: 2rem;
  font-family: serif;
  color: var(--text);
  margin: 0 0 3.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: right
}

.verblyf-section {
  margin-bottom: 2rem;
  text-align: right
}

.verblyf h3 {
  font-size: 1rem;
  color: var(--text);
  margin: 0 0 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em
}

.verblyf-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right
}

.verblyf-list li {
  margin: 0.5rem 0;
  font-size: 0.95rem
}

.verblyf-list a {
  color: var(--text);
  text-decoration: underline;
  font-style: italic
}

.verblyf-list a:hover {
  color: var(--accent)
}

.verblyf-section p {
  font-size: 0.95rem;
  color: var(--text);
  margin: 0.4rem 0;
  line-height: 1.6
}

.verblyf-section a {
  color: var(--text);
  text-decoration: none
}

.verblyf-section a:hover {
  color: var(--accent)
}

.verblyf-divider {
  height: 1px;
  background: #ccc;
  margin: 2rem 0
}

@media (max-width:900px) {
  .verblyf {
    flex-direction: column-reverse;
    gap: 2rem
  }

  .verblyf-image {
    width: 100%;
    max-width: 450px;
    order: 2
  }

  .verblyf-content {
    order: 1
  }

  .verblyf h2,
  .verblyf-section {
    text-align: center
  }

  .verblyf-list {
    text-align: center
  }
}

.gifts {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  padding: 4rem 2rem;
  background: rgba(245, 245, 240, 0.95);
  max-width: 1200px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease
}

.gifts:hover {
  background: rgba(245, 245, 240, 1)
}

.gifts-content {
  flex: 1;
  min-width: 300px;
  order: 1
}

.gifts-image {
  flex: 1;
  min-width: 300px;
  order: 2
}

.gifts-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2)
}

.gifts-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  opacity: 0.95
}

.gifts h2 {
  font-size: 2rem;
  font-family: serif;
  color: var(--text);
  margin: 0 0 3.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: left
}

.gifts-section {
  margin-bottom: 1rem;
  text-align: left;
  transition: all 0.3s ease
}

.gifts-section:hover {
  opacity: 0.9
}

.gifts h3 {
  font-size: 1rem;
  color: var(--text);
  margin: 0 0 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em
}

.gifts-section p {
  font-size: 0.95rem;
  color: var(--text);
  margin: 0.6rem 0;
  line-height: 1.6
}

.gifts-divider {
  height: 1px;
  background: #ccc;
  margin: 2rem 0
}

@media (max-width:900px) {
  .gifts {
    flex-direction: column;
    gap: 2rem
  }

  .gifts-image {
    width: 100%;
    max-width: 450px;
    order: 1
  }

  .gifts-content {
    order: 2
  }

  .gifts h2,
  .gifts-section {
    text-align: center
  }
}

/* On small screens, place images behind content so text scrolls over photos */
@media (max-width:900px) {

  .die-troudag,
  .verblyf,
  .gifts {
    position: relative;
    overflow: hidden;
    padding: 3rem 1.25rem;
  }

  .troudag-image,
  .verblyf-image,
  .gifts-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 1;
  }

  .troudag-image img,
  .verblyf-image img,
  .gifts-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
  }

  .troudag-content,
  .verblyf-content,
  .gifts-content {
    position: relative;
    z-index: 2;
    background: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.6));
    padding: 1.25rem;
    border-radius: 6px;
    max-width: 900px;
    margin: 0 auto;
  }
}

.rsvp-section {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/rsvp.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transition: all 0.3s ease
}

.rsvp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease
}

.rsvp-section:hover .rsvp-overlay {
  background: rgba(0, 0, 0, 0.35)
}

.rsvp-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem
}

.rsvp-text {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-family: serif;
  color: white;
  margin: 0 0 2rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5)
}

.rsvp-button {
  display: inline-block;
  background: rgba(123, 92, 255, 0.95);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 8px 25px rgba(123, 92, 255, 0.3)
}

.rsvp-button:hover {
  background: #6a4cdb;
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(123, 92, 255, 0.5)
}

@media (max-width:600px) {
  .rsvp-section {
    background-attachment: scroll;
    min-height: 40vh
  }
}

.gallery {
  padding: 3rem 2rem;
  transition: all 0.3s ease
}

.gallery h2 {
  font-size: 2rem;
  font-family: serif;
  color: var(--text);
  margin: 0 0 1rem
}

.gallery>p {
  color: rgba(102, 102, 102, 0.5);
  margin: 0 0 2rem;
  font-size: 0.85rem
}

.gallery-scroll {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch
}

.gallery-scroll img {
  min-width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15)
}

.gallery-scroll img:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  opacity: 0.9
}

.gallery-actions {
  display: flex;
  gap: .5rem;
  margin-top: 2rem
}

button {
  background: var(--accent);
  color: white;
  border: 0;
  padding: .6rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(123, 92, 255, 0.3)
}

button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 92, 255, 0.4)
}

.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease
}

.lightbox-modal.hidden {
  display: none
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.2s;
  opacity: 0.8
}

.lightbox-close:hover {
  opacity: 1;
  transform: scale(1.2)
}

.lightbox-image {
  max-width: 75vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  animation: slideUp 0.3s ease
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0
  }

  to {
    transform: translateY(0);
    opacity: 1
  }
}

.lightbox-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 1001
}

.lightbox-btn {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid white;
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.2s
}

.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2)
}

.rsvp form {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  max-width: 360px
}

label input {
  width: 100%;
  padding: .5rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.95)
}

label input:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(123, 92, 255, 0.1);
  background: rgba(255, 255, 255, 1)
}

label input:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(123, 92, 255, 0.05)
}

/* Contact Information Button */
/* .contact{padding:3rem 2rem;text-align:center;background:#fffdf9;border-top:1px solid #eee}
.contact-note{color:var(--muted);margin:0 0 1rem}
.contact-details{margin-top:1rem}
.contact-details p{margin:0.5rem 0}
.contact-details a{color:var(--text);text-decoration:underline}
.contact-details a:hover{color:var(--accent)} */
.site-footer {
  text-align: center;
  padding: 1rem;
  color: var(--muted);
  border-top: 1px solid #eee
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  display: flex;
  align-items: center;
  justify-content: center
}

.modal.hidden {
  display: none
}

.modal-content {
  background: white;
  padding: 1.25rem;
  border-radius: 8px;
  max-width: 420px;
  width: 90%
}

@media (max-width:600px) {
  .nav {
    padding: 0.75rem 1rem
  }

  .hero {
    padding: 2.5rem 1rem
  }

  .troudag-image img {
    border-radius: 0
  }

  .verblyf-image img {
    border-radius: 0
  }

  .gifts-image img {
    border-radius: 0
  }
}