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

:root {
  --navy:   #2D2A3E;
  --navy2:  #1e1c2b;
  --red:    #C84B31;
  --amber:  #E8A838;
  --purple: #6C7AE0;
  --cream:  #F5F0E8;
  --cream2: #EDE8DF;
  --muted:  #6B6578;
  --white:  #ffffff;
}

html { scroll-behavior: smooth; }
body { font-family: Georgia, serif; background: var(--white); color: var(--navy); line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* ── HEADER ── */
header { background: var(--navy); position: sticky; top: 0; z-index: 200; box-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.header-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; padding: 0.7rem 2rem; gap: 2rem; }
.header-logo { height: 48px; width: auto; display: block; }
nav { flex: 1; display: flex; }
nav a { color: rgba(255,255,255,0.85); text-decoration: none; padding: 0.5rem 1.2rem; font-family: -apple-system, sans-serif; font-size: 0.88rem; transition: color 0.2s; }
nav a:hover { color: var(--amber); }
.header-cta { background: var(--red); color: #fff; text-decoration: none; padding: 0.6rem 1.3rem; border-radius: 4px; font-family: -apple-system, sans-serif; font-size: 0.85rem; font-weight: 600; white-space: nowrap; transition: background 0.2s; }
.header-cta:hover { background: #a83a23; }

/* ── HERO ── */
.hero { position: relative; min-height: 520px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--navy2); }
.hero-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: rgba(30,28,43,0.72); }
.hero-content { position: relative; z-index: 1; text-align: center; padding: 4rem 2rem; }
.hero-eyebrow { font-family: -apple-system, sans-serif; font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; color: var(--amber); margin-bottom: 1rem; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); color: #fff; font-weight: 700; line-height: 1.1; margin-bottom: 2rem; text-transform: uppercase; }
.hero-tabs { display: flex; gap: 1rem; justify-content: center; }
.hero-tab { padding: 0.75rem 2rem; border-radius: 4px; font-family: -apple-system, sans-serif; font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: all 0.2s; background: rgba(255,255,255,0.15); color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.hero-tab.active, .hero-tab:hover { background: var(--red); border-color: var(--red); }

/* ── SECTION EYEBROW ── */
.section-eyebrow { font-family: -apple-system, sans-serif; font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem; font-weight: 600; }

/* ── ABOUT ── */
.about { padding: 5rem 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 3rem; }
.about-text h2 { font-size: 1.8rem; margin-bottom: 1rem; line-height: 1.3; }
.about-text p { color: var(--muted); margin-bottom: 1rem; font-size: 0.97rem; }
.about-img { width: 100%; height: 340px; object-fit: cover; border-radius: 10px; display: block; }
.values { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.5rem; }
.value { display: flex; align-items: center; gap: 0.5rem; background: var(--cream); padding: 0.6rem 1rem; border-radius: 4px; font-family: -apple-system, sans-serif; font-size: 0.85rem; }
.about-tagline { background: var(--cream2); padding: 1.5rem 2rem; border-radius: 6px; font-size: 1rem; color: var(--muted); border-left: 4px solid var(--red); }
.about-tagline strong { color: var(--navy); }

/* ── GAMES SECTIONS ── */
.games-section, .nights-section { padding: 4rem 0 0; text-align: center; }
.games-section.dark  { background: var(--navy); color: #fff; }
.games-section.dark2 { background: #262340; color: #fff; }
.nights-section.dark3 { background: var(--navy2); color: #fff; padding-bottom: 4rem; }
.games-section h2, .nights-section h2 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.section-sub { font-family: -apple-system, sans-serif; font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 1.8rem; }

.tag-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-bottom: 2.5rem; }
.tag { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.2); padding: 0.45rem 1rem; border-radius: 3px; font-family: -apple-system, sans-serif; font-size: 0.85rem; transition: background 0.2s, border-color 0.2s; cursor: default; }
.tag:hover { background: var(--red); border-color: var(--red); }

/* ── PHOTO STRIP ── */
.game-photos { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; }
.game-photos img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.3s; filter: brightness(0.85); }
.game-photos img:hover { transform: scale(1.03); z-index: 1; position: relative; filter: brightness(1); }

/* ── OTHER ── */
.other { padding: 5rem 0; background: var(--white); }
.other-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: center; }
.other-img { width: 100%; height: 340px; object-fit: cover; border-radius: 10px; display: block; }
.other-text .section-eyebrow { color: var(--red); }
.other-text h2 { font-size: 1.6rem; margin-bottom: 1rem; }
.other-text ul { padding-left: 1.2rem; color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; }
.other-text ul li { margin-bottom: 0.5rem; }
.other-text p { color: var(--muted); font-size: 0.95rem; }

/* ── PARTNERS ── */
.partners { background: var(--cream2); padding: 3rem 0; }
.partners-grid { display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; }
.partner-logo { text-align: center; font-size: 2.5rem; color: var(--navy); font-family: -apple-system, sans-serif; }
.partner-logo small { display: block; font-size: 0.75rem; color: var(--muted); margin-top: 0.3rem; letter-spacing: 1px; }

/* ── CONTACT ── */
.contact { background: var(--cream); padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-text h2 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--muted); line-height: 1.4; }
.contact-form { display: flex; flex-direction: column; gap: 0.8rem; }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.85rem 1rem; border: 1px solid #ddd; border-radius: 4px; font-family: Georgia, serif; font-size: 0.95rem; background: #fff; outline: none; transition: border-color 0.2s; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--purple); }
.contact-form textarea { min-height: 100px; resize: vertical; }
.btn-send { background: var(--red); color: #fff; border: none; padding: 0.9rem; border-radius: 4px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.2s; font-family: -apple-system, sans-serif; letter-spacing: 1px; }
.btn-send:hover { background: #a83a23; }

/* ── AREAS ── */
.areas { background: #fff; padding: 4rem 0; }
.areas h2 { font-size: 1.6rem; margin-bottom: 2rem; }
.areas-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; font-family: -apple-system, sans-serif; font-size: 0.85rem; color: var(--muted); }
.areas-cols strong { color: var(--navy); display: block; margin-bottom: 0.3rem; }

/* ── FOOTER ── */
footer { background: var(--navy2); color: rgba(255,255,255,0.7); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: 3rem 0; font-family: -apple-system, sans-serif; font-size: 0.9rem; }
.footer-logo-img { height: 56px; width: auto; display: block; margin-bottom: 0.5rem; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-info p { margin-bottom: 0.3rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); text-align: center; padding: 1.2rem; font-family: -apple-system, sans-serif; font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; padding: 0.8rem 1rem; }
  nav { display: none; }
  .about-grid, .other-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .game-photos { grid-template-columns: repeat(3, 1fr); }
  .game-photos img { height: 130px; }
  .areas-cols { grid-template-columns: 1fr; }
  .container { padding: 0 1.2rem; }
  .games-section, .nights-section { padding: 3rem 0 0; }
  .nights-section.dark3 { padding-bottom: 3rem; }
}

/* ── FORM RESULT MESSAGE ── */
.form-result {
  padding: 0.9rem 1rem; border-radius: 4px;
  font-family: -apple-system, sans-serif; font-size: 0.9rem;
  display: none;
}
.form-result.success { display: block; background: #d4edda; color: #1e5c2e; border: 1px solid #b8dfc4; }
.form-result.error   { display: block; background: #fde8e4; color: #7a2318; border: 1px solid #f5c0b8; }
#submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── FORM SUCCESS / ERROR ── */
.form-success {
  background: var(--navy);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  color: #fff;
}
.success-dice {
  font-size: 3rem;
  margin-bottom: 0.8rem;
  animation: spin-in 0.4s ease-out;
}
@keyframes spin-in {
  from { transform: rotate(-30deg) scale(0.5); opacity: 0; }
  to   { transform: rotate(0deg)  scale(1);   opacity: 1; }
}
.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--amber);
}
.form-success p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 0;
}
.form-error {
  background: #fde8e4;
  color: #7a2318;
  border: 1px solid #f5c0b8;
  border-radius: 6px;
  padding: 1rem;
  font-family: -apple-system, sans-serif;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.form-error a { color: #7a2318; }
#submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
