/* =============================================
   BIG RIDGE STUDIOS — Main Stylesheet
   Colors: Navy #162035 | Mid-navy #1e3a5f | Gold #f5a c23 | Cream #f7f4ef
============================================= */

:root {
  --navy:      #162035;
  --navy-mid:  #1e3a5f;
  --navy-light:#2a5080;
  --gold:      #f5ac23;
  --gold-dark: #d4921a;
  --cream:     #f7f4ef;
  --cream-dark:#ede9e1;
  --text:      #1a1a2e;
  --text-muted:#5a6070;
  --white:     #ffffff;
  --radius:    16px;
  --shadow:    0 4px 24px rgba(22,32,53,0.13);
  --shadow-lg: 0 8px 40px rgba(22,32,53,0.20);
  --font-body: 'Nunito', sans-serif;
  --font-head: 'Raleway', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
}

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

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

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2.5px solid var(--navy-mid);
}
.btn-secondary:hover { background: var(--navy-mid); color: var(--white); }

.btn-light {
  background: var(--white);
  color: var(--navy);
}
.btn-light:hover { background: var(--cream); }

/* ---- SECTION LABELS ---- */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 560px;
}
.section-subtitle.light { color: rgba(255,255,255,0.8); }

/* =============================================
   HEADER / NAV
============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(22, 32, 53, 0.97);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.3); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
}

.nav-logo {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 2rem;
}
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.main-nav a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: opacity 0.2s;
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    gap: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .main-nav.open { display: flex; }
}

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, #2a5f8a 100%);
  padding-top: 5rem;
  padding-bottom: 0;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245,172,35,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245,172,35,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 4rem;
}

.hero-logo {
  width: min(340px, 70vw);
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.4));
}

.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  font-weight: 600;
}

.hero-wave {
  position: relative;
  line-height: 0;
  margin-top: -1px;
}
.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* =============================================
   DISCLAIMER BAR
============================================= */
.disclaimer-bar {
  background: #fff8e7;
  border-bottom: 2px solid #ffe0a0;
}

.disclaimer-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding-block: 1rem;
  font-size: 0.92rem;
  color: #5a4200;
}
.disclaimer-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.disclaimer-inner p { line-height: 1.5; }

/* =============================================
   GAMES SECTION
============================================= */
.games-section {
  padding-block: 5rem;
  background: var(--cream);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 480px), 1fr));
  gap: 2rem;
}

.game-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.game-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  z-index: 2;
}

/* Game art area */
.game-art {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
}

.rg-art {
  background: linear-gradient(135deg, #2d1b4e 0%, #4a2d7a 40%, #1a3a2e 100%);
}

.placeholder-art {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.game-art-icon, .coming-soon-icon {
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

/* Game info */
.game-info {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.age-tag {
  display: inline-block;
  background: #e8f4fd;
  color: #1a5fa0;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  width: fit-content;
}

.game-info h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.game-desc {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.65;
}

.game-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.platform-tag {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}

.kids-notice {
  font-size: 0.82rem;
  color: #2e7d32;
  background: #f1faf1;
  border: 1px solid #c8e6c9;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  line-height: 1.4;
}

.coming-soon .game-art {
  font-size: 4rem;
}

/* =============================================
   ABOUT SECTION
============================================= */
.about-section {
  background: var(--navy);
  padding-block: 5rem;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.about-text .section-title { color: var(--white); }

.about-text p {
  color: rgba(255,255,255,0.78);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 580px;
}

.about-values {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.value {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.value-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.value strong {
  display: block;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}
.value p {
  color: rgba(255,255,255,0.68) !important;
  font-size: 0.93rem !important;
  margin-bottom: 0 !important;
}

.about-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo {
  width: 220px;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
}

@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-logo-wrap { display: none; }
}

/* =============================================
   CONTACT SECTION
============================================= */
.contact-section {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  padding-block: 5rem;
  text-align: center;
}

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

.contact-section .section-title { color: var(--navy); }
.contact-section .section-subtitle { color: rgba(22,32,53,0.75); margin-bottom: 1.5rem; }

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: #0d1520;
  padding-block: 3rem;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.footer-logo {
  height: 60px;
  width: auto;
  opacity: 0.85;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

.footer-disclaimer {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
  max-width: 700px;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

/* =============================================
   PRIVACY PAGE
============================================= */
.privacy-page {
  min-height: 100vh;
  background: var(--cream);
}

.privacy-nav {
  background: var(--navy);
  padding-block: 1rem;
}

.privacy-content {
  padding-block: 4rem;
  max-width: 760px;
  margin-inline: auto;
}

.privacy-content h1 {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.privacy-content .updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.privacy-content h2 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.privacy-content p, .privacy-content li {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 640px) {
  .games-grid { grid-template-columns: 1fr; }

  .hero-content { padding-bottom: 3rem; }

  .section-title { font-size: 1.75rem; }

  .contact-section { padding-block: 3.5rem; }
  .about-section { padding-block: 3.5rem; }
  .games-section { padding-block: 3.5rem; }
}
