:root {
  --wedding-primary: #ca6641;
  --wedding-secondary: #ff855c;
  --wedding-accent: #f7e7ce;
  --wedding-dark: #343a40;
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.navbar-brand {
  font-family: "Great Vibes", cursive;
  font-size: 1.8rem;
  color: var(--wedding-primary);
}

.navbar-brand span {
  color: var(--wedding-dark);
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  display: block;
  margin-top: -6px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-link {
  font-weight: 500;
}

.nav-link.active,
.nav-link:hover {
  color: var(--wedding-primary) !important;
}

.navbar-toggler {
  background: rgba(255, 255, 255, 0.5);
  border: none;
}

.navbar-toggler-icon {
  background-image: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-with-logo {
  display: inline-flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.brand-logo {
  height: 120px;
  width: auto;
}

.navbar-toggler {
  background: transparent;
  border: none;
  color: #fff;
}

.navbar-toggler-icon {
  background-image: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler-icon i {
  color: var(--wedding-primary);
}

/* Hero */
#hero {
  min-height: 100vh;
  background: radial-gradient(circle at top, #ffe5ec 0, #fff9fb 40%, #ffffff 100%);
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.6);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.hero-badge i {
  color: var(--wedding-primary);
}

.hero-names {
  font-family: "Great Vibes", cursive;
  font-size: clamp(3rem, 5vw, 4rem);
  color: var(--wedding-dark);
}

.hero-names span {
  color: var(--wedding-primary);
}

.hero-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: #6c757d;
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.countdown-item {
  flex: 1 1 70px;
  min-width: 70px;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  padding: 0.75rem 0.6rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
}

.countdown-number {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--wedding-primary);
}

.countdown-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6c757d;
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-illustration {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.hero-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

.hero-card h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--wedding-accent);
  font-size: 0.78rem;
  color: var(--wedding-primary);
}

.hero-floating-heart {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wedding-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  animation: float 4s ease-in-out infinite;
}

.hero-floating-heart--left {
  top: 15%;
  left: -10px;
}

.hero-floating-heart--right {
  bottom: 5%;
  right: -10px;
  animation-delay: 1.6s;
}

.hero-scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: #6c757d;
  text-align: center;
  cursor: pointer;
}

.hero-scroll i {
  display: block;
  font-size: 1.1rem;
  animation: bounce 1.2s infinite;
  color: var(--wedding-primary);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}
/* Section layout */
section {
  padding: 4.5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-family: "Great Vibes", cursive;
  font-size: 2.3rem;
  color: var(--wedding-primary);
}

.section-title p {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: #6c757d;
}

/* Our Story */
.story-timeline {
  position: relative;
  padding-left: 1rem;
}

.story-timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--wedding-primary), transparent);
  opacity: 0.4;
}

.story-item {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.5rem;
}

.story-dot {
  position: absolute;
  left: 10px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--wedding-primary);
}
.story-dot-filled {
  background: var(--wedding-primary);
}

.story-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--wedding-primary);
  margin-bottom: 0.25rem;
}

.story-date {
  font-size: 0.8rem;
  color: #6c757d;
}

/* Details */
.detail-card {
  border: none;
  border-radius: 1.25rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.04);
  background: #ffffff;
}

.detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--wedding-accent);
  color: var(--wedding-primary);
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
}

.color {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-right: 0.4rem;
}
.color:nth-child(1) {
  background: #000080;
}
.color:nth-child(2) {
  background: #730b08;
}
.color:nth-child(3) {
  background: #b2ac88;
}
.color:nth-child(4) {
  background: #ca6641;
}
.color:nth-child(5) {
  background: #f7e7ce;
}
.color:nth-child(6) {
  background: #ff855c;
}

/* Gallery */
.gallery-img {
  border-radius: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
  height: 180px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.gallery-img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
}

/* RSVP */
#rsvp {
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.28), rgba(255, 255, 255, 0.92));
}

.rsvp-card {
  border-radius: 1.5rem;
  padding: 2rem;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.form-control:focus {
  border-color: var(--wedding-primary);
  box-shadow: 0 0 0 0.2rem rgba(255, 111, 145, 0.25);
}

.btn-wedding-primary {
  background: var(--wedding-primary);
  border-color: var(--wedding-primary);
  color: #ffffff;
  border-radius: 999px;
  padding-inline: 1.5rem;
}

.btn-wedding-primary:hover {
  background: var(--wedding-secondary);
  border-color: var(--wedding-secondary);
  color: #ffffff;
}

.badge-soft {
  background: #fff0f5;
  color: var(--wedding-primary);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
}

/* Footer */
footer {
  padding: 2rem 0 1rem;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.85rem;
  color: #6c757d;
}

.footer-heart {
  color: var(--wedding-primary);
}

/* Simple fade-in on scroll */
.fade-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* RSVP page */
.rsvp-page {
  background: radial-gradient(circle at 10% 20%, rgba(255, 182, 193, 0.22), transparent 35%), radial-gradient(circle at 85% 10%, rgba(255, 111, 145, 0.15), transparent 30%), #fff9fb;
  min-height: 100vh;
}

.rsvp-hero {
  padding: 120px 0 40px;
}

.rsvp-hero-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 111, 145, 0.12);
}

