@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;600&display=swap');

:root {
  --bg-color: #0f172a;
  /* Slate 900 */
  --text-main: #f8fafc;
  /* Slate 50 */
  --text-muted: #94a3b8;
  /* Slate 400 */
  --accent-gold: #d4af37;
  /* Metallic Gold */
  --accent-gold-light: #fcd34d;
  --glass-bg: rgba(30, 41, 59, 0.7);
  /* Slate 800 with opacity */
  --glass-border: rgba(255, 255, 255, 0.1);

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: default;
  /* Reverting to default cursor for cleaner pro look, or custom minimal dot */
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.08), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(99, 102, 241, 0.05), transparent 25%);
}

/* Typography */
h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 1.5rem;
  color: var(--accent-gold);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 2rem;
}

p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Luxury Glass Cards */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  /* Sharper corners for pro look */
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  width: 90%;
  position: relative;
  overflow: hidden;
}

/* Elegant Decoration Lines */
.glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0.5;
}

/* Buttons */
.btn-gold {
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  transition: all 0.4s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-gold:hover {
  background: var(--accent-gold);
  color: var(--bg-color);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Navigation - Minimal Dots or Clean Text */
.nav-dock {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.5rem;
  padding: 1rem 2rem;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s;
  font-size: 1.2rem;
  /* Icons size */
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold);
}

/* Animations Config - Helper Classes */
.gsap-reveal {
  opacity: 0;
  transform: translateY(20px);
}

/* Utility */
.hidden {
  display: none !important;
}

.text-gold {
  color: var(--accent-gold);
}

/* Dynamic Background Hearts */
.bg-heart {
  position: fixed;
  top: 100%;
  left: 50%;
  font-size: 20px;
  color: rgba(212, 175, 55, 0.1);
  /* Gold/Weak opacity */
  user-select: none;
  pointer-events: none;
  z-index: -1;
  animation: floatUp 15s linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) rotate(0deg) scale(0.8);
    opacity: 0;
  }

  10% {
    opacity: 0.3;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-120vh) rotate(360deg) scale(1.2);
    opacity: 0;
  }
}