/* Bournemouth Scouts holding page — styles.css */

:root{
  --bg: #0b1220;
  --panel: rgba(255,255,255,0.06);
  --panel-2: rgba(255,255,255,0.09);
  --text: #f2f5ff;
  --muted: rgba(242,245,255,0.72);
  --border: rgba(255,255,255,0.12);
  --accent: #2fd3ff;
  --accent-2: #7c00da;
  --good: #3cff8f;

  --radius: 18px;
  --shadow: 0 18px 60px rgba(0,0,0,0.45);
  --max: 1100px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(47,211,255,0.18), transparent 60%),
    radial-gradient(900px 500px at 80% 20%, rgba(124,0,218,0.18), transparent 55%),
    radial-gradient(900px 900px at 50% 110%, rgba(60,255,143,0.10), transparent 60%),
    var(--bg);
}

a{ color: inherit; }
.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background: #000;
  border:1px solid var(--border);
  border-radius: 10px;
  z-index:999;
}

.site-header{
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  background: rgba(10,16,30,0.35);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
}
.brand-mark{
  width: 44px;
  height: 44px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(47,211,255,0.25), rgba(124,0,218,0.25));
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-size: 20px;
}
.brand-title{
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1.1;
}
.brand-subtitle{
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 2px;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
  max-width: 70vw;
}

.status-pill{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: rgba(242,245,255,0.9);
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.status-pill .dot{
  width:10px;
  height:10px;
  border-radius: 999px;
  background: var(--good);
  box-shadow: 0 0 0 6px rgba(60,255,143,0.12);
}

.hero{
  padding: 54px 0 22px;
}

h1{
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.lead{
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 70ch;
  line-height: 1.6;
}

.cta-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 26px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  text-decoration:none;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }

.btn.primary{
  background: linear-gradient(135deg, rgba(47,211,255,0.22), rgba(47,211,255,0.10));
  border-color: rgba(47,211,255,0.35);
}
.btn.secondary{
  background: rgba(255,255,255,0.05);
}

.cards{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.card{
  grid-column: span 12;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

@media (min-width: 820px){
  .card:nth-child(1){ grid-column: span 4; }
  .card:nth-child(2){ grid-column: span 4; }
  .card:nth-child(3){ grid-column: span 4; }
}

.card h2{
  margin: 0 0 10px;
  font-size: 1.2rem;
}
.card p{
  margin: 0 0 10px;
  color: rgba(242,245,255,0.9);
  line-height: 1.6;
}
.muted{ color: var(--muted); }

.list{
  margin: 14px 0 0;
}
.list > div{
  display:grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px dashed rgba(255,255,255,0.14);
}
.list dt{
  color: var(--muted);
  font-weight: 700;
}
.list dd{
  margin: 0;
}

.bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(242,245,255,0.92);
  line-height: 1.8;
}

.info{
  margin: 18px 0 0;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.30);
}
.info h2{ margin: 0 0 10px; }
.info-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.text-link{
  color: var(--accent);
  text-decoration: none;
  font-weight: 800;
}
.text-link:hover{ text-decoration: underline; }

.quick-links{
  padding: 24px 0 8px;
}
.quick-links h2{ margin: 0 0 12px; }

.link-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.link-card{
  grid-column: span 12;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 14px 12px;
  text-decoration:none;
  transition: transform .12s ease, background .12s ease;
}
.link-card:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.06);
}
.link-card span{
  font-weight: 900;
  display:block;
  margin-bottom: 4px;
}
.link-card small{
  color: var(--muted);
  line-height: 1.4;
}

@media (min-width: 820px){
  .link-card{ grid-column: span 6; }
}
@media (min-width: 1040px){
  .link-card{ grid-column: span 3; }
}

.site-footer{
  padding: 26px 0 40px;
  border-top: 1px solid var(--border);
  margin-top: 26px;
}
.footer-inner{
  color: rgba(242,245,255,0.86);
}
.footer-inner p{
  margin: 6px 0;
}