/* ========================================
   BAR MITSVAH SHIMONE — Style
   Carte rectangle arrondi, fidèle à exemple.jpeg
   ======================================== */
@font-face {
  font-family: "Coastal";
  src: url("/font/Coastal.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

html {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background:
    radial-gradient(circle at 20% 30%, rgba(0, 40, 90, 0.35) 0%, transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(0, 25, 60, 0.4) 0%, transparent 60%),
    radial-gradient(circle at 50% 100%, rgba(0, 15, 40, 0.5) 0%, transparent 60%),
    linear-gradient(135deg,
      #00040a 0%,
      #000814 25%,
      #000b1c 50%,
      #00060f 75%,
      #00040a 100%);

  background-attachment: fixed;
  min-height: 100vh;

  font-family: "Comfortaa", serif;
  color: #ffffff;

  overflow-x: hidden !important;
  position: relative;
}


.mirror {
 left: 0;
    transform: scaleX(-1);



}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(10, 30, 60, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(5, 15, 35, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(15, 35, 70, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

body.no-scroll {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
}

/* ==============================
   NAVIGATION EVENEMENTS
   ============================== */
.event-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  width: 100%;
  margin: 0;
  padding: 16px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 40, 90, 0.35) 0%, transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(0, 25, 60, 0.4) 0%, transparent 60%),
    radial-gradient(circle at 50% 100%, rgba(0, 15, 40, 0.5) 0%, transparent 60%),
    linear-gradient(135deg,
      #00040a 0%,
      #000814 25%,
      #000b1c 50%,
      #00060f 75%,
      #00040a 100%);
  background-attachment: fixed;
  border: none;
  border-bottom: 2px solid #eafeff;
  border-radius: 0;
  box-shadow:
    0 8px 16px #00d4ff,
   
    0 0 12px #00d4ff;
}

.event-nav a {
  font-family: "Comfortaa", serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: none;
  -webkit-tap-highlight-color: transparent;
}

.event-nav a:hover {
  color: #ffffff;
  background: rgba(100, 100, 100, 0.26);
}

.event-nav a:visited,
.event-nav a:active,
.event-nav a:focus,
.event-nav a:focus-visible {
  color: #ffffff;
  background: transparent;
  outline: none;
}

.section[id],
.countdown-section[id],
.form-section[id] {
  scroll-margin-top: 0;
}

body {
  padding-top: 90px;
}

/* ==============================
   OVERLAY
   ============================== */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #000810 0%, #001015 25%, #000608 50%, #000a10 75%, #000810 100%);
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.7s ease;
  overflow: hidden;
}

/* L'overlay lui-même = une carte rectangle arrondie */
.overlay-content {
  text-align: center;
  padding: 36px 32px 44px;
  background: transparent;
  border: 2px solid #eafeff;
  border-radius: 0;
  position: relative;
  opacity: 1;
  transform: scale(1);
  transition: all 0.6s ease;
  max-width: 88vw;
  width: 430px;
  box-sizing: border-box;
 
}

.overlay-content::before {
  content: '';
  position: absolute;
  inset: 10px;
  background: transparent;
  border-radius: 50px;
  pointer-events: none;
}

.overlay-content>* {
  position: relative;
  z-index: 1;
}

.overlay-logo {
  width: min(220px, 55vw);
  margin-bottom: 14px;

  animation: fadeInDown 0.8s ease,
             logoPulse 3s ease-in-out infinite 0.8s;

  transform-origin: center;

  filter:
    drop-shadow(0 0 3px rgba(210, 255, 120, 0.65))
    drop-shadow(0 0 8px rgba(200, 255, 90, 0.30));
}

@keyframes logoPulse {
  0% {
    transform: scale(1);
    filter:
      drop-shadow(0 0 3px rgba(210, 255, 120, 0.55))
      drop-shadow(0 0 8px rgba(200, 255, 90, 0.25));
  }

  50% {
    transform: scale(1.05);
    filter:
      drop-shadow(0 0 6px rgba(230, 255, 150, 0.9))
      drop-shadow(0 0 14px rgba(200, 255, 90, 0.4));
  }

  100% {
    transform: scale(1);
    filter:
      drop-shadow(0 0 3px rgba(210, 255, 120, 0.55))
      drop-shadow(0 0 8px rgba(200, 255, 90, 0.25));
  }
}
.neon-btn {
  display: inline-block;
  text-decoration: none;
}

/* Néon bleu identique aux cards */
.neon-btn {
  color: #eafeff;
  background: rgba(0, 0, 0, 0.65);

  border: 2px solid #eafeff;
  border-radius: 2px;

  padding: 13px 36px;
  margin: 40px 0px 20px 0;
  font-family: "Comfortaa", serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;

 

  transition: all 0.3s ease;
}

.neon-btn:hover {
  background: rgba(0, 20, 30, 0.8);
  transform: translateY(-2px);


}

.overlay-title {
  font-family: "Comfortaa", serif;
  font-size: clamp(16px, 5vw, 24px);
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 6px 0;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.overlay-name {
  font-family: 'Coastal', sans-serif;
  font-size: clamp(80px, 13vw, 80px);
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 1.1;
  margin: 0 0 10px 0;
  animation: fadeInUp 0.8s ease 0.3s backwards;
 
}

.overlay-guest {
  font-family: "Great Vibes", cursive;
  font-size: clamp(26px, 6vw, 40px);
  color: #ffffff;
  margin: 0 0 24px 0;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.overlay-button {
  font-family: "Comfortaa", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: #eafeff;
  background: rgba(0, 0, 0, 0.65);

  border: 2px solid #eafeff;
  border-radius: 2px;

  padding: 13px 36px;
  cursor: pointer;

  transition: all 0.3s ease;

  /* NEON BLEU comme les cards */
 


}



.overlay-button:hover {
  background: rgba(0, 20, 30, 0.8);
  transform: translateY(-2px);


}

/* ==============================
   ANIMATIONS
   ============================== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-28px);
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

/* ==============================
   SECTIONS
   ============================== */
.section {
  width: 100%;
  max-width: 100vw;
  display: flex;
  justify-content: center;
  padding: 50px 32px;
  box-sizing: border-box;
  position: relative;
}

/* ==============================
   CARTE — rectangle arrondi
   Fidèle à exemple.jpeg :
   bordure épaisse, pas d'espace entre bordure et fond
   ============================== */
.card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 45px 40px 50px;
  width: 90vw;
  max-width: 480px;
  position: relative;
  box-sizing: border-box;
  text-align: center;
}

/* Ligne intérieure fine collée à la bordure (effet cadre double) */
.card::before {
  content: none;
}

.card>* {
  position: relative;
  z-index: 1;
}

/* ---- Dédicace (texte petit italique en haut) ---- */
.card-dedication {
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  line-height: 1.6;
  margin: 0 0 32px 0;
  padding: 0 6px;
}

/* ---- Noms famille (bold caps) ---- */
.card-family {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.4;
  margin: 0 0 28px 0;
}

/* ---- Phrase intro ---- */
.card-subtitle {
  font-family: "Great Vibes", cursive;
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

/* ---- Hébreu petit ---- */
.card-hebrew-small {
  font-family: "David Libre", serif;
  font-size: 22px;
  color: #ffffff;
  direction: rtl;
  margin: 0 0 8px 0;
}

/* ---- BAR MITSVA ---- */
.card-barmitsva {
  font-family: "Comfortaa", serif;
  font-size: clamp(24px, 8vw, 40px);
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #75763d;
  line-height: 1;
  margin: 0 0 4px 0;
}

/* ---- Nom en English Towne ---- */
.card-name-gothic {
  font-family: 'Coastal', sans-serif;
  font-size: clamp(54px, 13vw, 78px);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 6px 0;
}

/* ---- Nom hébreu ---- */
.card-hebrew-name {
  font-family: "David Libre", serif;
  font-size: 20px;
  color: #ffffff;
  direction: rtl;
  margin: 0 0 28px 0;
}

/* ---- Séparateur ---- */
.card-divider {
  width: 55%;
  height: 1px;
  background: rgba(120, 120, 60, 0.55);
  margin: 0 auto 24px;
  border: none;
}

/* ==============================
   CLASSES BM-ELIE-COHEN (cartes événements)
   ============================== */

/* Titre de section — ex: Téfilines, Chabbat, Réception */
.section-title {
  font-family: 'Coastal', sans-serif;
  font-size: clamp(65px, 18vw, 150px);
  font-weight: 200;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin: 0 0 60px 0;
  text-align: center;
}

/* Phrase d'intro (ex: "La mise des Téfilines aura lieu le") */
.tefilin-intro {
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

/* Date (ex: Vendredi 23 Janvier 2026) */
.tefilin-date {
  font-family: "Comfortaa", serif;
  font-size: 21px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.4;
  font-weight: bolder;
}

/* Courte phrase de lieu (ex: "en la") */
.tefilin-location {
  font-family: "Comfortaa", serif;
  font-size: 24px;
  font-weight: 300;
  color: #ffffff;
  margin: 0 0 4px 0;
}

/* Nom du lieu principal en gros (ex: Synagogue AIOF) */
.tefilin-synagogue {
  font-family: "Coastal", serif;
  font-size: clamp(50px, 15vw, 70px);
  font-weight: 200;
  letter-spacing: 3px;
  color: #ffffff;
  margin: 6px 0 14px 0;
  line-height: 1.2;
}

/* Adresse */
.tefilin-address {
  font-family: "Comfortaa", serif;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: #ffffff;
  line-height: 1.5;
  margin: 0 0 14px 0;
}

/* Heure (ex: à 9h00 précises) */
.tefilin-time {
  font-size: 22px;
  font-weight: bolder;
  color: #ffffff;
  margin: 0 0 30px 0;
}

/* Info complémentaire (brunch, voiturier…) */
.tefilin-breakfast {
  font-family: "Comfortaa", serif;
  font-size:18;
  letter-spacing: 2px;
  font-style: italic;
  color: #ffffff;
  margin: 0 0 0 0;
  line-height: 1.3;
}

/* Conteneur du texte des cartes événements */
.tefilin-text {
  text-align: center;
  width: 100%;
}

/* Nom en gras — ex: "Thierry & Deborah" dans la soirée */
.reception-intro {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 4px 0;
  line-height: 1.3;

}

/* Nom du lieu de réception (ex: Gate Club) */
.reception-venue {
  font-family: "Comfortaa", serif;
  font-size: clamp(28px, 16vw, 27px);
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 10px 0 16px 0;
  line-height: 1.2;
}

.pergola-nova {
  font-family: "Mr De Haviland", cursive;
  font-size: clamp(82px, 14vw, 82px);
  font-weight: 400;
  letter-spacing: 0;
  margin : 30px 0 10px 0;
}

/* Nom du bar mitsvah en gothic dans la soirée */
.reception-name {
  font-family: 'Coastal', sans-serif;
  font-size: clamp(56px, 12vw, 70px);
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin: 10px 0 16px 0;
 
}

/* ---- Titre événement (MISE DES TÉFILINES, CHABBAT, SOIRÉE…) ---- */
.card-event-title {
  font-family: "Comfortaa", serif;
  font-size: clamp(16px, 5.5vw, 24px);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #75763d;
  margin: 0 0 12px 0;
}



/* ---- Ligne date (italique + parties en gras) ---- */
.card-date {
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.45;
}

.card-date strong {
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
}

/* ---- Nom lieu principal (SYNAGOGUE AIOF, GATE CLUB…) ---- */
.card-venue {
  font-family: "Comfortaa", serif;
  font-size: clamp(14px, 5vw, 21px);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #75763d;
  margin: 0 0 8px 0;
}

/* ---- Adresse ---- */
.card-address {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: #ffffff;
  line-height: 1.5;
  margin: 0 0 18px 0;
}

/* ---- Info supplémentaire (UN BRUNCH SUIVRA, SERVICE VOITURIER…) ---- */
.card-info {
  font-family: "Comfortaa", serif;
  font-size: clamp(13px, 5vw, 19px);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #75763d;
  margin: 10px 0 0 0;
}

/* ---- Ligne intro courte (italique dans les cartes event) ---- */
.card-intro {
  font-size: 21px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.4;
}

/* ---- בס״ד ---- */
.hebrew-letter {
  font-family: "David Libre", serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  direction: rtl;
  margin: 0 0 20px 0;
}

/* ==============================
   CARTE FAMILLE (structure bm-elie-cohen)
   ============================== */

/* Deux colonnes : parents gauche / fratrie droite */
.top-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.parents-left,
.parents-right {
  font-size: 18px;
  line-height: 1.35;
  color: #ffffff;
  max-width: 47%;
}

.parents-left {
  text-align: left;
}

.parents-right {
  text-align: right;
}

/* Texte central sous les colonnes */
.bottom-text {
  text-align: center;
  font-size: 22px;
  line-height: 1.5;
  color: #ffffff;
  margin-top: 10px;
}

/* Conteneur du nom + hébreu */
.names {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
}

/* Nom principal en English Towne */
.name-french {
  font-family: 'Coastal', sans-serif;
  font-size: clamp(80px, 18vw, 100px);
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  line-height: 1.1;

}

/* Nom hébreu */
.name-hebrew {
  font-family: "David Libre", serif;
  font-size: 80px;
  font-weight: 300;
  direction: rtl;
  color: #ffffff;
}

.chabbat-hebrew {
  font-family: "David Libre", serif;
  font-size: 54px;
  direction: rtl;
  text-align: center;
  margin: 0 0 18px 0;
  line-height: 1.2;
}

.memorial-text {
  font-family: "Comfortaa", serif;
  font-size: clamp(19px, 4.2vw, 22px);
  font-style: italic;
  color: #ffffff;
  text-align: center;
  line-height: 1.7;
  margin-top: 22px;
  padding: 0 8px;
}

/* ---- Waze button ---- */
.waze-button {
  display: inline-block;
  font-family: "Comfortaa", serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: #111111;
  padding: 13px 23px;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  margin-top: 22px;
  transition: background 0.3s ease;
}

.waze-button:hover {
  background: #2d2d2d;
}

.agenda-link {
  display: inline-block;
  margin-top: 18px;
  font-family: "Comfortaa", serif;
  font-size: 18px;
  font-style: italic;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.agenda-link:hover,
.agenda-link:focus,
.agenda-link:visited {
  color: #ffffff;
}

/* ==============================
   COUNTDOWN
   ============================== */
.countdown-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 16px 20px;
}

.countdown-wrapper {
  background: transparent;
  border: 2px solid #eafeff;
  border-radius: 0;
  padding: 28px 32px;
  width: 90vw;
  max-width: 480px;
  text-align: center;
  position: relative;
  box-sizing: border-box;

}

.countdown-wrapper::before {
  content: none;
}

.countdown-wrapper>* {
  position: relative;
  z-index: 1;
}

/* Cartes événements: carte externe + carte interne (comme exemple.jpeg) */
.card.event-card,
.countdown-wrapper.event-card,
#rsvp.event-card {
  background: transparent;
  border: 2px solid #eafeff;
  border-radius: 0;
  padding: 30px 26px 38px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;

}

.card.event-card {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.card.event-card::before,
.countdown-wrapper.event-card::before,
#rsvp.event-card::before {
  content: none;
}

.card.event-card>*,
.countdown-wrapper.event-card>*,
#rsvp.event-card>* {
  position: relative;
  z-index: 1;
}

/* ==============================
   SOIREE (même style que tout le site maintenant)
   ============================== */
.soiree-section {
  background: none;
  border: none;
}

.soiree-section .event-card {
  border: 2px solid #fffbe1;

}

.save-the-date {
  font-family: 'Coastal', sans-serif;
  font-size: 50px;
  margin: 0 0 20px 0;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;

}

.chabbat-script {
  font-family: "Coastal", cursive;

  /* grandit selon la div, max 60px */
  font-size: min(60px, 11cqw);

  color: #fff;
  line-height: 1.2;
  margin: 10px 0 20px;
  text-align: center;

  /* jamais de retour à la ligne */
  white-space: nowrap;

  /* évite tout dépassement */
  max-width: 100%;
}

.chabbat-script strong {
  font-size: clamp(42px, 7vw, 60px);
  color: #eafeff;
}

.countdown-date {
  font-family: "comfortaa", cursive;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 18px 0;
}

.countdown-container {
  display: flex;
  gap: 18px;
  justify-content: center;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 58px;
}

.countdown-number {
  font-family: "Coastal", cursive;
  font-size: 64px;
  font-weight: 200;
  color: #ffffff;
  line-height: 1;
}

.countdown-label {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ==============================
   FORMULAIRE RSVP
   ============================== */
.form-section {
  width: 90vw;
  max-width: 480px;
  margin: 0 auto 48px;
  padding: 0;
  box-sizing: border-box;
}

#rsvp {
  position: relative;
  box-sizing: border-box;
}

#rsvp::before {
  content: none;
}

#rsvp h1 {
  font-family: 'Coastal', sans-serif;
  font-size: clamp(54px, 11vw, 80px);
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 28px 0;

}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group textarea {
  width: 100%;
  padding: 11px 13px;
  font-family: "Comfortaa", serif;
  font-size: 17px;
  color: #000000;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  box-sizing: border-box;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #eafeff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.form-group input[type="number"] {
  margin-top: 9px;
}

.form-group input[type="number"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-group textarea {
  resize: vertical;
  min-height: 78px;
}

.checkbox-group {
  display: flex;
  gap: 20px;
  margin-bottom: 8px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  margin: 0;
}

.checkbox-group input[type="radio"] {
  width: 17px;
  height: 17px;
  cursor: pointer;
  accent-color: #000000;
}

.form-submit {
  text-align: center;
  margin-top: 26px;
}

.btnSubmit {
  font-family: "Comfortaa", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #eafeff;
  background: #111111;
  padding: 13px 48px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.13);
}

.btnSubmit:hover {
  background: #2d2d2d;
  transform: translateY(-2px);
}

#statusDiv {
  animation: fadeIn 0.3s ease;
}

/* ==============================
   MUSIC BUTTON
   ============================== */
.music-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: #111111;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: background 0.3s;
}

