/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: #0a0a0c;
  position: relative;
}

/* Background gradient effect */
.bg-gradient {
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(30, 30, 35, 0.8) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 30% 40%, rgba(20, 22, 28, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 70% 60%, rgba(20, 22, 28, 0.6) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0c 0%, #0e0e12 50%, #0a0a0c 100%);
  z-index: 0;
  pointer-events: none;
}

/* Gold color palette - brightened & luxurious */
:root {
  --gold-primary: #e8c56d;
  --gold-bright: #f0d48a;
  --gold-highlight: #f7e0a0;
  --gold-glow: rgba(232, 197, 109, 0.35);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 28px 48px;
  background: transparent;
}

.nav-logo {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: 1px;
  text-shadow: 0 0 20px var(--gold-glow);
}

/* Hero Section */
.hero {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

.hero-title {
  font-size: clamp(88px, 14vw, 168px);
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1.1;
  margin-bottom: 28px;
  background: linear-gradient(
    135deg,
    #d4a843 0%,
    #f0d48a 25%,
    #f7e0a0 45%,
    #e8c56d 60%,
    #f0d48a 80%,
    #d4a843 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 6s ease-in-out infinite;
  filter: drop-shadow(0 0 30px var(--gold-glow));
}

@keyframes goldShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-subtitle {
  font-size: clamp(28px, 3.8vw, 40px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 5px;
  margin-bottom: 56px;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.8px;
}

.contact-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold-bright);
  filter: drop-shadow(0 0 6px var(--gold-glow));
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    padding: 20px 24px;
  }

  .nav-logo {
    font-size: 26px;
  }

  .hero-title {
    font-size: 68px;
  }

  .hero-subtitle {
    font-size: 26px;
    letter-spacing: 3px;
  }

  .contact-info {
    gap: 18px;
  }

  .contact-line {
    font-size: 22px;
  }

  .contact-icon {
    width: 18px;
    height: 18px;
  }
}

/* On Sale Badge */
.on-sale-badge {
  display: inline-block;
  padding: 10px 36px;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: #0a0a0c;
  background: linear-gradient(135deg, #d4a843 0%, #f0d48a 50%, #d4a843 100%);
  border-radius: 30px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 56px;
  box-shadow: 0 4px 25px rgba(232, 197, 109, 0.4);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 25px rgba(232, 197, 109, 0.4); }
  50% { box-shadow: 0 6px 35px rgba(232, 197, 109, 0.6); }
}
