:root{
  --bgdark:#02020d;
  --bglight:#0a2a5b;
  --panel:#0b2a57;
  --panel2:#0a2348;
  --text:#f2f6ff;
  --muted:rgba(255,255,255,.78);
  --line:#e01818;
  --white:#ffffff;
  --shadow:0 14px 40px rgba(0,0,0,.35);
  --stroke:rgba(255,255,255,.18);
  --radius:10px;
  --max:1920px;
  --oswald:"Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --inter:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  font-family:var(--inter);
	background: var(--bgdark);
  font-size: 15px;
    padding-top: 56px; /* same as nav height */
}

/* NAV BAR */
/* NAV BAR (fixed + professional mobile menu) */
.nav{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5000;
  background: linear-gradient(180deg, rgba(5,15,40,.95), rgba(5,15,40,.85));
  border-bottom: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(6px);
}

.nav{
  width: 100vw;
  left: 0;
  right: 0;
}

.nav__logo{
  height: 76px;
  display: block;
}


body{ padding-top: 56px; } /* offset fixed nav */

.nav__inner{
  width: 100%;
  margin: 0;                 /* stop centering */
  max-width: none;           /* remove container constraint */
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding-left:0px;    
  padding-right: 24px;
}




.nav__brand{
  font-family: var(--oswald);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: .5px;

  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

/* Desktop links */
.nav__links{
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav__link{
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

.nav__link:hover{ color:#fff; }

.nav__link::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-6px;
  height:2px;
  background:#e01818;
  transform: scaleX(0);
  transition: transform .2s ease;
}

.nav__brand::after{
  display: none !important;
}

.nav__brand:hover{
  opacity: .9;
}

.nav__link:hover::after{ transform: scaleX(1); }

/* Hamburger button (hidden on desktop) */
.nav__toggle{
  display: none;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: #fff;
  border-radius: 10px;
  width: 44px;
  height: 36px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
}

.nav__toggle:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: rgba(224,24,24,.45);
}

/* 3-bar icon */
.nav__toggleBars{
  width: 18px;
  height: 2px;
  background: #fff;
  position: relative;
  display: block;
}

.nav__toggleBars::before,
.nav__toggleBars::after{
  content:"";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #fff;
}

.nav__toggleBars::before{ top: -6px; }
.nav__toggleBars::after{ top: 6px; }

.nav__right{
  display:flex;
  align-items:center;
  gap: 12px;
}

/* Theme toggle button */
.nav__theme{
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: #fff;
  border-radius: 10px;
  width: 44px;
  height: 36px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
}

.nav__theme:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: rgba(224,24,24,.45);
}

.nav__themeIcon{ font-size: 16px; line-height: 1; }

.nav__logo_wrapper{padding-bottom:0px; padding-top:0px;}


/* Mobile dropdown */
@media (max-width: 720px){
  .nav__toggle{ display: inline-flex; }
  
  .hero{height: 300px !important;}

  
/* Logo sizing on small screens */
/* Light mode dropdown colors */
html[data-theme="light"] .nav__links{
  background: linear-gradient(180deg, rgba(245,248,255,.98), rgba(235,242,255,.92));
  border-color: rgba(11,22,48,.14);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
html[data-theme="light"] .nav__link{
  color: rgba(11,22,48,.86);
  border-top-color: rgba(11,22,48,.10);
}
html[data-theme="light"] .nav__link:hover{
  background: linear-gradient(90deg, rgba(224, 24, 24, 0.46), rgba(224, 24, 24, 0.54), rgba(224, 24, 24, 0));
}

html[data-theme="light"] .nav__toggle{
    background: rgba(11, 22, 48, .04);
	border: 1px solid rgba(11, 22, 48, .16);
}

.nav__links{
    /* turn into dropdown panel */
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    display: none;              /* hidden by default */
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: linear-gradient(180deg, rgba(5,15,40,.98), rgba(5,15,40,.92));
    border: 1px solid rgba(255,255,255,.10);
    border-top: 0;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0,0,0,.45);
  }

  .nav__links.is-open{ display: flex; }

  .nav__link{
    padding: 14px 14px;
    font-size: 15px;
    border-top: 1px solid rgba(255,255,255,.10);
  }
  
  .nav__logo_wrapper{padding: 0px 0px;}

  .nav__link::after{ display:none; } /* cleaner in mobile list */

  .nav__link:hover{
    background: linear-gradient(90deg, rgba(91, 10, 10, 0.46), rgba(113, 18, 18, 0.54), rgba(51, 7, 7, 0));
  }
  
  .nav__logo_wrapper{background: none !important;}
}



/* HERO */
.hero{
  position:relative;
  height:420px;
  border-bottom: 4px solid rgb(146, 19, 19);
  background-image: url("assets/hockey-background.png") !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
}

.hero__overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 260px at 50% 40%, rgba(255,255,255,.14), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.55));
  pointer-events:none;
}
.hero__inner{
  position:relative;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  background: #0000004d;
  
}
.brand{
  display:flex;
  align-items:center;
  justify-content:center;
  filter: drop-shadow(0 16px 18px rgba(0,0,0,.45));
}
.brand__logo{
  width:min(560px, 92vw);
  height:auto;
  display:block;
}