.music-toggle:hover {
  background: #2d2d2d;
}

.music-icon {
  width: 22px;
  height: 22px;
  color: #fff;
}

/* ==============================
   PALM LEAF DECORATIONS
   ============================== */
.palm-leaf-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 170px;
  height: auto;
  z-index: 0;
  object-fit: contain;

  filter:
    drop-shadow(0 0 4px rgba(74, 222, 128, 1)) drop-shadow(0 0 8px rgba(74, 222, 128, 0.9)) drop-shadow(0 0 16px rgba(74, 222, 128, 0.8)) drop-shadow(0 0 32px rgba(74, 222, 128, 0.7)) drop-shadow(0 0 64px rgba(74, 222, 128, 0.5));
}


.city-decoration {
  position: absolute;
  top: 50%;
  left: 0;
  right: auto;

  transform: translateY(-50%);

  width: 220px;
  height: auto;

  margin-left: -20px;
  pointer-events: none;

  filter:
    drop-shadow(0 0 4px rgba(100, 255, 10, 0.884)) drop-shadow(0 0 10px rgba(169, 255, 10, 0.95)) drop-shadow(0 0 20px rgba(181, 255, 10, 0.85)) drop-shadow(0 0 40px rgba(149, 255, 10, 0.75)) drop-shadow(0 0 80px rgba(255, 214, 10, 0.55));

  opacity: 0.95;
}


