/* Club Manifest — Global Styles (matches calendar theme) */
:root{
  /* Shared brand tokens */
  --accent:   #FE5528;   /* orange */
  --accent-2: #0A5792;   /* deep blue */
  --ink:      #F6EADB;   /* cream */
  --bg:       #0E1220;   /* deep navy */
  --surface:  #12182A;   /* panel */
  --muted:    rgba(246,234,219,0.80);
  --border:   rgba(255,255,255,0.12);
  --ring:     rgba(254,85,40,0.35);

  --radius: 18px;
  --shadow: 0 12px 34px rgba(0,0,0,0.35);
  --max: 1140px;
}

*{ box-sizing:border-box; }
html, body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(254,85,40,0.06), transparent 60%),
    radial-gradient(1000px 600px at -10% 10%, rgba(10,87,146,0.06), transparent 55%),
    var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", "Noto Sans";
  line-height: 1.6;
  overflow-x: hidden;
}
a{ color: var(--accent); text-decoration: none; }
a:hover{ color: #E24B22; }

.wrap{ width:min(var(--max), 92%); margin:0 auto; padding:24px; }

/* Header & Nav */
header{
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(8px);
  background: linear-gradient(to bottom, rgba(18,24,42,0.95), rgba(18,24,42,0.55));
  border-bottom: 1px solid var(--border);
}
.brand{ display:flex; align-items:center; gap:14px; color: var(--ink); }
.brand img.logo{ width:42px; height:42px; border-radius:999px; display:block; }
.brand strong{ letter-spacing: .02em; font-size: 18px; text-transform: uppercase; }
nav{ margin-left:auto; display:flex; gap:18px; align-items:center; }
.nav-link{ color: var(--muted); font-weight: 600; border:1px solid transparent; padding:8px 10px; border-radius: 999px; }
.nav-link:hover{ color: var(--ink); border-color: var(--border); }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 18px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--accent), #E24B22);
  color:#1b110d; font-weight: 800; letter-spacing:.25px;
  box-shadow: 0 6px 22px var(--ring); border:1px solid rgba(255,255,255,0.08);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 10px 26px rgba(254,85,40,0.45); }
.btn.secondary{ background: transparent; color: var(--ink); border:1px solid var(--border); box-shadow:none; }

/* Hero */
.hero{ position: relative; }
.hero video{ width:100%; height:68vh; min-height:420px; object-fit: cover; display:block; }
.hero-content{
  position:absolute; inset:auto 0 8vh 0;
  margin-inline:auto; width:min(var(--max), 92%);
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.2));
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px 20px; border-radius: var(--radius);
  text-align: center; color: var(--ink);
  box-shadow: var(--shadow);
}
.hero-content h1{ font-size: clamp(32px, 6vw, 64px); margin: 0 0 10px; line-height: 1.1; }
.hero-content p{ font-size: 18px; color: var(--muted); margin: 0 auto 18px; max-width: 760px; }
.hero .cta{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }



/* Sections */
section{ padding: 56px 0; scroll-margin-top: 90px; }
.section-title{ font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .25em; font-weight: 800; margin-bottom: 12px; }
h2{ font-size: clamp(26px, 4vw, 40px); line-height: 1.15; margin: 0 0 16px; }

/* Footer */
footer{ padding: 48px 0 64px; color: var(--muted); border-top: 1px solid var(--border); }

/* Utilities */
.center{ text-align:center; }
.muted{ color: var(--muted); }

/* Responsive tweaks */
@media (max-width: 900px){
  .hero video{ height: 56vh; }
  .wrap{ padding: 18px; }
}

/* GENERAL INFO section */

#general-info{
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

/* Bigger, bolder "GENERAL INFO" heading just for this section */
#general-info .section-title{
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 24px;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 8px;
}

.geninfo-wrap{
  /* .wrap already handles width and padding */
}

.geninfo-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.geninfo-col{
  /* placeholder for future tweaks if needed */
}

.geninfo-block{
  padding: 14px 0;
  border-top: 1px dashed var(--border);
}

.geninfo-block:first-child{
  border-top: none;
  padding-top: 0;
}

.geninfo-block h3{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 6px 0;
  color: var(--ink);
  font-weight: 700;
}

.geninfo-block p{
  margin: 0 0 6px 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

/* Stack columns on smaller screens */
@media (max-width: 900px){
  .geninfo-grid{
    grid-template-columns: 1fr;
  }
}




/* Rules page */

#rules{
  padding: 56px 0;
}

.rules-panel{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px 28px;
  box-shadow: var(--shadow);
}

.rules-panel h2{
  margin-top: 4px;
}

.rules-panel p{
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.rules-list{
  margin: 18px 0 16px 20px;
  padding: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink);
}

.rules-list li{
  margin-bottom: 10px;
}

.rules-list li strong{
  font-weight: 700;
}

.rules-note{
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}