.rsvp-hero .hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--wedding-accent);
  color: var(--wedding-primary);
  border-radius: 999px;
  font-weight: 600;
}

.rsvp-hero .hero-badge {
  text-align: right;
  color: var(--wedding-dark);
}

.rsvp-hero .hero-date {
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.4rem;
}

.rsvp-hero .hero-place {
  font-size: 0.95rem;
  color: #6c757d;
  padding: 0.4rem;
}

.rsvp-card-shell {
  border-radius: 16px;
}

.rsvp-progress {
  background: linear-gradient(90deg, var(--wedding-primary), #ffa6c5);
}

.step-pill {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--wedding-accent);
  color: var(--wedding-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 111, 145, 0.25);
}

.rsvp-walkthrough .guest-item {
  background: #fff;
  border: 1px solid rgba(52, 58, 64, 0.08);
  border-radius: 12px;
  padding: 12px;
}

.rsvp-walkthrough .guest-item[data-index] {
  background: rgba(255, 229, 236, 0.45);
}

@media (max-width: 767.98px) {
  #hero {
    text-align: center;
    min-height: 125vh; /* prevent scroll hint from overlapping illustration on short screens */
  }
  .hero-card {
    margin-top: 2.5rem;
  }
  .hero-illustration {
    max-width: 340px;
  }
  .story-timeline::before {
    left: 10px;
  }
  .story-item {
    padding-left: 2rem;
  }
  .story-dot {
    left: 2px;
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    --wedding-primary: #ff855c;
    --wedding-secondary: #f7e7ce;
    --wedding-accent: #ca6641;
    --wedding-dark: #f2f2f2;
  }
  body {
    background-color: #0f1116;
    color: #e6e6e6;
  }
  .navbar {
    background: rgba(18, 20, 28, 0.8);
  }
  .navbar-brand span,
  .nav-link {
    color: #d7d7d7;
  }
  .hero-card,
  .detail-card,
  .rsvp-card,
  .rsvp-card-shell,
  .rsvp-hero-card,
  .rsvp-walkthrough .guest-item,
  .card {
    background: #161a23;
    color: #e6e6e6;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
  .hero-subtitle,
  .text-muted,
  .card-text,
  .story-date {
    color: #b9beca !important;
  }
  .badge-soft {
    background: rgba(255, 159, 189, 0.2);
    color: var(--wedding-primary);
  }
  #hero {
    background: radial-gradient(circle at 20% 10%, rgba(255, 159, 189, 0.14), transparent 35%), radial-gradient(circle at 90% 0%, rgba(255, 159, 189, 0.12), transparent 30%), #0f1116;
  }
  .hero-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e6e6e6;
  }
  .hero-names {
    color: #f7f7f7;
  }
  .hero-names span {
    color: var(--wedding-primary);
  }
  .hero-subtitle {
    color: #cdd2dd;
  }
  .hero-chip, .rsvp-hero .hero-chip, .step-pill {
    background: rgba(255, 159, 189, 0.18);
    color: var(--wedding-primary);
  }
  .countdown-number {
    color: #f7f7f7;
  }
  .countdown-label {
    color: #b9beca;
  }
  .countdown-item {
    background: rgba(22, 26, 35, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
  .hero-scroll {
    color: #e6e6e6;
  }
  .detail-icon {
    color: var(--wedding-dark);
  }
  .btn-wedding-primary:hover {
    background: var(--wedding-secondary);
    border-color: var(--wedding-secondary);
    color: #343a40;
  }
  #rsvp {
    background: linear-gradient(135deg, rgba(255, 159, 189, 0.28), rgba(15, 17, 22, 0.92));
  }
  .form-text {
    color: #9aa0ad;
  }
  footer {
    background: #0f1116;
    color: #9aa0ad;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  .rsvp-page {
    background: radial-gradient(circle at 10% 20%, rgba(255, 159, 189, 0.22), transparent 35%), radial-gradient(circle at 85% 10%, rgba(255, 111, 145, 0.18), transparent 30%), #0f1116;
  }
  .form-control,
  .form-select {
    background: #1c202a;
    color: #f2f2f2;
    border-color: #3a4050;
  }
  .form-control::-moz-placeholder {
    color: #9aa0ad;
  }
  .form-control::placeholder {
    color: #9aa0ad;
  }
  .navbar-toggler {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .navbar-toggler-icon i {
    color: #fff;
  }
}
@media (max-width: 767.98px) {
  .navbar-brand.brand-with-logo {
    font-size: 0;
    gap: 0;
  }
  .navbar-brand.brand-with-logo span {
    display: none;
  }
  .navbar-brand.brand-with-logo .brand-logo {
    height: 36px;
  }
}
@media (max-width: 575.98px) {
  .rsvp-hero .hero-badge {
    font-size: 0.9rem;
    line-height: 1.2;
    text-align: left;
  }
}/*# sourceMappingURL=styles.css.map */