/* VelaVoryVoryx - Unique Design 7: Warm coral/terracotta with zigzag sections */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;800&family=Cormorant+Garamond:wght@400;600;700&display=swap');

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

:root {
  --coral: #E07A5F;
  --amber: #F4A261;
  --sand: #FFF1E6;
  --clay: #3D405B;
  --olive: #81B29A;
  --white: #FFFFFF;
  --text: #2D2D3F;
  --text-light: #6B6B82;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(224,122,95,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--sand);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: all 0.3s; }
img, svg { max-width: 100%; display: block; }

/* HEADER */
.vela-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 66px;
  background: rgba(61,64,91,0.95);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
}

.vela-header .site-logo { height: 34px; }

.top-nav {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.top-nav a {
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  font-size: 0.92rem;
}

.top-nav a:hover { color: var(--amber); }

.mobile-ham {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-ham span {
  width: 26px;
  height: 3px;
  background: var(--coral);
  border-radius: 3px;
  transition: all 0.3s;
}

/* HERO - Reverse grid with warm overlay */
.warm-hero {
  margin-top: 66px;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--clay);
  position: relative;
  overflow: hidden;
}

.warm-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,162,97,0.2), transparent 70%);
  bottom: -100px; left: -100px;
}

.warm-hero-game {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  order: 1;
}

.warm-hero-game iframe {
  width: 100%;
  max-width: 560px;
  height: 420px;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 12px 48px rgba(0,0,0,0.3);
}

.warm-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem;
  color: var(--white);
  order: 2;
}

.warm-hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.warm-hero-text h1 span { color: var(--amber); }

.warm-hero-text p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 2rem;
}

.warm-btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: linear-gradient(135deg, var(--coral), var(--amber));
  color: var(--white);
  font-weight: 700;
  border-radius: 50px;
  width: fit-content;
  transition: transform 0.3s, box-shadow 0.3s;
}

.warm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,122,95,0.4);
}

/* ZIGZAG NOTICES */
.zigzag-section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.zigzag-section > h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--clay);
}

.zig-row {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.zig-row:nth-child(odd) { flex-direction: row; }
.zig-row:nth-child(even) { flex-direction: row-reverse; }

.zig-icon {
  font-size: 4rem;
  flex-shrink: 0;
  width: 100px;
  text-align: center;
}

.zig-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--coral);
  margin-bottom: 0.5rem;
}

.zig-content p { color: var(--text-light); font-size: 0.97rem; }

/* WARM BAND */
.warm-band {
  background: linear-gradient(135deg, var(--coral), var(--amber));
  text-align: center;
  padding: 3.5rem 2rem;
  color: var(--white);
}

.warm-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.warm-band p {
  max-width: 680px;
  margin: 0 auto;
  opacity: 0.9;
}

/* EXTRA CONTENT */
.extra-section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.extra-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--clay);
}

.extra-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.extra-tile {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--olive);
}

.extra-tile h3 {
  color: var(--coral);
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}

.extra-tile ul { list-style: none; }

.extra-tile li {
  padding: 0.4rem 0;
  border-bottom: 1px solid #F0E4D8;
  color: var(--text-light);
  font-size: 0.93rem;
}

.extra-tile li:last-child { border-bottom: none; }

/* TEXT PAGES */
.page-wrap {
  margin-top: 66px;
  padding: 4rem 2rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  min-height: calc(100vh - 66px - 170px);
}

.page-wrap h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: var(--clay);
  margin-bottom: 1.5rem;
}

.page-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--coral);
  margin: 2rem 0 0.7rem;
}

.page-wrap p { margin-bottom: 1rem; }
.page-wrap ul { margin-left: 1.5rem; margin-bottom: 1rem; }
.page-wrap li { color: var(--text-light); margin-bottom: 0.3rem; }

/* PLAY */
.play-wrap {
  margin-top: 66px;
  padding: 3rem 2rem;
  text-align: center;
  min-height: calc(100vh - 66px - 170px);
}

.play-wrap h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--clay);
  margin-bottom: 0.8rem;
}

.play-wrap > p {
  max-width: 620px;
  margin: 0 auto 2rem;
  color: var(--text-light);
}

.play-wrap iframe {
  width: 100%;
  max-width: 960px;
  height: 580px;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* FOOTER */
.vela-footer {
  background: var(--clay);
  text-align: center;
  padding: 2.5rem 2rem 1.5rem;
}

.vf-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.vf-links a {
  color: var(--amber);
  font-size: 0.88rem;
  font-weight: 600;
}

.vf-links a:hover { color: var(--coral); }

.vela-footer p { color: rgba(255,255,255,0.4); font-size: 0.82rem; }

/* AGE GATE */
.vela-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(61,64,91,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vela-gate.hidden { display: none; }

.gate-box {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 430px;
  width: 90%;
}

.gate-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--clay);
  margin-bottom: 0.8rem;
}

.gate-box p { color: var(--text-light); margin-bottom: 2rem; }

.gate-btns { display: flex; gap: 1rem; justify-content: center; }

.gate-btns button {
  padding: 0.75rem 2.4rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.gate-btns button:hover { transform: scale(1.05); }

.btn-warm {
  background: linear-gradient(135deg, var(--coral), var(--amber));
  color: var(--white);
}

.btn-cool {
  background: #E0D5C8;
  color: var(--text);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .warm-hero { grid-template-columns: 1fr; min-height: auto; }
  .warm-hero-text { padding: 3rem 1.5rem; order: 1; }
  .warm-hero-game { order: 2; padding: 1rem 1.5rem 3rem; }
  .warm-hero-game iframe { height: 320px; }
  .warm-hero-text h1 { font-size: 2.4rem; }
  .zig-row, .zig-row:nth-child(even) { flex-direction: column; text-align: center; }
  .extra-grid { grid-template-columns: 1fr; }
  .play-wrap iframe { height: 400px; }
}

@media (max-width: 768px) {
  .mobile-ham { display: flex; }
  .top-nav {
    position: fixed;
    top: 66px; left: 0; right: 0;
    background: rgba(61,64,91,0.98);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
    transform: translateY(-120%);
    transition: transform 0.4s ease;
  }
  .top-nav.open { transform: translateY(0); }
}
