/* 1122 Productions LLC — Static Landing Page Styles */

/* Google Font: Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

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

html, body {
  height: 100%;
}

body {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  background-color: #0A0A0A;
  color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Vignette background */
.bg-vignette {
  background:
    radial-gradient(ellipse at top, rgba(38, 36, 31, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse at bottom, rgba(28, 27, 23, 0.5) 0%, transparent 60%),
    #0A0A0A;
}

/* Main container */
.page-wrapper {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

/* Animated gold glow layers */
.glow-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  filter: blur(80px);
}

.glow-1 {
  background: radial-gradient(circle at 50% 32%, rgba(201, 168, 76, 0.38) 0%, rgba(201, 168, 76, 0.16) 22%, transparent 58%);
  animation: goldGlow 12s ease-in-out infinite;
}

.glow-2 {
  background: radial-gradient(circle at 18% 72%, rgba(201, 168, 76, 0.30) 0%, rgba(201, 168, 76, 0.12) 20%, transparent 50%);
  animation: goldDrift 18s ease-in-out infinite;
}

.glow-3 {
  background: radial-gradient(circle at 84% 24%, rgba(201, 168, 76, 0.28) 0%, rgba(201, 168, 76, 0.12) 18%, transparent 48%);
  animation: goldDrift2 24s ease-in-out infinite;
}

/* Content layer */
.content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Logo */
.logo {
  width: 100%;
  max-width: 48rem;
  height: auto;
  opacity: 0;
  animation: fadeUp 0.9s ease-out 0s both;
}

@media (min-width: 768px) {
  .logo {
    max-width: 56rem;
  }
}


/* Launch text */
.launch-text {
  margin-top: 3rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  color: #C9A84C;
  opacity: 0;
  animation: fadeUp 0.9s ease-out 0.15s both;
}

@media (min-width: 768px) {
  .launch-text {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

/* Contact links */
.contact-row {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.2em;
  color: #b0aba3;
  font-family: Georgia, "Times New Roman", serif;
  opacity: 0;
  animation: fadeUp 0.9s ease-out 0.3s both;
}

@media (min-width: 768px) {
  .contact-row {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.contact-row a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-row a:hover {
  color: #C9A84C;
}

.separator {
  color: rgba(201, 168, 76, 0.6);
}

/* Keyframes */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes goldGlow {
  0%, 100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.15);
  }
}

@keyframes goldDrift {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0.3;
  }
  25% {
    transform: translate(6vw, -4vh);
    opacity: 0.45;
  }
  50% {
    transform: translate(-5vw, 3vh);
    opacity: 0.35;
  }
  75% {
    transform: translate(3vw, 5vh);
    opacity: 0.5;
  }
}

@keyframes goldDrift2 {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0.25;
  }
  33% {
    transform: translate(-7vw, 5vh);
    opacity: 0.4;
  }
  66% {
    transform: translate(5vw, -4vh);
    opacity: 0.3;
  }
}
