/* ================================================================
   BASE & RESET
================================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #f5f0e8;
  --gold: #c9a96e;
  --gold-lt: #e8d5a3;
  --dark: #1a1a1a;
  --dark2: #2c2c2c;
  --charcoal: #3a3a3a;
  --white: #ffffff;
  --text-lt: rgba(255, 255, 255, 0.85);
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Montserrat", sans-serif;
  --font-script: "Great Vibes", cursive;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--white);
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
  position: relative;
}

/* ================================================================
   UTILITIES
================================================================ */
.hidden {
  display: none !important;
}

/* ================================================================
   COVER SECTION
================================================================ */
.cover-section {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/wedding2.jpg");
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

.cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(5, 3, 2, 0.65) 50%,
    rgba(0, 0, 0, 0.72) 100%
  );
  pointer-events: none;
}

/* particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatUp var(--dur, 8s) var(--delay, 0s) infinite ease-in-out;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

.cover-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 28px;
  animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cover-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 12px;
}

.cover-names {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}

.ampersand {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 62px;
  vertical-align: middle;
}

.cover-date {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold-lt);
  margin-bottom: 28px;
}

.cover-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.cover-divider span:not(.diamond) {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.diamond {
  color: var(--gold);
  font-size: 9px;
}

.cover-to {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 8px;
}

.cover-guest {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--gold-lt);
  margin-bottom: 16px;
  line-height: 1.3;
}

.cover-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 2;
  margin-bottom: 36px;
}

.btn-open {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 3px;
  padding: 14px 30px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-open::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.4s ease;
  z-index: 0;
}

.btn-open:hover::before,
.btn-open:active::before {
  transform: translateX(0);
}
.btn-open:hover {
  color: var(--dark);
}
.btn-open span,
.btn-arrow {
  position: relative;
  z-index: 1;
}

/* ================================================================
   SECTION COMMONS
================================================================ */
section {
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding: 60px 28px 32px;
}

.section-script {
  font-family: var(--font-script);
  font-size: 32px;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.section-script.light {
  color: var(--gold-lt);
}

.section-title {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 5px;
  color: var(--white);
  margin-bottom: 14px;
}
.section-title.light {
  color: var(--white);
}

.section-line {
  width: 50px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}
.section-line.light {
  background: linear-gradient(90deg, transparent, var(--gold-lt), transparent);
}

/* ================================================================
   FADE ANIMATIONS
================================================================ */
.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) {
  transition-delay: 0.15s;
}
.fade-up:nth-child(3) {
  transition-delay: 0.3s;
}

/* ================================================================
   HERO SECTION
================================================================ */
.hero-section {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/wedding1.jpg");
  background-size: cover;
  background-position: center top;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
  width: 100%;
}

.hero-day-row {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
}

.hero-day-item {
  flex: 1;
  padding: 16px 8px;
  border-right: 1px solid rgba(201, 169, 110, 0.25);
}
.hero-day-item:last-child {
  border-right: none;
}

.hero-small {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 6px;
}
.hero-big {
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--white);
}

.hero-photo-wrap {
  position: relative;
  width: 220px;
  height: 290px;
  margin: 0 auto 28px;
}

.hero-photo-inner {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.3);
  position: relative;
  z-index: 2;
  background: #2a2520;
}

.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  background: linear-gradient(160deg, #2a2520, #1a1610);
}

.hero-glow {
  position: absolute;
  inset: -8px;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 169, 110, 0.15) 0%,
    transparent 70%
  );
  z-index: 1;
  border-radius: 8px;
}

.hero-script {
  font-family: var(--font-script);
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 2px;
}

.hero-couple {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-quote {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  padding: 0 8px;
  border-left: 2px solid var(--gold);
  text-align: left;
}

.hero-quote cite {
  display: block;
  font-size: 12px;
  color: var(--gold);
  margin-top: 10px;
  font-style: normal;
  letter-spacing: 1px;
}

/* ================================================================
   COUPLE / PROFILE SECTION
================================================================ */
.couple-section {
  background: var(--dark);
}

/* Full-bleed portrait panel */
.portrait-panel {
  position: relative;
  width: 100%;
  min-height: 92dvh;
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: flex-end;
}

.bride-panel {
  background-image: url("images/cewe.jpg");
}
.groom-panel {
  background-image: url("images/cowo.jpg");
}

.portrait-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.72) 75%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

.portrait-info {
  position: relative;
  z-index: 2;
  padding: 0 28px 40px;
  width: 100%;
}

.portrait-script {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--white);
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 4px;
  display: block;
}

.portrait-name {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.1;
}

.portrait-divider {
  width: 44px;
  height: 1.5px;
  background: var(--white);
  margin-bottom: 14px;
  opacity: 0.7;
}

.portrait-role {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold-lt);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.portrait-parents {
  font-family: var(--font-serif);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 16px;
}

.portrait-ig {
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 7px;
}

.couple-separator {
  display: flex;
  align-items: center;
  padding: 20px 40px;
  gap: 12px;
  background: var(--dark);
}
.sep-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 110, 0.4),
    transparent
  );
}
.sep-heart {
  color: var(--gold);
  font-size: 22px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* ================================================================
   COUNTDOWN SECTION
================================================================ */
.countdown-section {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.countdown-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/wedding1.jpg");
  background-size: cover;
  background-position: center;
}
.countdown-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.countdown-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px 28px;
  width: 100%;
}

