/* ── GWilkens — Design System ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --bg:     #07111F;
  --card:   #0D1E35;
  --card2:  #112540;
  --blue:   #003F87;
  --red:    #CE1126;
  --gold:   #F5C842;
  --text:   #E8F0FB;
  --sub:    #7A90B5;
  --border: #1A3060;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  background:var(--bg);
  color:var(--text);
  font-family:'DM Sans', sans-serif;
  font-size:1rem;
  line-height:1.7;
  min-height:100vh;
}

/* ── NAVBAR ── */
.navbar {
  background:linear-gradient(90deg,#03173A 0%,#00306E 100%);
  border-bottom:2px solid var(--red);
  display:flex;
  align-items:center;
  padding:0 40px;
  height:62px;
  position:sticky;
  top:0;
  z-index:100;
  box-shadow:0 2px 20px rgba(0,0,0,0.5);
  gap:4px;
}
.navbar a {
  color:var(--sub);
  text-decoration:none;
  padding:8px 18px;
  border-radius:8px;
  font-size:0.92rem;
  font-weight:500;
  transition:all .2s;
  white-space:nowrap;
}
.navbar a:first-child {
  font-family:'Playfair Display', serif;
  font-size:1.15rem;
  color:var(--gold);
  margin-right:20px;
  padding-left:0;
}
.navbar a:hover { color:white; background:rgba(255,255,255,0.1); }
.navbar a.active { color:white; background:rgba(255,255,255,0.12); border-bottom:2px solid var(--gold); }

/* ── HERO ── */
.hero {
  background:linear-gradient(135deg,#03173A 0%,#001A4E 100%);
  border-bottom:1px solid var(--border);
  padding:72px 40px 60px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.hero::before {
  content:'';
  position:absolute; top:-80px; right:-80px;
  width:320px; height:320px;
  background:radial-gradient(circle,rgba(206,17,38,0.12) 0%,transparent 70%);
  border-radius:50%;
}
.hero::after {
  content:'';
  position:absolute; bottom:-60px; left:-60px;
  width:280px; height:280px;
  background:radial-gradient(circle,rgba(0,63,135,0.15) 0%,transparent 70%);
  border-radius:50%;
}
.hero h1 {
  font-family:'Playfair Display', serif;
  font-size:clamp(2rem,5vw,3.2rem);
  color:var(--gold);
  margin-bottom:16px;
  position:relative;
}
.hero p {
  color:var(--sub); font-size:1.05rem;
  max-width:680px; margin:0 auto 28px;
  position:relative;
}
.hero-badge {
  display:inline-block;
  background:rgba(206,17,38,0.15);
  border:1px solid rgba(206,17,38,0.4);
  color:#FF8090;
  padding:6px 18px; border-radius:20px;
  font-size:0.82rem; font-weight:600;
  margin-bottom:24px; letter-spacing:.5px;
}

/* ── CONTAINERS ── */
.container    { max-width:1100px; margin:0 auto; padding:48px 32px; }
.container-sm { max-width:800px;  margin:0 auto; padding:48px 32px; }

/* ── SIDEBAR LAYOUT ── */
.layout-sidebar {
  display:grid;
  grid-template-columns:1fr 300px;
  gap:32px;
  max-width:1100px;
  margin:0 auto;
  padding:48px 32px;
}

/* ── CARDS ── */
.card {
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
  transition:border-color .2s;
}
.card:hover { border-color:var(--blue); }

.sidebar-card {
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:20px;
  margin-bottom:20px;
}
.sidebar-card h3 {
  font-family:'Playfair Display', serif;
  color:var(--gold); font-size:1rem;
  margin-bottom:14px; padding-bottom:10px;
  border-bottom:1px solid var(--border);
}
.sidebar-card a img {
  width:100%; border-radius:8px;
  margin-bottom:6px; display:block;
  transition:opacity .2s;
}
.sidebar-card a img:hover { opacity:0.82; }
.sidebar-card a { text-decoration:none; }

/* ── SECTION TITLE ── */
.section-title {
  font-family:'Playfair Display', serif;
  font-size:1.4rem; color:var(--gold);
  margin-bottom:20px; padding-bottom:12px;
  border-bottom:1px solid var(--border);
  display:flex; align-items:center; gap:10px;
}

/* ── BUTTONS ── */
.btn {
  display:inline-block;
  padding:11px 24px; border-radius:8px;
  font-weight:600; font-size:0.9rem;
  cursor:pointer; border:none;
  text-decoration:none;
  transition:all .2s;
  font-family:'DM Sans', sans-serif;
}
.btn-primary { background:var(--red); color:white; }
.btn-primary:hover { background:#A50E1E; }
.btn-blue { background:var(--blue); color:white; }
.btn-blue:hover { background:#002E65; }
.btn-gold { background:var(--gold); color:#07111F; font-weight:700; }
.btn-gold:hover { opacity:0.85; }
.btn-ghost { background:transparent; color:var(--sub); border:1px solid var(--border); }
.btn-ghost:hover { border-color:var(--text); color:var(--text); }
.btn-sm { padding:7px 16px; font-size:0.82rem; }

/* ── GRIDS ── */
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.grid-3 { display:grid; grid-template-columns:1fr 1fr 1fr; gap:20px; }

/* ── BADGES ── */
.badge { display:inline-block; padding:4px 14px; border-radius:20px; font-size:0.78rem; font-weight:600; }
.badge-blue  { background:rgba(0,63,135,0.3);   color:#7AB4FF; border:1px solid rgba(0,63,135,0.5); }
.badge-red   { background:rgba(206,17,38,0.2);  color:#FF8090; border:1px solid rgba(206,17,38,0.4); }
.badge-gold  { background:rgba(245,200,66,0.15);color:var(--gold); border:1px solid rgba(245,200,66,0.3); }
.badge-green { background:rgba(34,197,94,0.15); color:#86EFAC; border:1px solid rgba(34,197,94,0.3); }

/* ── STYLED LIST ── */
.styled-list { list-style:none; padding:0; }
.styled-list li {
  padding:10px 0;
  border-bottom:1px solid var(--border);
  color:var(--text);
  display:flex; align-items:flex-start; gap:10px;
  font-size:0.95rem;
}
.styled-list li::before { content:'→'; color:var(--gold); font-weight:700; flex-shrink:0; margin-top:2px; }
.styled-list li:last-child { border-bottom:none; }
.styled-list a { color:var(--gold); text-decoration:none; font-weight:500; }
.styled-list a:hover { text-decoration:underline; }

/* ── INFO BOXES ── */
.info-box-blue {
  background:rgba(0,63,135,0.15);
  border:1px solid rgba(0,63,135,0.4);
  border-radius:var(--radius); padding:20px; margin-bottom:24px;
}
.info-box-blue p { color:#7AB4FF; font-size:0.9rem; }
.info-box-gold {
  background:rgba(245,200,66,0.08);
  border:1px solid rgba(245,200,66,0.25);
  border-radius:var(--radius); padding:20px; margin-bottom:24px;
}
.info-box-gold p { color:var(--gold); font-size:0.9rem; }

/* ── CAROUSEL ── */
.carousel { overflow:hidden; border-radius:10px; margin:16px 0; }
.carousel ul {
  display:flex; list-style:none;
  animation:slide 32s linear infinite;
  width:max-content;
}
.carousel ul:hover { animation-play-state:paused; }
.carousel li { flex-shrink:0; width:220px; height:140px; margin-right:12px; border-radius:8px; overflow:hidden; }
.carousel li img { width:100%; height:100%; object-fit:cover; filter:brightness(0.85); transition:filter .3s; }
.carousel li:hover img { filter:brightness(1); }
@keyframes slide { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── STAT CARD ── */
.stat-card { background:var(--card); border:1px solid var(--border); border-radius:var(--radius); padding:24px; text-align:center; }
.stat-card .stat-icon { font-size:2rem; margin-bottom:8px; }
.stat-card .stat-val  { font-family:'Playfair Display',serif; font-size:2rem; color:var(--gold); }
.stat-card .stat-lbl  { font-size:0.82rem; color:var(--sub); margin-top:4px; }

/* ── FORM ── */
.form-group { margin-bottom:18px; }
.form-label {
  display:block; font-size:0.8rem; color:var(--sub);
  margin-bottom:6px; font-weight:500;
  letter-spacing:.5px; text-transform:uppercase;
}
.form-control {
  width:100%; padding:12px 14px;
  background:#0A1A30; border:1px solid var(--border);
  border-radius:8px; color:var(--text);
  font-size:0.95rem; font-family:'DM Sans', sans-serif;
  transition:border-color .2s; outline:none;
}
.form-control:focus { border-color:var(--blue); box-shadow:0 0 0 3px rgba(0,63,135,0.2); }
textarea.form-control { resize:vertical; min-height:110px; }
select.form-control option { background:#0A1A30; }

/* ── DIVIDER ── */
.divider { height:1px; background:var(--border); margin:28px 0; }

/* ── COOKIE BANNER ── */
#cookie-consent-popup {
  position:fixed; bottom:0; left:0; width:100%;
  background:var(--card2); border-top:1px solid var(--border);
  padding:16px 32px;
  display:flex; align-items:center; gap:16px; flex-wrap:wrap;
  z-index:999; box-shadow:0 -4px 20px rgba(0,0,0,0.4);
}
#cookie-consent-popup p { color:var(--sub); font-size:0.85rem; flex:1; margin:0; }
#cookie-consent-popup a { color:var(--gold); }
#accept-cookies {
  background:var(--blue); color:white;
  padding:8px 20px; border:none; border-radius:8px;
  cursor:pointer; font-weight:600; font-size:0.85rem;
  font-family:'DM Sans',sans-serif;
}
#reject-cookies {
  background:transparent; color:var(--sub);
  padding:8px 20px; border:1px solid var(--border); border-radius:8px;
  cursor:pointer; font-size:0.85rem; font-family:'DM Sans',sans-serif;
}

/* ── FOOTER ── */
footer {
  background:var(--card); border-top:1px solid var(--border);
  text-align:center; padding:28px 32px;
  color:var(--sub); font-size:0.85rem; margin-top:60px;
}
footer a { color:var(--gold); text-decoration:none; }
footer a:hover { text-decoration:underline; }
footer p + p { margin-top:6px; }

/* ── RESPONSIVE ── */
@media(max-width:768px) {
  .navbar { padding:12px 16px; flex-wrap:wrap; height:auto; gap:6px; }
  .layout-sidebar { grid-template-columns:1fr; }
  .grid-2, .grid-3 { grid-template-columns:1fr; }
  .container, .container-sm { padding:28px 16px; }
  .hero { padding:48px 20px 40px; }
  .hero h1 { font-size:1.8rem; }
}