/* PAGE WRAP */
.page{
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 30px;
}

.section{
  margin: 18px 0 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  position: relative;
transition:
transform .25s ease,
box-shadow .25s ease,
border-color .25s ease;
}

.section:hover{
  transform: translateY(-4px);
  box-shadow: 
    0 18px 50px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.12);
}

/* Accent sections glow red on hover */
.section--accent:hover{
  box-shadow:
    0 18px 50px rgba(0,0,0,.45),
    0 0 0 1px rgba(224,24,24,.45),
    0 0 18px rgba(224,24,24,.35);
}

.section__title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.02));
}
.section__title h2{
  margin:0;
  font-family:var(--oswald);
  letter-spacing:.6px;
  font-weight:700;
  text-transform:none;
  font-size: 26px;
  text-shadow: 0 2px 0 rgba(0,0,0,.35);
}
.rule{
  height:2px;
  flex:1;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  opacity:.95;
}

/* GRIDS */
.grid{display:grid; gap:16px; padding: 16px 16px 18px;}
.grid--2{grid-template-columns: 1fr 1fr;}
.grid--3{grid-template-columns: repeat(3, 1fr);}
.grid--contact{align-items:start}

@media (max-width: 900px){
  .grid--3{grid-template-columns: 1fr;}
}
@media (max-width: 820px){
  .grid--2{grid-template-columns: 1fr;}
}

/* INFORMATION SECTION */
.info{
  padding: 10px 16px 18px;
}

.info__intro{
  max-width: 900px;
  margin: 0 auto 14px;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
  font-size: 15px;
}

.info__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.info__card{
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.06));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 14px 14px 12px;
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}

.info__cardTitle{
  font-family: var(--oswald);
  letter-spacing: .4px;
  font-size: 18px;
  margin-bottom: 8px;
  text-shadow: 0 2px 0 rgba(0,0,0,.35);
}

.info__list{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}

.info__list li{ margin: 6px 0; }

.info__card--wide{
  grid-column: 1 / -1;
  padding: 12px;
}

.info__callout{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 10px;
  /*border: 1px solid rgba(224,24,24,.35);
  background: linear-gradient(90deg, rgba(224,24,24,.14), rgba(255,255,255,.04));*/
}

.info__card--important{
	background: linear-gradient(90deg, rgba(91, 10, 10, 0.46), rgba(113, 18, 18, 0.54), rgba(51, 7, 7, 0));
}

.info__calloutTitle{
  font-family: var(--oswald);
  font-weight: 800;
  letter-spacing: .5px;
  font-size: 18px;
  white-space: nowrap;
}

