:root {
  --gold: #c9a961;
  --gold-light: #d4af37;
  --black-deep: #0a0a0a;
  --black-rich: #111111;
  --cream: #f4f1e9;
  --text-soft: #e8e4d9;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
}

.heading-serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.heading-elegant {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.luxury-text {
  color: #f4f1e9;
}

.gold {
  color: #c9a961;
}

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #c9a961, transparent);
  opacity: 0.3;
}

.velvet-bg {
  background-color: #0a0a0a;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(201, 169, 97, 0.015) 0%, transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(201, 169, 97, 0.01) 0%, transparent 50%);
}

.nav-active {
  color: #c9a961;
  position: relative;
}

.nav-active:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #c9a961;
}

.elegant-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(201, 169, 97, 0.15);
}

.elegant-card:hover {
  transform: translateY(-4px);
  border-color: #c9a961;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.gold-border {
  border-color: #c9a961;
  border-opacity: 0.3;
}

.wedding-date {
  font-size: 1.1rem;
  letter-spacing: 4px;
  font-weight: 500;
}

.nav-scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
}

.ornament {
  position: relative;
}

.ornament::before,
.ornament::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, #c9a961, transparent);
}

.ornament::before {
  right: 100%;
  margin-right: 12px;
}

.ornament::after {
  left: 100%;
  margin-left: 12px;
}

.gallery-img {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-img:hover {
  transform: scale(1.015);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
}

.modal {
  animation: modalPop 0.3s ease forwards;
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.countdown-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 700;
}

.luxury-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.luxury-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent 20%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 80%
  );
  transition: left 0.7s;
}

.luxury-btn:hover::after {
  left: 250%;
}

.template-label {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 500;
}

.hero-section {
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: blur(2px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.82) 45%, rgba(10, 10, 10, 0.95) 100%),
    radial-gradient(circle at center, rgba(201, 169, 97, 0.08) 0%, transparent 55%);
}

.hero-couple-frame {
  position: relative;
  width: 9.5rem;
  height: 9.5rem;
  border-radius: 9999px;
  padding: 3px;
  background: linear-gradient(135deg, #c9a961, rgba(201, 169, 97, 0.25), #c9a961);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(201, 169, 97, 0.15);
}

.hero-couple-ring {
  position: absolute;
  inset: -10px;
  border-radius: 9999px;
  border: 1px solid rgba(201, 169, 97, 0.25);
  pointer-events: none;
}

.hero-couple-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9999px;
  border: 3px solid #0a0a0a;
}

@media (min-width: 768px) {
  .hero-couple-frame {
    width: 13rem;
    height: 13rem;
  }
}

.guest-btn.selected {
  border-color: #c9a961 !important;
  background-color: rgba(201, 169, 97, 0.1);
  color: #c9a961;
}
