@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&family=Great+Vibes&display=swap');

html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; }

/* ── Scrollbar ──────────────────────────────────────── */
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: #3c1a28; }
::-webkit-scrollbar-thumb { background: #c9a84c66; border-radius: 3px; }

/* ── Nav ────────────────────────────────────────────── */
#main-nav {
  background: transparent;
  transition: all 0.4s ease;
}
#main-nav.scrolled {
  background: rgba(48,18,32,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,168,76,0.22);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.nav-link {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e8ddd0;
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: #c9a84c;
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.nav-active { color: #c9a84c; }
.nav-link:hover::after, .nav-link.nav-active::after { width: 100%; }

/* ── Hero ───────────────────────────────────────────── */
.hero-home {
  background:
    radial-gradient(ellipse 80% 55% at 18% 72%, rgba(200,70,100,0.35) 0%, transparent 100%),
    radial-gradient(ellipse 60% 70% at 80% 22%, rgba(180,55,85,0.28) 0%, transparent 100%),
    radial-gradient(ellipse 45% 45% at 50% 50%, rgba(201,168,76,0.1) 0%, transparent 100%),
    linear-gradient(160deg, #3c1a28 0%, #4a2035 40%, #3e1a2c 70%, #452030 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Breathing gold shimmer */
.hero-shimmer {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 45% at 50% 42%, rgba(201,168,76,0.14) 0%, transparent 70%);
  animation: shimmerBreathe 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmerBreathe {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.06); }
}

/* Petal */
.hero-petal {
  position: absolute;
  pointer-events: none;
  border-radius: 80% 0 55% 50% / 55% 0 80% 50%;
  animation: petalDrift linear infinite;
  top: -30px;
}
@keyframes petalDrift {
  0%   { transform: translateY(0)     rotate(0deg)   translateX(0px);   opacity: 0; }
  5%   {                                                                 opacity: 0.9; }
  22%  { transform: translateY(22vh)  rotate(110deg) translateX(22px); }
  47%  { transform: translateY(47vh)  rotate(255deg) translateX(-18px); }
  72%  { transform: translateY(72vh)  rotate(405deg) translateX(28px);  opacity: 0.7; }
  92%  {                                                                 opacity: 0.25; }
  100% { transform: translateY(110vh) rotate(560deg) translateX(5px);   opacity: 0; }
}

/* Sparkle */
.hero-sparkle {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  background: #c9a84c;
  animation: sparkleTwinkle ease-in-out infinite;
}
@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0;   transform: scale(0.2); }
  50%       { opacity: 0.9; transform: scale(1); }
}

/* Rings — made more visible */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.35);
  animation: ringPulse ease-in-out infinite;
  pointer-events: none;
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.45; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 1;    transform: translate(-50%,-50%) scale(1.05); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0.5; pointer-events: none;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, #c9a84c, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; } 50% { opacity: 1; }
}