.info__calloutText{
  color: rgba(255,255,255,.82);
  line-height: 1.55;
}

@media (max-width: 820px){
  .info__grid{ grid-template-columns: 1fr; }
}

/* default (neutral) */
.section{
  border: 1px solid rgba(255,255,255,.10);
}

/* accent sections */
.section--accent{
  border: 1px solid rgba(224,24,24,.55);
  box-shadow:
    0 0 0 1px rgba(224,24,24,.15),
    0 14px 40px rgba(0,0,0,.35);
	  position: relative;
}

.section--accent::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background: linear-gradient(90deg, transparent, #e01818, transparent);
}


/* COACH CARDS */
.coach{
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.06));
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}

.coach__frame{
  padding:12px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
}
.coach__frame img{
  width:100%;
height: 380px;
  object-fit:cover;
  border-radius: 6px;
  border:1px solid rgba(255,255,255,.18);
}

.coach__namebar{
background: linear-gradient(90deg, rgba(224, 24, 24, 0.46), rgba(224, 24, 24, 0.54), rgba(224, 24, 24, 0));
  padding: 10px 12px;
  font-family: var(--oswald);
  letter-spacing:.6px;
  font-size: 22px;
  font-weight:700;
  text-shadow: 0 2px 0 rgba(0,0,0,.35);
  border-top:1px solid rgba(255,255,255,.15);
  border-bottom:1px solid rgba(0,0,0,.35);
}
.coach__bullets{
  margin:0;
  padding: 12px 18px 16px 32px;
  color: var(--muted);
  line-height:1.45;
}
.coach__bullets li{margin:7px 0}

/* CAMP CARDS */
.camp{
 /* background: linear-gradient(180deg, rgba(15,40,90,.95), rgba(8,25,60,.95));*/
background: linear-gradient(180deg, rgba(224, 24, 24, 0.46), rgba(41, 6, 6, 0.54), rgba(224, 24, 24, 0));
  color: #f2f6ff;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}
.camp__top{
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.10));
}
.camp__date{
  font-family: var(--oswald);
  font-weight:700;
  font-size: 18px;
}
.camp__meta{
  font-weight:600;
  opacity:.82;
  font-size: 13px;
}
.camp__body{ padding: 14px 14px 12px;}
.camp__time{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
}
.dot{
  width:8px; height:8px; border-radius:99px;
  background: var(--line);
  box-shadow: 0 0 0 3px rgba(224,24,24,.18);
}
.camp__note{
  margin-top:10px;
  font-size: 13px;
  opacity:.75;
}

.camp__note,
.camp__whereSub{
  color: rgba(255,255,255,.75);
}

.camp__actions{
  padding: 12px;
  display:flex;
  justify-content:flex-end;
  border-top:1px solid rgba(0,0,0,.10);
  /*background: rgba(0,0,0,.03);*/
}

/* Camps now include location */
.camp__where{
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(0,0,0,.18);
}
.camp__whereTitle{
  font-weight: 800;
  font-size: 13px;
}
.camp__whereSub{
  margin-top: 4px;
  font-size: 12px;
  opacity: .75;
}

/* Magnifying glass button */
.camp__inspect{
  margin-left: 8px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
  border-radius: 8px;
  padding: 2px 8px;
  cursor: pointer;
  line-height: 1;
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
}

.camp__inspect.is-open{
  border-color: rgba(224,24,24,.55);
  background: rgba(224,24,24,.14);
  box-shadow: 0 0 0 3px rgba(224,24,24,.15);
}

.camp__inspect.is-open:hover{
  background: rgba(224,24,24,.20);
}



.camp__inspect:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: rgba(224,24,24,.45);
}

/* Expand panel */
.camp__venue{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255,255,255,.18);
}

.camp__venueMedia{
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.10);
}

.camp__venueMedia img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.camp__venueMap{
  margin-top: 10px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
}

