@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&family=Fredoka:wght@400;600;700&display=swap');

:root {
  --bg: #fff8f0;
  --bg-2: #fff3e0;
  --text: #2a2a2a;
  --muted: #6d6d6d;
  --primary: #ff914d; /* warm orange */
  --accent: #ff5e5b; /* coral red */
  --highlight: #ffd166; /* soft yellow */
  --card: #ffffffcc;
  --card-solid: #ffffff;
  --border: #f2dcc4;
  --link: #c85710;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--text);
  background-color: var(--bg);
  background-image: url('../assets/bg_render.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  font-family: Nunito, system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
  line-height: 1.65;
}

a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, #ffffffd9, #ffffff80 60%, #ffffff00);
  border-bottom: 1px solid #00000010;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: 'Fredoka', Nunito, sans-serif;
}

.brand-badge {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: radial-gradient(120% 120% at 50% -10%, #ffe3c2, #ff8a65);
  box-shadow: 0 6px 18px #ff8a6540, inset 0 0 14px #ffd8a655;
}

.brand-title { font-weight: 800; letter-spacing: 0.2px; }
.brand-sub { color: var(--muted); font-weight: 600; font-size: 12px; }

.nav-menu { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; }
.nav a { font-weight: 700; color: var(--text); opacity: 0.9; }
.nav a:hover { color: var(--accent); text-decoration: none; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #00000010;
  background: #fff;
  box-shadow: 0 6px 14px #ffb07833;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 6px 8px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #ff6a3d;
  border-radius: 6px;
}

.hero {
  position: relative;
  padding: 16vh 20px 12vh;
  text-align: center;
  background: linear-gradient(180deg, #fffaf3 0%, #fff8ef 45%, #fff6e700 90%);
  overflow: hidden;
}
.hero-foreground {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}

.hero h1 {
  font-family: 'Fredoka', Nunito, sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  margin: 0 0 10px;
  color: #2b2b2b;
}

.hero .meta {
  font-size: clamp(16px, 2.2vw, 20px);
  color: #7a5b3a;
}

.cta {
  margin-top: 28px;
  display: inline-flex;
  gap: 12px;
}

.button {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #ffd166, #ff914d 40%, #ff5e5b);
  color: #4a2500;
  border: none;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 8px 24px #ff914d50;
}
.button.secondary {
  background: #fff; color: var(--text);
  border: 1px solid #00000010;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 10px 30px #ff914d55; }

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 44px 20px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.card {
  grid-column: span 6;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 28px #f1a66a33;
}

.card h3 { margin: 0 0 10px; font-family: 'Space Grotesk', Inter, sans-serif; }
.card p { margin: 0 0 10px; }
.card ul { margin: 0; padding-left: 18px; }

.full { grid-column: span 12; }

.venue-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.venue-text { }
.venue-map { }

.map-container {
  width: 100%;
  height: 340px;
  border-radius: 12px;
  overflow: hidden;
}

#map {
  width: 100%;
  height: 340px;
  border-radius: 12px;
}

.custom-marker-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--primary);
  box-shadow: 0 4px 12px rgba(255, 145, 77, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-left: -22px;
  margin-top: -22px;
}

iframe { max-width: 100%; }

.kicker { color: var(--accent); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 12px; }

.footer {
  border-top: 1px solid #00000010;
  background: linear-gradient(180deg, #ffffff00, #ffffffb3);
  padding: 24px 20px 40px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; color: var(--muted); font-size: 14px; }

/* RV chart styling */
.rv-chart {
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  max-width: 860px;
  width: 90vw;
  opacity: 0.35;
  filter: drop-shadow(0 8px 20px #ffb0783a);
  z-index: 1;
}
.rv-chart svg { display: block; width: 100%; height: auto; }
.rv-chart .grid line { stroke: #f7d9c1; stroke-opacity: 0.4; }
.rv-chart .axis { stroke: #eac6a1; stroke-width: 1; opacity: 0.6; }
.rv-chart .curve { fill: none; stroke: #ff6a3d; stroke-width: 3; opacity: 0.8; }
.rv-chart .points circle { fill: #ff9f68; stroke: #743a1e; stroke-width: 0.5; opacity: 0.75; }

@media (max-width: 900px) {
  .card { grid-column: span 12; }

  .venue-split {
    grid-template-columns: 1fr;
  }

  .nav { flex-direction: column; align-items: stretch; }
  .nav-left { justify-content: space-between; }
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    padding: 12px 14px;
    background: #ffffffef;
    border: 1px solid #00000010;
    border-radius: 12px;
    box-shadow: 0 10px 24px #ffb07833;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { padding: 4px 0; }
}