/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 480px) {
  body {
    background-attachment: fixed;
  }

  .overlay {
    background-attachment: fixed;
  }

  .event-nav {
    padding: 15px 10px;
    gap: 6px;
  }

  .event-nav a {
    font-size: 15px;
    padding: 6px 10px;
  }

  .section {
    padding: 40px 24px;
  }

  .card {
    padding: 36px 4px 40px;
  }

  .card.event-card {
    padding: 36px 14px 40px;
  }

  .countdown-wrapper.event-card {
    padding: 24px 14px;
  }

  #rsvp.event-card {
    padding: 14px;
  }

  .card-name-gothic {
    font-size: clamp(38px, 11vw, 52px);
  }

  .card-barmitsva {
    font-size: clamp(24px, 8vw, 36px);
  }

  .countdown-number {
    font-size: 64px;
  }

  .countdown-label {
    font-size: 14px;
  }

  .countdown-container {
    gap: 10px;
  }

  .checkbox-group {
    flex-direction: column;
    gap: 10px;
  }

}


/* ==========================================
   TEXT NEON
   ========================================== */

/* BLUE */
.text-neon-blue {
  color: #eafeff;

  text-shadow:
    0 0 4px rgba(0, 212, 255, 1),
    0 0 8px rgba(0, 212, 255, 0.9),
    0 0 16px rgba(0, 212, 255, 0.8),
    0 0 32px rgba(0, 212, 255, 0.7),
    0 0 64px rgba(0, 212, 255, 0.6);
}