.camp__venueMap iframe{
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.camp__schedule{
  margin-bottom: 12px;
}

.camp__scheduleToggle{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: inherit;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 800;
  cursor: pointer;
  text-align: left;
}

.camp__scheduleToggle:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(224,24,24,.45);
}

.camp__scheduleChevron{
  margin-left: auto;
  transition: transform .15s ease;
}

.camp__scheduleToggle.is-open .camp__scheduleChevron{
  transform: rotate(180deg);
}

.camp__schedulePanel{
  margin-top: 8px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.14);
}

.camp__scheduleRow{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255,255,255,.16);
  font-size: 13px;
}

.camp__scheduleRow:last-child{
  border-bottom: 0;
}

html[data-theme="light"] .camp__scheduleToggle{
  background: rgba(255,255,255,.55);
  border-color: rgba(11,22,48,.16);
}

html[data-theme="light"] .camp__schedulePanel{
  background: rgba(255,255,255,.45);
  border-color: rgba(11,22,48,.14);
}

html[data-theme="light"] .camp__scheduleRow{
  border-bottom-color: rgba(11,22,48,.16);
}

/* Screen-reader only helper */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}


/* LOCATION SPLIT */
.split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  padding: 16px;
}
@media (max-width: 900px){
  .split{grid-template-columns: 1fr;}
}

.panel{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.08));
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}
.media{
  height: 220px;
  background: rgba(0,0,0,.12);
}
.media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.media--map{
  height: 300px;
}
.media--map iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

.venuebar{
  padding: 10px 12px;
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.12));
  border-top:1px solid rgba(255,255,255,.12);
}
.venuebar__title{
  font-family: var(--oswald);
  font-weight:700;
  font-size: 18px;
  display:flex;
  align-items:center;
  gap:10px;
}
.venuebar__sub{
  margin-top:4px;
  opacity:.8;
  font-size: 13px;
}
.pin{filter: drop-shadow(0 2px 0 rgba(0,0,0,.35));}

/* CONTACT */
.section--contact .grid{padding-top: 14px;}

.contactcard, .formcard{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.08));
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
  padding: 14px;
}

.contactrow{
  padding: 12px 10px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.contactrow:last-child{border-bottom:0}
.contactrow__label{
  font-family: var(--oswald);
  letter-spacing:.4px;
  opacity:.9;
  margin-bottom:6px;
}
.contactrow__value{
  color: var(--muted);
  text-decoration:none;
}
.contactrow__value:hover{color: var(--white); text-decoration:underline;}

.contact-layout{
  padding: 16px;
  display: grid;
  gap: 14px;
}

.contactcard--email{
  padding: 0;
}

.contactcard--email .contactrow{
  border-bottom: 0;
}

.formgrid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
}

.field{
  margin: 0;
}

.field--full{
  grid-column: 1 / -1;
}

@media (max-width: 720px){
  .formgrid{
    grid-template-columns: 1fr;
  }

  .field--full{
    grid-column: auto;
  }
}

.formtitle{
  font-family: var(--oswald);
  font-size: 18px;
  letter-spacing:.4px;
  margin-bottom: 10px;
  opacity:.95;
}

.field{display:block; margin: 10px 0;}
.field__label{
  display:block;
  font-size: 12px;
  opacity:.85;
  margin-bottom:6px;
}
.field__input{
  width:100%;
  padding: 10px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: var(--text);
  outline:none;
}
.field__input::placeholder{color: rgba(255,255,255,.55);}
.field__input:focus{
  border-color: rgba(224,24,24,.70);
  box-shadow: 0 0 0 3px rgba(224,24,24,.18);
}
.field__input--textarea{min-height: 120px; resize: vertical;}

/* =========================
   Custom Select Styling
   ========================= */
/* =========================
   Custom Select Styling
   ========================= */

select.field__input{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  cursor: pointer;
  color: var(--text);

  background-color: rgba(255,255,255,.06);
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.9) 50%),
    linear-gradient(135deg, rgba(255,255,255,.9) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;

  padding-right: 44px;
}

