/* =============================================
   Global Reset & Variables
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

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

:root {
  --bg-primary: #12131a;
  --bg-secondary: #1a1b26;
  --bg-card: #1e2030;
  --gold: #c9a84c;
  --gold-light: #e0c068;
  --gold-dim: #8a6f2e;
  --text-primary: #e8e4d9;
  --text-muted: #a09890;
  --border-subtle: rgba(201, 168, 76, 0.2);
  --max-width: 1100px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: var(--gold-light);
}


/* =============================================
   Hero Section
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  background: radial-gradient(ellipse at center top, #1e2235 0%, var(--bg-primary) 60%);
}

.hero-logo {
  width: 160px;
  height: auto;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 0 30px rgba(201, 168, 76, 0.3));
}

.hero-studio-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 1rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 480px;
}

.hero-scroll-cue {
  margin-top: 4rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* =============================================
   Shared Section Styles
   ============================================= */
section {
  padding: 5rem 2rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}

/* =============================================
   About Section
   ============================================= */
.about {
  background: var(--bg-secondary);
}

.about-content {
  max-width: 720px;
}

.about p {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.85;
}

/* =============================================
   AI Work Section
   ============================================= */
.ai-work {
  background: var(--bg-primary);
}

.ai-work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.ai-work-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.ai-work-image {
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.ai-work-image img {
  width: 100%;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: all 0.25s;
  border-radius: 3px;
}

.btn:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

.btn-subtle {
  border-color: var(--gold-dim);
  color: var(--text-muted);
}

.btn-subtle:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--text-primary);
}

.game-teaser-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* =============================================
   Upcoming Release Teaser
   ============================================= */
.upcoming {
  background: var(--bg-secondary);
}

.game-teaser {
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  margin-top: 2rem;
}

.game-teaser-image {
  position: relative;
  min-height: 320px;
  background-size: cover;
  background-position: center;
}

.game-teaser-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--bg-card));
}

.game-teaser-body {
  background: var(--bg-card);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.game-teaser-title {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
}

.game-teaser-hook {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =============================================
   Contact Section
   ============================================= */
.contact {
  background: var(--bg-primary);
  text-align: center;
}

.contact p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.contact-email {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.contact-email:hover {
  color: var(--gold-light);
}

.contact-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-link {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--gold-dim);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--gold-light);
}

/* =============================================
   Footer
   ============================================= */
.footer {
  background: #0d0e14;
  border-top: 1px solid var(--border-subtle);
  padding: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* =============================================
   Fade-in Animations
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }

  .ai-work-grid {
    grid-template-columns: 1fr;
  }

  .game-teaser {
    grid-template-columns: 1fr;
  }

  .game-teaser-image {
    min-height: 200px;
  }

  .game-teaser-image::after {
    background: linear-gradient(to bottom, transparent 60%, var(--bg-card));
  }
}