/* DARK BLUE */
.text-neon-dark-blue {
  color: #d7ebff;

  text-shadow:
    0 0 4px rgba(45, 120, 255, 1),
    0 0 8px rgba(45, 120, 255, 0.9),
    0 0 16px rgba(45, 120, 255, 0.8),
    0 0 32px rgba(45, 120, 255, 0.7),
    0 0 64px rgba(45, 120, 255, 0.6);
}

/* GREEN */
.text-neon-green {
  color: #e9ffe8;

  text-shadow:
    0 0 4px rgba(74, 222, 128, 1),
    0 0 8px rgba(74, 222, 128, 0.9),
    0 0 16px rgba(74, 222, 128, 0.8),
    0 0 32px rgba(74, 222, 128, 0.7),
    0 0 64px rgba(74, 222, 128, 0.6);
}

/* YELLOW */
.text-neon-yellow {
  color: #fffbe1;

  text-shadow:
    0 0 4px rgba(255, 223, 0, 1),
    0 0 8px rgba(255, 223, 0, 0.95),
    0 0 16px rgba(255, 223, 0, 0.85),
    0 0 32px rgba(255, 223, 0, 0.7),
    0 0 64px rgba(255, 223, 0, 0.6);
}


/* ==========================================
   BOX NEON
   ========================================== */