select.field__input option{
  background: rgb(73 6 6);
  color: #fff;
}

/* Light mode select */
html[data-theme="light"] select.field__input{
  color: rgba(11,22,48,1);
  background-color: rgba(255,255,255,.86);
}

html[data-theme="light"] select.field__input option{
  background: #ffffff;
  color: #0b1630;
}

/* Remove ugly IE arrow */
select.field__input::-ms-expand{
  display: none;
}

.formactions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-top: 12px;
}
.formstatus{
  font-size: 13px;
  opacity: .85;
}

/* DISCLAIMERS */
.disclaimers{
  padding: 12px 16px 18px;
  display: grid;
  gap: 14px;
}

.disclaimer{
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.06));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
  color: rgba(255,255,255,.82);
  line-height: 1.55;
}

.disclaimer__title{
  font-family: var(--oswald);
  font-size: 18px;
  letter-spacing: .4px;
  margin-bottom: 6px;
  color: #fff;
  text-shadow: 0 2px 0 rgba(0,0,0,.35);
}

.disclaimer strong{
  color: #fff;
}

/* BUTTONS */
.btn{
  border:0;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight:800;
  letter-spacing:.2px;
  cursor:pointer;
  transition: transform .08s ease, filter .15s ease;
  text-transform:none;
}
.btn:active{transform: translateY(1px);}

