.elementor-9 .elementor-element.elementor-element-bc48819{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-136f39d *//* ---------------------------------------------------
   GLOBAL PASTEL BACKGROUND + RESET
--------------------------------------------------- */
body {
  font-family: "Poppins", sans-serif;
  background: radial-gradient(circle at 15% 20%, #e7f2ff 0%, #f3f8ff 40%, #f3f8ff 100%);
  background-attachment: fixed;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #121d33;
}

/* Delikatne plamki świetlne */
body::before,
body::after {
  content: "";
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.35;
  z-index: -2;
}

body::before {
  background: #b7e5ff;
  top: -80px;
  left: -100px;
}

body::after {
  background: #d7c6ff;
  bottom: -80px;
  right: -120px;
}


/* ---------------------------------------------------
   CONTAINER & CARDS
--------------------------------------------------- */
.container {
  max-width: 930px;
  margin: 2.5rem auto;
  padding: 0 1.2rem;
}

.card {
  background: rgba(255, 255, 255, 0.78);
  padding: 2rem;
  border-radius: 1.5rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  margin-bottom: 2.2rem;
}


/* ---------------------------------------------------
   HERO – GLASS CARD VERSION (selected option 1)
--------------------------------------------------- */
.hero {
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 1.8rem;
  padding: 2.6rem 2.2rem;
  max-width: 850px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* Typografia */
.hero-card h1 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #182335;
  margin-bottom: 0.5rem;
}

.hero-card .subtitle {
  font-size: 1.1rem;
  color: #3c4a66;
  margin-bottom: 1.3rem;
}

.hero-card .intro {
  font-size: 1.05rem;
  margin-top: 0.6rem;
  line-height: 1.65;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Button */
.btn-primary {
  background: linear-gradient(135deg, #5e6bff, #786bff);
  border: none;
  color: white;
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  border-radius: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: 0.25s;
  box-shadow: 0 4px 12px rgba(70, 80, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(70, 80, 255, 0.33);
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/* Mini badge (countdown preview) */
.countdown-badge {
  background: #fff;
  padding: 0.4rem 1rem;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}


/* ---------------------------------------------------
   COUNTDOWN CARD
--------------------------------------------------- */
.countdown-card h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.countdown-value {
  font-size: 1.25rem;
  text-align: center;
  font-weight: 600;
  color: #22304d;
}


/* ---------------------------------------------------
   FULL PHOTO
--------------------------------------------------- */
.full-photo {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}


/* ---------------------------------------------------
   TIMELINE (selected option 1)
--------------------------------------------------- */
.timeline {
  border-left: 3px solid #d1d9e6;
  margin-left: 1rem;
  padding-left: 2rem;
}

.timeline-item {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
  margin-bottom: 2rem;
}

.timeline-item.inview {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item .dot {
  width: 18px;
  height: 18px;
  background: #6e7bff;
  border-radius: 50%;
  position: absolute;
  left: -10px;
  margin-top: 3px;
  box-shadow: 0 0 0 5px rgba(110,123,255,0.25);
}

.timeline-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.timeline-item p {
  margin-top: 0.3rem;
  color: #3b5066;
}

.timeline-item .muted {
  color: #7d8ca2;
  font-size: 0.92rem;
  margin-left: 4px;
}


/* ---------------------------------------------------
   CHECK-IN / OUT
--------------------------------------------------- */
.check-row {
  display: flex;
  gap: 1rem;
}

.check-card {
  flex: 1;
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.check-card h3 {
  color: #4e5cc9;
  margin-bottom: 0.4rem;
}

/* Mobile */
@media(max-width: 700px) {
  .check-row {
    flex-direction: column;
  }
}


/* ---------------------------------------------------
   CAROUSEL
--------------------------------------------------- */
.carousel {
  overflow: hidden;
  border-radius: 1.2rem;
  margin-bottom: 1rem;
}

.carousel-track {
  display: flex;
  transition: transform 0.8s ease;
}

.carousel-track img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  flex-shrink: 0;
}


/* ---------------------------------------------------
   RSVP
--------------------------------------------------- */

.rsvp-instruction {
  margin-bottom: 1rem;
  color: #4f5a6d;
  text-align: center;
}

.progress-wrap {
  margin-bottom: 1.3rem;
}

.progress-label {
  text-align: center;
  margin-bottom: 0.4rem;
}

.progress-bar {
  height: 12px;
  background: #e6ebf5;
  border-radius: 8px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #7ee8fa, #80ff72);
  transition: width 0.4s ease-out;
}

.rsvp-grid {
  display: flex;
  gap: 1rem;
}

.group-card {
  background: #fafbff;
  border-radius: 1.2rem;
  padding: 1.2rem;
  box-shadow: 0 5px 12px rgba(0,0,0,0.05);
  flex: 1;
}

.group-title {
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
}

.guest-list {
  padding: 0;
  list-style: none;
}

.guest-item {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  background: #fff;
  border-radius: 0.8rem;
  margin-bottom: 0.6rem;
  border: 1px solid #e5e6ec;
  cursor: pointer;
  transition: 0.2s;
}

.guest-item:hover {
  transform: translateY(-2px);
}

.guest-item.pending { background: #f7f8fa; }
.guest-item.confirmed { background: #e9ffe9; border-color: #bff7bf; }
.guest-item.denied { background: #ffe9e9; border-color: #f9b1b1; }


/* Mobile */
@media(max-width: 700px) {
  .rsvp-grid {
    flex-direction: column;
  }
}


/* ---------------------------------------------------
   FAQ – "OPTION A"
--------------------------------------------------- */
.faq-card h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2.1rem;
}

.faq-card h2::before {
  content: "❓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.7rem;
}

.faq-item {
  margin-bottom: 1.7rem;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.7);
  border-radius: 1rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-item h4 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.faq-item p {
  color: #46546e;
  font-size: 0.98rem;
  margin: 0;
}


/* ---------------------------------------------------
   POPUP
--------------------------------------------------- */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1.7rem 2rem;
  background: #fff;
  border-radius: 1.3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  z-index: 9999;
  text-align: center;
  opacity: 1;
  transition: opacity .3s, transform .3s;
}

.popup.hidden {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  pointer-events: none;
}

.popup-emoji {
  font-size: 2.3rem;
  margin-bottom: 0.4rem;
}


/* ---------------------------------------------------
   FOOTER
--------------------------------------------------- */
footer {
  text-align: center;
  padding: 2rem 0;
  font-size: 0.95rem;
  color: #56627c;
  opacity: 0.9;
}

/* ---------------------------------------------------
   MOBILE FIXES
--------------------------------------------------- */
@media(max-width: 480px) {

  .hero-card {
    padding: 1.8rem 1.3rem;
  }

  .hero-card h1 {
    font-size: 1.85rem;
  }

  .card {
    padding: 1.5rem;
  }

  .timeline {
    margin-left: 0.5rem;
  }

  .timeline-item .dot {
    left: -13px;
  }

  .full-photo {
    border-radius: 1.2rem;
  }

  .faq-item {
    padding: 0.9rem 1rem;
  }

}
/* ================================
   🔧 POPRAWA TIMERA (bardziej sexy)
================================ */

.timer-box {
  margin: 0 auto;
  background: linear-gradient(145deg, #ffffff, #f1f4ff);
  padding: 12px 22px;
  font-size: 17px !important;
  font-weight: 600;
  color: #4a4f6a;
  border-radius: 22px;
  box-shadow: 0 6px 18px rgba(77, 87, 255, 0.15);
  display: inline-block;
  letter-spacing: 0.4px;
  backdrop-filter: blur(6px);
}

/* Zmniejszenie padającego cienia pod kafelkiem timera */
.countdown-card {
  margin-top: 1.2rem !important;
  
}
/* ===========================================
   🔥 MOCNIEJSZY GRADIENT TŁA (bardziej widoczny)
=========================================== */
body {
  background: radial-gradient(circle at 20% 20%, #f1f5ff 0%, #e7edff 20%, #e4f0ff 45%, #f5f8ff 80%);
}


/* ===========================================
   🔥 TIMER – ulepszone wizualnie pudełko
=========================================== */
.timer-box {
  margin: 0 auto;
  background: linear-gradient(145deg, #ffffff, #eef1ff);
  padding: 12px 26px;
  font-size: 18px;
  font-weight: 600;
  color: #3a3f58;
  border-radius: 22px;
  box-shadow: 0 7px 25px rgba(90, 110, 255, 0.20);
  display: inline-block;
  letter-spacing: 0.3px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(140, 150, 255, 0.18);
}

@media(max-width: 480px) {
  .timer-box {
    font-size: 16px;
    padding: 10px 20px;
  }
}


/* ===========================================
   🔥 TIMELINE – poprawiony układ i odstępy
=========================================== */

/* Kropka po lewej */
.timeline-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #8e9bff, #6d4cff);
  flex-shrink: 0;
}

/* Wyrównanie elementów */
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 26px;
}

/* Tytuł dnia */
.timeline-item h4 {
  margin: 0 0 6px 0;
  font-size: 20px;
}

/* Główny opis */
.timeline-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
}

/* "Reszta do dogadania" – zejście pod opis, nie obok */
.timeline-extra {
  margin-left: 36px !important;
  margin-top: 6px;
  font-size: 15px;
  color: #8187a5;
  display: block;
}

@media(max-width: 480px) {
  .timeline-item {
    gap: 12px;
  }
  .timeline-extra {
    margin-left: 34px !important;
  }
}
/* =====================================================
   🟣 FINAL — SUPER TIMELINE (wyrównany, zero nachodzenia)
===================================================== */

/* Reset starych wersji */
.timeline-item,
.timeline-item h4,
.timeline-item p,
.timeline-dot,
.timeline-item .dot {
  all: unset;
}

/* Kontener timeline */
.timeline {
  border-left: 3px solid #d1d9e6;
  margin-left: 1rem;
  padding-left: 2rem;
  position: relative;
}

/* Element listy */
.timeline-item {
  position: relative;
  margin-bottom: 2.4rem;
  padding-left: 2.6rem;
}

/* Kropka */
.timeline-item::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #8e9bff, #6d4cff);
  box-shadow: 0 0 0 6px rgba(130, 120, 255, 0.25);
}

/* Nagłówek dnia */
.timeline-item h4 {
  font-size: 1.25rem;
  margin: 0 0 6px 0;
  font-weight: 700;
  color: #182335;
}

/* Opis dnia */
.timeline-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.48;
  color: #3b4b64;
}

/* "Reszta do dogadania" — ZAWSZE poniżej */
.timeline-extra {
  display: block;
  margin-top: 8px;
  margin-left: 0;
  font-size: 0.92rem;
  color: #7887a5;
}


/* Mobile fix */
@media (max-width: 480px) {
  .timeline-item {
    padding-left: 2.2rem;
  }
  .timeline-item::before {
    left: -14px;
  }
}


/* =====================================================
   💎 FINAL — SUPER TIMER (ładny, premium, modern)
===================================================== */

/* Reset starego timera */
.timer-box {
  all: unset;
}

/* NOWY TIMER */
.timer-box {
  display: inline-block;
  background: linear-gradient(140deg, #ffffff 0%, #eef1ff 100%);
  padding: 14px 30px;
  margin: 0 auto;
  font-size: 1.15rem;
  font-weight: 700;
  color: #2d3551;
  border-radius: 22px;
  letter-spacing: 0.4px;

  /* premium look */
  box-shadow: 0 8px 25px rgba(100, 110, 255, 0.22);
  border: 1px solid rgba(120, 130, 255, 0.28);
  backdrop-filter: blur(8px);

  /* animacja lekkiego pulsowania */
  animation: timerPulse 3.5s infinite ease-in-out;
}

/* Animation */
@keyframes timerPulse {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-2px) scale(1.02); }
  100% { transform: translateY(0) scale(1); }
}

/* Mobile */
@media (max-width: 480px) {
  .timer-box {
    font-size: 1rem;
    padding: 12px 24px;
  }
}
/* =====================================================
   ⭐ SUPER TIMELINE — perfekcyjne wyrównanie
===================================================== */

.timeline {
  position: relative;
  border-left: 3px solid #cfd6e7;
  margin-left: 0.8rem;
  padding-left: 2.4rem;
}

/* Każdy element */
.timeline-item {
  position: relative;
  margin-bottom: 2.1rem;
  padding-left: 0.2rem;
}

/* Duże gradientowe koło — idealnie wyrównane */
.timeline-item::before {
  content: "";
  position: absolute;
  left: -33px;               /* kropka idealnie przy linii */
  top: 4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #a5b1ff, #6b57ff);
  box-shadow: 0 0 0 7px rgba(130, 120, 255, 0.22);
}

/* Nagłówek dnia */
.timeline-item h4 {
  font-size: 1.22rem;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: #1a2137;
}

/* Opis */
.timeline-item p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #3b4b64;
}

/* "Reszta do dogadania" */
.timeline-extra {
  display: block;
  margin-top: 6px;
  margin-left: 0;
  color: #7b86a5;
  font-size: 0.95rem;
}

/* Mobile fix */
@media (max-width: 480px) {
  .timeline {
    padding-left: 1.6rem;
  }

  .timeline-item::before {
    left: -28px;
    width: 24px;
    height: 24px;
    box-shadow: 0 0 0 6px rgba(130, 120, 255, 0.22);
  }

  .timeline-item h4 {
    font-size: 1.15rem;
  }
}


/* =====================================================
   ✨ SHINE EFFECT — przycisk "Potwierdź udział"
===================================================== */

.btn-primary {
  position: relative;
  overflow: hidden;
}

/* Shine */
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.55) 50%,
    transparent 100%
  );
  transform: skewX(-25deg);
  transition: 0.7s;
}

.btn-primary:hover::after {
  left: 120%;
}
/* =====================================================
   ⭐ NOWY ELEGANCKI TIMELINE (bez linii i kropek)
===================================================== */

.timeline {
  margin-top: 1.5rem;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.75);
  border-radius: 1.2rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Mała pastelowa ikonka (zamiast dużej kropki) */
.timeline-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #a7b3ff, #6b58ff);
  box-shadow: 0 4px 14px rgba(80, 70, 255, 0.25);
  flex-shrink: 0;
}

/* Teksty */
.timeline-content h4 {
  font-size: 1.20rem;
  margin: 0 0 5px;
  font-weight: 700;
  color: #1a2137;
}

.timeline-content p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.45;
  color: #3b4b64;
}

/* "Reszta do dogadania" */
.timeline-extra {
  margin-top: 6px;
  font-size: 0.95rem;
  color: #7b86a5;
  display: block;
}

/* Mobile */
@media(max-width: 480px) {
  .timeline-item {
    padding: 0.9rem 1rem;
    gap: 12px;
  }
  .timeline-icon {
    width: 32px;
    height: 32px;
  }
  .timeline-content h4 {
    font-size: 1.1rem;
  }
}/* End custom CSS */