/*
Theme Name: Grabblers Coming Soon
Theme URI: https://example.com/grabblers
Author: Eleanor Vane
Description: A dark cinematic Coming Soon theme for "The Grabblers of Carreg Nos." Single landing page with atmospheric gradients, twinkling stars, and gold accents.
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: grabblers-coming-soon
*/

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

html, body {
  background: #070b1a;
  color: #e9ecf5;
  font-family: Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.gcs-main {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

.gcs-layer { position: absolute; inset: 0; pointer-events: none; }

.gcs-grad-1 { background: radial-gradient(ellipse 70% 55% at 50% 45%, rgba(30,42,90,0.55), transparent 65%); }
.gcs-grad-2 { background: radial-gradient(ellipse 40% 35% at 18% 88%, rgba(140,30,55,0.35), transparent 70%); }
.gcs-grad-3 { background: radial-gradient(ellipse 35% 30% at 88% 78%, rgba(20,30,70,0.5), transparent 70%); }
.gcs-vignette { background: radial-gradient(ellipse 100% 80% at 50% 50%, transparent 55%, rgba(0,0,0,0.85) 100%); }

.gcs-grain {
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.gcs-stars { position: absolute; inset: 0; pointer-events: none; }
.gcs-star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  opacity: 0.35;
  animation: gcs-twinkle 4s ease-in-out infinite;
}
@keyframes gcs-twinkle {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.7; }
}

.gcs-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
}
@media (min-width: 768px) {
  .gcs-header { padding: 36px 56px; }
}
.gcs-brand, .gcs-year {
  font-size: 11px;
  letter-spacing: 0.45em;
}
.gcs-brand { color: #d4a64a; }
.gcs-year { color: rgba(255,255,255,0.55); }

.gcs-hero {
  position: relative;
  z-index: 10;
  max-width: 1024px;
  margin: 0 auto;
  min-height: 78vh;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.gcs-eyebrow {
  color: #d4a64a;
  font-size: 11px;
  letter-spacing: 0.5em;
  margin-bottom: 40px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  opacity: 0;
  transform: translateY(8px);
  animation: gcs-rise 1s ease forwards;
}

.gcs-title {
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #f3f1ea;
  text-shadow: 0 0 40px rgba(180,200,255,0.18);
  opacity: 0;
  transform: translateY(12px);
  animation: gcs-rise 1s ease 0.15s forwards;
}

.gcs-subtitle {
  margin-top: 20px;
  font-size: clamp(24px, 4vw, 56px);
  color: #d4a64a;
  letter-spacing: 0.35em;
  text-shadow: 0 0 30px rgba(212,166,74,0.35);
  opacity: 0;
  transform: translateY(12px);
  animation: gcs-rise 1s ease 0.3s forwards;
}

.gcs-tagline {
  margin-top: 40px;
  max-width: 36rem;
  font-style: italic;
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(220,225,240,0.78);
  opacity: 0;
  transform: translateY(8px);
  animation: gcs-rise 1s ease 0.5s forwards;
}

.gcs-pill {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.5em;
  color: #d4a64a;
  font-family: "Helvetica Neue", Arial, sans-serif;
  opacity: 0;
  animation: gcs-rise 1s ease 0.7s forwards;
}
.gcs-pill .gcs-rule {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #d4a64a;
}

@keyframes gcs-rise {
  to { opacity: 1; transform: translateY(0); }
}

.gcs-footer {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
}
.gcs-descend {
  font-size: 10px;
  letter-spacing: 0.5em;
  color: #d4a64a;
  margin-bottom: 12px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
.gcs-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, #d4a64a, transparent);
  animation: gcs-pulse 2s ease-in-out infinite;
}
@keyframes gcs-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