.btn--red{
  background: linear-gradient(180deg, #ff2a2a, #c60f0f);
  color: #fff;
  box-shadow: 0 10px 20px rgba(224,24,24,.22);
}
.btn--dark{
  background: linear-gradient(180deg, #3e4654, #1d2430);
  color:#fff;
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
}
.btn--big{
  padding: 12px 18px;
  border-radius: 10px;
}

/* FOOTER */
.footer{
  width: 100%;
  margin: 0;
  padding: 20px 24px 40px; /* left/right + bottom space */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  opacity: .88;
}


.footer__top{
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.footer__top:hover{
  color: #fff;
}

.footer__top::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-6px;
  height:2px;
  background:#e01818;
  transform: scaleX(0);
  transition: transform .2s ease;
}

.footer__top:hover::after{
  transform: scaleX(1);
}


@media (min-width: 1200px){

  /* Section titles */
  .section__title h2{
    font-size: 32px;
  }

  /* Coach cards */
  .coach__frame img{
    height: 550px;
  }
  .coach__namebar{
    font-size: 26px;
  }
  .coach__bullets{
    font-size: 15px;
  }

  /* Camp cards */
  .camp__date{
    font-size: 20px;
  }
  .camp__meta{
    font-size: 14px;
  }
  .camp__time{
    font-size: 15px;
  }
  .camp__whereTitle{
    font-size: 14px;
  }
  .camp__whereSub{
    font-size: 13px;
  }

  /* Slots badge */
  .camp__slots{
    font-size: 14px;
  }
.camp__slotsValue{
  display: inline-block;
  margin-top: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  background: linear-gradient(180deg, #2ecc71, #1e9e55);
  color: #fff;
  letter-spacing: .2px;
}

/* limited */
.slots--low{
  background: linear-gradient(180deg, #ffb020, #e08900);
}

/* almost full */
.slots--critical{
  background: linear-gradient(180deg, #ff3b3b, #c10f0f);
}


  /* Buttons */
  .btn{
    padding: 12px 18px;
    font-size: 15px;
  }
  .btn--big{
    padding: 14px 22px;
    font-size: 16px;
  }

  /* Contact form */
  .field__input{
    padding: 12px 12px;
    font-size: 15px;
  }

  .formtitle{
    font-size: 20px;
  }

  /* Hero */
  .hero{
    height: 480px;
  }
}

@media (min-width: 1200px){
  .brand__logo{
    width: 720px;
  }
}

@media (min-width: 1600px){
  .brand__logo{
    width: 860px;
  }
}

@media (max-width: 520px){
  .camp__top{
    flex-wrap: wrap;
    gap: 10px;
  }

  .camp__meta{
    width: 100%;
    opacity: .85;
  }
}

.camp__top > div:first-child{
  min-width: 0;
}

.camp__slotsValue{
  white-space: nowrap;
}

/* --- FIX: ensure Spots Left badge is visible on mobile --- */
.camp__top{
  overflow: visible; /* prevent accidental clipping */
}

.camp__slots{
  display: block !important; /* ensure it never collapses */
  margin-top: 6px;
}

.camp__slotsValue{
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  background: linear-gradient(180deg, #2ecc71, #1e9e55);
}

/* variants */
.camp__slotsValue.slots--low{
  background: linear-gradient(180deg, #ffb020, #e08900);
}
.camp__slotsValue.slots--critical{
  background: linear-gradient(180deg, #ff3b3b, #c10f0f);
}

/* small screens: stack the meta under date/badge */
@media (max-width: 520px){
  .camp__top{
    flex-wrap: wrap;
    gap: 10px;
  }
  .camp__meta{
    width: 100%;
  }
}

@media (max-width: 720px){
  .nav__link{
    font-size: 13px;
  }
}

@media (min-width: 1200px){
  .nav__inner{
    padding-right:40px;
	padding-left:5px;
  }
}

/* Active nav link */
.nav__link.is-active{
  color: #e01818;
}

.nav__link.is-active::after{
  width: 100%;
  opacity: 1;
}

html[data-theme="light"] .nav__link.is-active{
  color: #e01818;
}


.btn--disabled,
.btn:disabled{
  background: linear-gradient(180deg, #6b7280, #3f4754);
  color: rgba(255,255,255,.85);
  cursor: not-allowed;
  box-shadow: none;
  opacity: .85;
}

.slots--soldout{
  background: linear-gradient(180deg, #6b7280, #3f4754);
  color: rgba(255,255,255,.85);
}

@media (min-width: 1200px){
  .footer{
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* =========================
   LIGHT MODE THEME OVERRIDES
   ========================= */
html[data-theme="light"]{
  --bg1:#f4f7ff;
  --bg2:#e7efff;

  --text:#0b1630;
  --muted:rgba(11,22,48,.78);

  --stroke:rgba(11,22,48,.14);
  --shadow:0 14px 40px rgba(0,0,0,.14);

  /* You can keep your red as-is */
  --line:#e01818;
}

/* Page background */

/* Nav in light mode */
html[data-theme="light"] .nav{
  background: linear-gradient(180deg, rgba(245,248,255,.92), rgba(235,242,255,.85));
  border-bottom: 1px solid rgba(11,22,48,.14);
}

html[data-theme="light"] .nav__link{
  color: rgba(11,22,48,.78);
}
html[data-theme="light"] .nav__link:hover{
  color: rgba(11,22,48,1);
}
html[data-theme="light"] .nav__brand{
  color: rgba(11,22,48,1);
}

html[data-theme="light"] .nav__theme{
  border-color: rgba(11,22,48,.16);
  background: rgba(11,22,48,.04);
  color: rgba(11,22,48,1);
}
html[data-theme="light"] .nav__theme:hover{
  background: rgba(11,22,48,.07);
  border-color: rgba(224,24,24,.45);
}

/* Section panels */
html[data-theme="light"] .section{
  background: #f9fbff; /* almost white */
  border: 1px solid rgba(11,22,48,.12);
}


html[data-theme="light"] .section__title{
  background: linear-gradient(180deg, rgba(11,22,48,.06), rgba(11,22,48,.02));
}

/* Your camp cards are dark — make them light but still punchy */
html[data-theme="light"] .camp{
background: linear-gradient(180deg, rgb(224 24 24 / 90%), rgb(215 23 23 / 68%), rgb(224 24 24 / 43%));
  color: rgba(11,22,48,1);
  border: 1px solid rgba(11,22,48,.14);
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
}

html[data-theme="light"] .camp__top{
  border-bottom: 1px solid rgba(11,22,48,.12);
  background: linear-gradient(180deg, rgba(11,22,48,.04), rgba(11,22,48,.02));
}

html[data-theme="light"] .camp__whereSub,
html[data-theme="light"] .camp__note{
  color: rgba(11,22,48,.70);
}

/* Coach cards + disclaimer cards */
html[data-theme="light"] .coach,
html[data-theme="light"] .contactcard,
html[data-theme="light"] .formcard,
html[data-theme="light"] .disclaimer,
html[data-theme="light"] .info__card{
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,249,255,.90));
  border-color: rgba(11,22,48,.14);
  color: rgba(11,22,48,1);
}

html[data-theme="light"] .coach__bullets,
html[data-theme="light"] .contactrow__value,
html[data-theme="light"] .info__intro,
html[data-theme="light"] .info__list,
html[data-theme="light"] .disclaimer{
  color: rgba(11,22,48,.78);
}

/* Footer */
html[data-theme="light"] .footer__copy{
  color: rgba(11,22,48,.70);
}
html[data-theme="light"] .footer__top{
  color: rgba(11,22,48,.78);
}
html[data-theme="light"] .footer__top:hover{
  color: rgba(11,22,48,1);
}


html[data-theme="light"] .field__input{
  border: 1px solid rgba(11,22,48,.22);
  background: rgba(255,255,255,.86);
  color: rgba(11,22,48,1);
}

html[data-theme="light"] .field__input::placeholder{
  color: rgba(11,22,48,.45);
}

html[data-theme="light"] .field__input:focus{
  border-color: rgba(224,24,24,.55);
  box-shadow: 0 0 0 3px rgba(224,24,24,.16);
}

html[data-theme="light"] .section__title h2{
  color: rgba(11,22,48,1);
  text-shadow: none;
}

html[data-theme="light"] .section__title h2{
  color: rgba(11,22,48,1) !important;
  text-shadow: none !important;
}

html[data-theme="light"] .info__calloutTitle,
html[data-theme="light"] .info__calloutText{
  color: rgba(11,22,48,1) !important;
  text-shadow: none !important;
}
html[data-theme="light"] .info__card--wide{
  background: linear-gradient(90deg, rgb(224 24 24 / 90%), rgb(215 23 23 / 68%), rgb(224 24 24 / 43%));
}

html[data-theme="light"] .info__callout{
  border-color: rgba(224,24,24,.30);
}

html[data-theme="light"] .disclaimer__title{
  color: rgba(11,22,48,1) !important;
  text-shadow: none !important;
}

html[data-theme="light"] .disclaimer{
  color: rgba(11,22,48,.78);
}

html[data-theme="light"] .hero{
  background-blend-mode: multiply;
}

html[data-theme="light"],
html[data-theme="light"] body{
  background: #e4e9f0 !important;
}

/* Light mode hero banner */
html[data-theme="light"] .hero{
  background-image: url("https://i.postimg.cc/TYdSRfzJ/Chat-GPT-Image-Feb-2-2026-12-12-28-AM.png") !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

html[data-theme="light"] .hero__overlay{
  background: rgba(0, 0, 0, 0.15);
}


/* =========================
   Custom Scrollbar (Global)
   ========================= */

/* Chrome, Edge, Safari */
::-webkit-scrollbar{
  width: 10px;
}

::-webkit-scrollbar-track{
  background: rgba(0,0,0,.35);
}

::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, #ff2a2a, #c10f0f);
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,.35);
}

::-webkit-scrollbar-thumb:hover{
  background: linear-gradient(180deg, #ff4a4a, #e01818);
}

/* Firefox */
*{
  scrollbar-width: thin;
  scrollbar-color: #e01818 rgba(0,0,0,.35);
}

/* Light mode scrollbar */
html[data-theme="light"] ::-webkit-scrollbar-track{
  background: rgba(11,22,48,.15);
}

html[data-theme="light"] ::-webkit-scrollbar-thumb{
  border-color: rgba(11,22,48,.15);
}

/* Firefox light */
html[data-theme="light"] *{
  scrollbar-color: #e01818 rgba(11,22,48,.15);
}


html[data-theme="light"] .nav__logo{
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.25));
}

html[data-theme="light"] .coach__namebar {background:linear-gradient(90deg, rgb(255 5 5), rgb(224 24 24 / 67%), rgba(224, 24, 24, 0));}

/* Light mode: ensure disclaimer headings are readable even if markup differs */
html[data-theme="light"] .disclaimers h3,
html[data-theme="light"] .disclaimers h4,
html[data-theme="light"] .disclaimer__title{
  color: rgba(11,22,48,1) !important;
  text-shadow: none !important;
}

/* Always respect hidden */
[hidden]{
  display: none !important;
}

/* JS enabled */
html.js .section__body{
  display: none; /* default: collapsed */
}

/* Desktop enhancement: force open */
@media (min-width: 721px){
  html.js .section__body{
    display: block !important;
    height: auto !important;
  }
}

/* Mobile-first: default closed */
html.js .section__body{ display: none; }

/* When a section is open, show its body */
html.js .section.is-open .section__body{
  display: block;
}

/* Desktop enhancement: always open */
@media (min-width: 721px){
  html.js .section__body{
    display: block !important;
    height: auto !important;
  }
}


/* Mobile: make section titles clickable for accordion */
@media (max-width: 720px){
  html.js .section__title.js-section-toggle{ cursor: pointer; }
}

/* Indicate clickable section titles (mobile accordion) */
@media (max-width: 720px) {
  .section__title {
    cursor: pointer;
  }
}

@media (max-width: 720px) {
  .section__title {
    cursor: pointer;
    user-select: none;
  }

  .section__title:hover {
    opacity: 0.9;
  }

  .section__title:active {
    opacity: 0.85;
  }
}

/* =========================
   PortableText polish
   ========================= */
.section__content{
  color: rgba(255,255,255,.82);
  line-height: 1.6;
}

/* Paragraph spacing */
.section__content p{
  margin: 0 0 12px;
}

/* Headings inside content (your section titles are separate already) */
.section__content h2,
.section__content h3,
.section__content h4{
  font-family: var(--oswald);
  letter-spacing: .4px;
  margin: 18px 0 10px;
  text-shadow: 0 2px 0 rgba(0,0,0,.35);
}

.section__content h2{ font-size: 22px; }
.section__content h3{ font-size: 18px; }
.section__content h4{ font-size: 16px; }

/* Links */
.section__content a{
  color: rgba(255,255,255,.92);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(224,24,24,.65);
}
.section__content a:hover{
  color: #fff;
  text-decoration-color: rgba(224,24,24,.95);
}

/* Lists */
.section__content ul,
.section__content ol{
  margin: 0 0 12px;
  padding-left: 22px;
  color: rgba(255,255,255,.78);
}
.section__content li{ margin: 6px 0; }

/* Blockquotes */
.section__content blockquote{
  margin: 12px 0;
  padding: 10px 12px;
  border-left: 3px solid rgba(224,24,24,.7);
  background: rgba(0,0,0,.14);
  border-radius: 8px;
  color: rgba(255,255,255,.82);
}

/* Light mode overrides */
html[data-theme="light"] .section__content{
  color: rgba(11,22,48,.78);
}
html[data-theme="light"] .section__content a{
  color: rgba(11,22,48,.92);
  text-decoration-color: rgba(224,24,24,.75);
}
html[data-theme="light"] .section__content ul,
html[data-theme="light"] .section__content ol{
  color: rgba(11,22,48,.78);
}
html[data-theme="light"] .section__content blockquote{
  background: rgba(11,22,48,.06);
  color: rgba(11,22,48,.78);
  border-left-color: rgba(224,24,24,.75);
}
