@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg-dark: #08080a;
  --gold-primary: #C5A059;
  --gold-light: #ebd2a0;
  --gold-dark: #8c6e3c;
  --text-white: #ffffff;
  --text-ivory: #E0D8D0;
  
  --font-sans: "Plus Jakarta Sans", "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Georgia", "Playfair Display", serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  background-color: var(--bg-dark);
  color: var(--text-ivory);
  font-family: var(--font-sans);
  overflow: hidden;
  position: relative;
}

::selection {
  background: rgba(197, 160, 89, 0.3);
  color: var(--text-white);
}

#main-landing-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 1.5rem;
}

/* Background elements styling */
#ambient-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

#ambient-background canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ambient-blob {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: blur(80px);
  pointer-events: none;
}

.blob-1 {
  top: 15%;
  left: 10%;
  width: 320px;
  height: 320px;
  background: rgba(197, 160, 89, 0.08);
  animation: float 12s ease-in-out infinite;
}

.blob-2 {
  bottom: 15%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: rgba(197, 160, 89, 0.05);
  animation: float 16s ease-in-out infinite 3s;
}

.blob-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 650px;
  height: 650px;
  background: rgba(197, 160, 89, 0.06);
  filter: blur(140px);
  animation: pulse-soft 9s ease-in-out infinite;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(var(--gold-primary) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Hero elements */
main.content-block {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.main-title {
  font-size: 4.5rem;
  font-weight: 300;
  font-style: italic;
  font-family: var(--font-display);
  color: var(--text-white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  user-select: none;
}

@media (min-width: 640px) {
  .main-title {
    font-size: 6.5rem;
  }
}

.main-title span {
  font-style: normal;
  font-family: var(--font-sans);
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: -0.04em;
  background: linear-gradient(to right, var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Keyframe Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) scale(1);
    filter: blur(80px);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
    filter: blur(95px);
  }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 0.04; }
  50% { opacity: 0.09; }
}