.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 32px;
}

.cd-item {
  flex: 1;
  max-width: 80px;
}

.cd-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 8px;
  padding: 12px 6px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}
.cd-num::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(201, 169, 110, 0.3);
}

.cd-label {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.cd-dot {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--gold);
  padding-bottom: 20px;
  line-height: 1;
  align-self: center;
}

/* ================================================================
   EVENT SECTION
================================================================ */
.event-section {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("images/wedding2.jpg");
  background-size: cover;
  background-position: center;
  padding-bottom: 60px;
}

.event-block {
  padding: 0 36px;
  text-align: center;
  margin-bottom: 8px;
}

.event-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 28px 40px;
}
.event-sep span:not(.diamond) {
  display: block;
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 110, 0.45),
    transparent
  );
}
.event-sep .diamond {
  color: var(--gold);
  font-size: 9px;
}

.event-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 12px;
}

.event-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
}

.event-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  text-align: left;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.event-info-icon {
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-map {
  display: inline-block;
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.4);
  padding-bottom: 2px;
  transition: all 0.3s;
}
.btn-map:hover {
  color: var(--gold-lt);
  border-color: var(--gold-lt);
}

/* ================================================================
   GALLERY SECTION
================================================================ */
.gallery-section {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
    url("images/wedding1.jpg");
  background-size: cover;
  background-position: center;
  padding-bottom: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 180px 180px 180px;
  gap: 6px;
  padding: 0 20px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #252020, #1a1816);
  border: 1px solid rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-tall {
  grid-row: span 2;
}
.g-wide {
  grid-column: span 2;
  grid-row: span 1;
  height: 140px;
}

.gallery-placeholder {
  font-size: 36px;
  opacity: 0.4;
}

/* ================================================================
   GIFT SECTION
================================================================ */
.gift-section {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("images/wedding2.jpg");
  background-size: cover;
  background-position: center;
  padding-bottom: 60px;
}

.gift-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  padding: 0 28px;
  text-align: center;
  margin-top: 12px;
}

.gift-card {
  margin: 20px 20px 0;
  padding: 28px 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #232020, #1a1816);
  border: 1px solid rgba(201, 169, 110, 0.15);
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.gift-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gift-bank-logo {
  font-size: 32px;
  margin-bottom: 12px;
}
.gift-bank {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 8px;
}
.gift-account {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.gift-owner {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
}

.btn-copy {
  padding: 10px 28px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
}
.btn-copy:hover,
.btn-copy.copied {
  background: var(--gold);
  color: var(--dark);
}

/* ================================================================
   OUR STORY SECTION
================================================================ */
.story-section {
  position: relative;
  overflow: hidden;
}
.story-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/wedding1.jpg");
  background-size: cover;
  background-position: center;
}
.story-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}
.story-content {
  position: relative;
  z-index: 2;
  padding: 60px 24px 60px;
}

.story-heading {
  margin-bottom: 40px;
}
.story-title {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 16px;
  line-height: 1.1;
}
.story-intro {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  text-align: justify;
}

.story-milestone {
  margin-bottom: 44px;
}
.story-ms-title {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.story-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 16px;
}
.story-photo {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story-text {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
  text-align: justify;
}

/* ================================================================
   WISHES SECTION
================================================================ */
.wishes-section {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("images/wedding2.jpg");
  background-size: cover;
  background-position: center;
  padding-bottom: 60px;
}

.wishes-list {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wish-card {
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #232020, #1a1816);
  border: 1px solid rgba(201, 169, 110, 0.12);
  animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.wish-name {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 4px;
}

.wish-attend {
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}
.wish-attend.hadir {
  color: #6db87a;
}
.wish-attend.tidak {
  color: #e07a7a;
}

.wish-text {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.wish-time {
  margin-top: 10px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
}

/* ================================================================
   WISH FORM (Ucapan Langsung)
================================================================ */
.wish-form-wrap {
  padding: 0 20px 28px;
}

.wish-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(30, 25, 20, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.wish-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.wf-row {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.wf-row:last-of-type {
  border-bottom: none;
}

.wf-label {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  padding: 14px 14px 14px 18px;
  align-self: center;
  min-width: 90px;
  flex-shrink: 0;
}

.wf-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  caret-color: var(--gold);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}
.wf-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.wf-input:focus {
  background: rgba(201, 169, 110, 0.04);
}

.wf-textarea {
  resize: none;
  min-height: 88px;
  line-height: 1.7;
}

.btn-wish {
  margin: 14px 18px 18px;
  padding: 14px;
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.55);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s;
}
.btn-wish:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.76)),
    url("images/wedding1.jpg");
  background-size: cover;
  background-position: center bottom;
  text-align: center;
  padding: 48px 28px 60px;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.footer-script {
  font-family: var(--font-script);
  font-size: 44px;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-date {
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.footer-hearts {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.heart {
  color: var(--gold);
  font-size: 16px;
  animation: heartbeat 2s ease-in-out infinite;
}
.heart2 {
  animation-delay: 0.3s;
  font-size: 22px;
}
.heart3 {
  animation-delay: 0.6s;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

.footer-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
}

/* ================================================================
   TOAST NOTIFICATION
================================================================ */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(30, 30, 30, 0.95);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 1px;
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s ease;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