/* BLUE */
.box-neon-blue {
  border-color: #eafeff !important;

  box-shadow:
    0 0 4px #00d4ff,
    inset 0 0 4px #00d4ff,
    0 0 8px #00d4ff,
    inset 0 0 8px #00d4ff,
    0 0 16px #00d4ff,
    inset 0 0 16px #00d4ff;
}

/* DARK BLUE */
.box-neon-dark-blue {
  border-color: #ffffff !important;

  box-shadow:
    0 0 4px #2d78ff,
    inset 0 0 4px #2d78ff,
    0 0 8px #2d78ff,
    inset 0 0 8px #2d78ff,
    0 0 16px #2d78ff,
    inset 0 0 16px #2d78ff;
}

/* GREEN */
.box-neon-green {
  border-color: #ffffff !important;

  box-shadow:
    0 0 4px #4ade80,
    inset 0 0 4px #4ade80,
    0 0 8px #4ade80,
    inset 0 0 8px #4ade80,
    0 0 16px #4ade80,
    inset 0 0 16px #4ade80;
}

/* YELLOW */
.box-neon-yellow {
  border-color: #ffffff !important;

  box-shadow:
    0 0 4px #ffdf00,
    inset 0 0 4px #ffdf00,
    0 0 8px #ffdf00,
    inset 0 0 8px #ffdf00,
    0 0 16px #ffdf00,
    inset 0 0 16px #ffdf00;
}


/* ==========================
   GRANDS-PARENTS
   ========================== */

.grandparents-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.grandparent-left,
.grandparent-right {
  width: 48%;
  font-size: 18px;
  line-height: 1.5;
  color: #ffffff;
}

.grandparent-left {
  text-align: left;
}

.grandparent-right {
  text-align: right;
}

.overlay-guest {
  font-family: "Comfortaa", serif;
  font-size: clamp(18px, 4.5vw, 28px);
  font-weight: 700;
  letter-spacing: 2px;
  color: #eafeff;

  text-shadow:
    0 0 4px rgba(0, 212, 255, 1),
    0 0 8px rgba(0, 212, 255, 0.9),
    0 0 16px rgba(0, 212, 255, 0.8),
    0 0 32px rgba(0, 212, 255, 0.7);

  margin: 10px 0 24px 0;
}