/* ── Page Heroes ────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex; align-items: center; justify-content: center;
  padding: 8rem 1.5rem 4rem;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(20,8,14,0.45);
}
.page-hero-romance {
  background:
    radial-gradient(ellipse at 30% 60%, rgba(210,80,110,0.55) 0%, transparent 55%),
    linear-gradient(160deg, #4a1a2e 0%, #5e2038 50%, #4a1a2e 100%);
}
.page-hero-birthday {
  background:
    radial-gradient(ellipse at 30% 60%, rgba(155,114,200,0.55) 0%, transparent 55%),
    linear-gradient(160deg, #351048 0%, #461860 50%, #351048 100%);
}
.page-hero-proposals {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.4) 0%, transparent 60%),
    linear-gradient(160deg, #3a2a10 0%, #4e3814 50%, #3a2a10 100%);
}

/* ── Shared Decoratives ─────────────────────────────── */
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #f0e4d4;
  letter-spacing: 0.08em;
}
.gold-divider {
  width: 60px; height: 1px;
  background: linear-gradient(to right, transparent, #c9a84c, transparent);
  margin-top: 1rem; margin-bottom: 1rem;
}
.diamond-rule {
  display: inline-block; width: 40px; height: 1px;
  background: linear-gradient(to right, transparent, #c9a84c, transparent);
  margin-bottom: 2px;
}

/* ── Buttons ────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: #c9a84c;
  color: #2a1020;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 22px rgba(201,168,76,0.32), 0 1px 4px rgba(0,0,0,0.2);
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
  cursor: pointer;
}
.btn-primary:hover {
  background: #e8d4a0;
  box-shadow: 0 6px 30px rgba(201,168,76,0.48), 0 2px 8px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: transparent;
  color: #f0e4d4;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(240,228,212,0.45);
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  transition: all 0.25s;
}
.btn-outline:hover {
  border-color: #c9a84c;
  color: #c9a84c;
  box-shadow: 0 4px 20px rgba(201,168,76,0.2);
  transform: translateY(-2px);
}

/* ── Collection Cards ───────────────────────────────── */
.collection-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(201,168,76,0.18);
  text-decoration: none;
  background: #522038;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.collection-card:hover {
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(0,0,0,0.4);
}
.collection-bg { height: 220px; }
.collection-romance {
  background:
    radial-gradient(ellipse at 40% 50%, rgba(220,90,120,0.6) 0%, transparent 70%),
    linear-gradient(160deg, #5a1a30 0%, #7a2240 100%);
}
.collection-birthday {
  background:
    radial-gradient(ellipse at 55% 40%, rgba(165,124,210,0.6) 0%, transparent 70%),
    linear-gradient(160deg, #3a1848 0%, #4e1e62 100%);
}
.collection-proposals {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.55) 0%, transparent 70%),
    linear-gradient(160deg, #3a2810 0%, #503818 100%);
}
.collection-body { padding: 1.75rem 1.75rem 1.5rem; }
.collection-icon { font-size: 1.75rem; display: block; margin-bottom: 0.75rem; }

/* ── Step Cards ─────────────────────────────────────── */
.step-card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 14px;
  background: #522038;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.step-card:hover {
  border-color: rgba(201,168,76,0.38);
  box-shadow: 0 10px 36px rgba(0,0,0,0.25);
  transform: translateY(-3px);
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300;
  color: rgba(201,168,76,0.4);
  line-height: 1; margin-bottom: 1rem;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400;
  color: #f0e4d4; margin-bottom: 0.75rem;
}
.step-text { font-size: 0.8rem; line-height: 1.7; color: #c8b0a4; }

/* ── Package Cards ──────────────────────────────────── */
.pkg-card {
  position: relative;
  background: #4e1e36;
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.pkg-card:hover {
  box-shadow: 0 14px 44px rgba(0,0,0,0.35);
  transform: translateY(-4px);
}
.pkg-featured {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 8px 36px rgba(201,168,76,0.15);
}
.pkg-luxury { border-color: rgba(201,168,76,0.28); }

.pkg-popular-badge {
  background: #c9a84c; color: #2a1020;
  text-align: center;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.4rem 1rem;
}
.pkg-header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  background: #3e1830;
}
.pkg-emoji  { font-size: 2rem; margin-bottom: 1rem; }
.pkg-price  {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300;
  color: #c9a84c; margin-bottom: 0.5rem;
}
.pkg-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400;
  color: #f0e4d4; margin-bottom: 0.4rem;
}
.pkg-badge { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: #a09080; }

.pkg-features {
  list-style: none;
  padding: 1.75rem 2rem; flex: 1;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.pkg-features li {
  font-size: 0.82rem; color: #d0b8b0;
  padding-left: 1.25rem; position: relative; line-height: 1.5;
}
.pkg-features li::before {
  content: '◆'; position: absolute; left: 0; top: 0.05em;
  font-size: 0.45rem; color: #c9a84c;
}
.pkg-btn {
  margin: 0 2rem 2rem;
  padding: 0.85rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.45);
  color: #c9a84c;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: all 0.25s;
}
.pkg-btn:hover {
  background: #c9a84c; color: #2a1020;
  border-color: #c9a84c;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  transform: translateY(-1px);
}
.pkg-featured .pkg-btn { background: #c9a84c; color: #2a1020; box-shadow: 0 4px 18px rgba(201,168,76,0.3); }
.pkg-featured .pkg-btn:hover { background: #e8d4a0; border-color: #e8d4a0; box-shadow: 0 6px 26px rgba(201,168,76,0.45); }

/* ── Proposal Features ──────────────────────────────── */
.proposal-feature {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 12px; background: #3e1830;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.proposal-feature:hover {
  border-color: rgba(201,168,76,0.38);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

/* ── Forms ──────────────────────────────────────────── */
.form-label {
  display: block; font-size: 0.62rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #c0a898; margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: #f0e4d4;
  font-size: 0.875rem; font-family: 'Inter', sans-serif;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  outline: none;
}
.form-input:focus {
  border-color: rgba(201,168,76,0.6);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-input::placeholder { color: #907870; }

.form-success {
  text-align: center; padding: 3rem 2rem;
  border: 1px solid rgba(201,168,76,0.4); border-radius: 14px;
  background: rgba(201,168,76,0.07);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.form-error {
  text-align: center; padding: 1.25rem 2rem;
  border: 1px solid rgba(200,80,80,0.35); border-radius: 12px;
  background: rgba(200,80,80,0.07); color: #e0a0a0;
  margin-bottom: 1.5rem; font-size: 0.85rem;
}

/* ── Cart ───────────────────────────────────────────── */
.qty-btn {
  width: 28px; height: 28px;
  border: 1px solid rgba(201,168,76,0.4); border-radius: 50%;
  background: transparent; color: #c9a84c;
  font-size: 1rem; cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: #c9a84c; color: #2a1020; }

/* ── Toast ──────────────────────────────────────────── */
.cart-toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #4e1e36; border: 1px solid rgba(201,168,76,0.45);
  color: #f0e4d4; font-size: 0.78rem; letter-spacing: 0.05em;
  padding: 0.75rem 1.75rem; border-radius: 50px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 9999; white-space: nowrap;
}
.cart-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Footer ─────────────────────────────────────────── */
.footer-heading {
  font-size: 0.62rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: #c9a84c; margin-bottom: 1.5rem;
}
.footer-link {
  font-size: 0.875rem; color: #a09080;
  text-decoration: none; transition: color 0.25s;
}
.footer-link:hover { color: #c9a84c; }
