/* ═══════════════════════════════════════════════════════
   LARC — Fully Responsive Stylesheet
   Breakpoints: 480 | 768 | 992 | 1200 | 1600px
   ═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px; /* base — all rem units scale from here */
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.7;
  min-width: 320px; /* prevent extreme shrink */
  overflow-x: hidden;
}

a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
img  { max-width: 100%; height: auto; display: block; }

/* ─── Container — fluid with max-width cap ──────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

/* ═══════════════════════════════════════════════════════
   NAVBAR — Glassmorphism Style
   ═══════════════════════════════════════════════════════ */
.navbar {
  background: rgba(14, 26, 58, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.nav-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 36px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: clamp(62px, 7vw, 78px);
  position: relative;
}

/* Logo — vertically centred with nav links */
.nav-brand {
  display: flex;
  align-items: center;
}
.nav-brand img {
  height: clamp(36px, 4.5vw, 52px);
  width: auto;
  display: block;
  opacity: 0.92;
  transition: opacity .25s, transform .25s;
  vertical-align: middle;
}
.nav-brand:hover img { opacity: 1; transform: scale(1.04); }

/* Vertical separator after logo */
.nav-brand::after {
  content: '';
  display: block;
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.15);
  margin-left: clamp(16px, 2.5vw, 32px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: clamp(18px, 2.5vw, 22px);
  cursor: pointer;
  padding: 6px 10px;
  line-height: 1;
  border-radius: 6px;
  transition: background .2s;
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }

/* Nav links list */
.nav-links {
  display: flex;
  align-items: center;
  height: clamp(62px, 7vw, 78px);
  gap: 0;
}
.nav-links > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Nav link with animated underline */
.nav-links > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 clamp(10px, 1.2vw, 17px);
  color: rgba(210,225,255,.85);
  font-size: clamp(11px, .95vw, 12.5px);
  font-weight: 600;
  letter-spacing: .8px;
  white-space: nowrap;
  position: relative;
  transition: color .25s;
}

/* Animated underline slide-in */
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2.5px;
  background: linear-gradient(90deg, #e8a020, #f0c040);
  border-radius: 2px 2px 0 0;
  transition: transform .28s cubic-bezier(.4,0,.2,1);
}
.nav-links > li > a:hover { color: #fff; }
.nav-links > li > a:hover::after,
.nav-links > li:hover > a::after { transform: translateX(-50%) scaleX(1); }

/* Dropdown */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(14,26,58,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  min-width: 200px;
  border-top: 2px solid #e8a020;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
  z-index: 1100;
  overflow: hidden;
}
.nav-has-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown li a {
  display: block;
  padding: 12px 22px;
  color: rgba(190,215,255,.85);
  font-size: 13px;
  letter-spacing: .4px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .2s, color .2s, padding-left .2s;
}
.nav-dropdown li a:hover {
  background: rgba(232,160,32,.15);
  color: #f0c040;
  padding-left: 28px;
}

/* LOGIN button — glowing pill */
.nav-member-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 38px !important;
  padding: 0 clamp(16px, 2vw, 26px) !important;
  margin-left: 14px;
  background: linear-gradient(135deg, #e8a020, #f0c040) !important;
  color: #1a2f5e !important;
  border-radius: 50px !important;
  font-size: clamp(11px, .95vw, 13px) !important;
  font-weight: 800 !important;
  letter-spacing: .6px;
  border-bottom: none !important;
  white-space: nowrap;
  box-shadow: 0 0 16px rgba(232,160,32,.4), 0 2px 8px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s, background .2s !important;
}
.nav-member-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 0 26px rgba(232,160,32,.65), 0 4px 14px rgba(0,0,0,.3) !important;
  background: linear-gradient(135deg, #f0b030, #f8d050) !important;
  border-bottom: none !important;
  color: #1a2f5e !important;
}
li:has(> .nav-member-btn) { display: flex; align-items: center; }

/* ═══════════════════════════════════════════════════════
   HERO SLIDER — truly full-width, viewport-scaled
   ═══════════════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - clamp(58px, 7vw, 76px)); /* full window minus navbar */
  overflow: hidden;
  color: #fff;
}
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1);
  filter: none;
  transition: opacity 1.6s ease, transform 1.8s ease, filter 1.6s ease;
}
.slide.active { opacity: 1; }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,55,.25) 0%, rgba(10,22,55,.65) 100%);
  z-index: 1;
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  padding: 0 clamp(32px, 7vw, 100px) 12vh;
}
.hero-sub {
  display: inline-block;
  font-size: clamp(10px, 1.2vw, 14px);
  letter-spacing: clamp(2px, .4vw, 4px);
  text-transform: uppercase;
  font-weight: 600;
  color: #f0c860;
  margin-bottom: clamp(10px, 1.5vw, 18px);
}
.hero-content h1 {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 700;
  line-height: 0.9;
  margin-top: 12px;
  margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(0,0,0,.55);
  max-width: 700px;
}
.hero-tagline {
  font-size: clamp(11px, 1.3vw, 16px);
  letter-spacing: clamp(1px, .4vw, 3px);
  opacity: .85;
  margin-bottom: clamp(48px, 7vw, 88px);
  margin-top: -12px;
}
.hero-actions { display: flex; gap: clamp(10px, 1.5vw, 16px); flex-wrap: wrap; }

/* ── Join LARC Button ─────────────────────────────────── */
.btn-join-larc {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  gap: 10px;
  padding: clamp(13px, 1.5vw, 18px) clamp(24px, 3vw, 44px);
  background: linear-gradient(135deg, #e8a020 0%, #f0c040 100%);
  color: #1a2f5e;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 800;
  letter-spacing: .5px;
  border-radius: 50px;
  box-shadow: 0 6px 28px rgba(232,160,32,.55), 0 2px 8px rgba(0,0,0,.3);
  transition: transform .2s, box-shadow .2s, background .2s;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid rgba(255,255,255,.4);
}
.btn-join-larc:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 36px rgba(232,160,32,.7), 0 4px 12px rgba(0,0,0,.35);
  background: linear-gradient(135deg, #f0b030 0%, #f8d050 100%);
}
.btn-join-larc:active { transform: translateY(-1px) scale(1.01); }
.btn-join-icon {
  width: clamp(28px, 2.5vw, 38px);
  height: clamp(28px, 2.5vw, 38px);
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.btn-join-arrow {
  font-size: clamp(14px, 1.3vw, 18px);
  transition: transform .2s;
  display: inline-block;
}
.btn-join-larc:hover .btn-join-arrow { transform: translateX(4px); }

.btn-hero-primary {
  display: inline-block;
  padding: clamp(10px, 1.2vw, 15px) clamp(20px, 3vw, 38px);
  background: #e8a020;
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
  font-size: clamp(11px, 1.1vw, 14px);
  letter-spacing: .7px;
  transition: background .2s;
  white-space: nowrap;
}
.btn-hero-primary:hover { background: #c98510; }

.btn-hero-outline {
  display: inline-block;
  padding: clamp(8px, 1vw, 13px) clamp(16px, 2.5vw, 32px);
  border: 2px solid rgba(255,255,255,.8);
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  font-size: clamp(11px, 1.1vw, 14px);
  letter-spacing: .6px;
  transition: background .2s;
  white-space: nowrap;
}
.btn-hero-outline:hover { background: rgba(255,255,255,.15); }

/* Slider dots & arrows */
.slide-dots {
  position: absolute;
  bottom: clamp(12px, 2vw, 24px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: .3s; }
.dot.active { background: #fff; transform: scale(1.3); }

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-size: clamp(14px, 1.5vw, 20px);
  width: clamp(36px, 4vw, 50px);
  height: clamp(36px, 4vw, 50px);
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s;
}
.slide-arrow:hover { background: rgba(0,0,0,.55); }
.slide-arrow.prev { left: clamp(10px, 2vw, 28px); }
.slide-arrow.next { right: clamp(10px, 2vw, 28px); }

/* ═══════════════════════════════════════════════════════
   CLUB INTRO
   ═══════════════════════════════════════════════════════ */
.section-intro {
  background: #fff;
  padding: clamp(32px, 5vw, 60px) clamp(16px, 4vw, 40px);
  text-align: center;
  border-bottom: 1px solid #eee;
}
.intro-logo {
  height: clamp(64px, 7vw, 96px);
  width: auto;
  margin: 0 auto clamp(14px, 2vw, 22px);
}
.intro-text {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(13.5px, 1.3vw, 16px);
  color: #444;
  line-height: 1.85;
}

/* ═══════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════ */
.stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(15, 25, 55, 0.62);
  backdrop-filter: blur(4px);
  padding: clamp(6px, 0.8vw, 10px) clamp(16px, 4vw, 40px);
  border-top: 3px solid #e8a020;
}
.stats-row {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.stat-item { text-align: center; padding: clamp(6px, 1vw, 10px) clamp(8px, 1.5vw, 24px); flex: 1; min-width: 0; }
.stat-num  { font-size: clamp(20px, 2.2vw, 32px); font-weight: 800; color: #5bc8f5; line-height: 1; white-space: nowrap; }
.stat-lbl  { font-size: clamp(8px, .75vw, 11px); letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 6px; white-space: nowrap; }
.stat-sep  { width: 1px; flex-shrink: 0; height: clamp(36px, 4vw, 52px); background: rgba(255,255,255,.18); }

/* ═══════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════ */
.section       { padding: clamp(40px, 6vw, 72px) clamp(16px, 4vw, 40px); }
.section-white { background: #fff; }
.section-light { background: #f4f7fb; }
.text-center   { text-align: center; }

.section-heading {
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 700;
  color: #1a2f5e;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.section-rule {
  border: none;
  border-top: 3px solid #e8a020;
  width: 56px;
  margin: 0 0 clamp(20px, 3vw, 36px) 0;
}

/* ═══════════════════════════════════════════════════════
   INFO PANELS  (Nets / Repeaters / Activities)
   ═══════════════════════════════════════════════════════ */
.info-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: clamp(16px, 2.5vw, 32px);
}
.info-panel {
  background: #fff;
  border-radius: 6px;
  padding: clamp(20px, 2.5vw, 30px);
  box-shadow: 0 1px 8px rgba(0,0,0,.08);
}
.panel-title {
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 700;
  letter-spacing: 2px;
  color: #1a2f5e;
  margin-bottom: 10px;
}
.panel-rule { border: none; border-top: 2px solid #e8a020; margin-bottom: 16px; }
.info-panel p { font-size: clamp(13px, 1.1vw, 14.5px); color: #444; line-height: 1.85; }

/* ═══════════════════════════════════════════════════════
   NEWS CARDS
   ═══════════════════════════════════════════════════════ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(16px, 2vw, 26px);
}
.news-card {
  border: 1px solid #e4eaf4;
  border-top: 4px solid #1a2f5e;
  border-radius: 5px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.news-card:hover { box-shadow: 0 6px 22px rgba(0,0,0,.1); transform: translateY(-3px); }
.news-card-img { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; background: #1a2f5e; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-card-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg,#1a2f5e,#2454a4); display: flex; align-items: center; justify-content: center; }
.news-card-placeholder span { color: #fff; font-size: 18px; font-weight: 800; letter-spacing: 2px; opacity: .7; }
.news-card-body { padding: clamp(18px, 2.5vw, 28px); }
.mini-slideshow .mini-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.mini-slideshow .mini-slide.active { opacity: 1; }
.news-cat {
  display: inline-block;
  background: #e6edf8;
  color: #1a2f5e;
  font-size: clamp(10px, .85vw, 11.5px);
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.news-card h3 { font-size: clamp(14px, 1.2vw, 16.5px); color: #1a2f5e; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.news-card p  { font-size: clamp(12.5px, 1vw, 14px); color: #555; line-height: 1.7; }
.news-date    { font-size: clamp(11px, .9vw, 12.5px); color: #999; margin-top: 14px; }

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn { display: inline-block; padding: 11px 28px; border-radius: 4px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: .2s; }
.btn-outline-dark {
  display: inline-block;
  border: 2px solid #1a2f5e;
  color: #1a2f5e;
  background: transparent;
  padding: clamp(8px, 1vw, 12px) clamp(20px, 2.5vw, 32px);
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 600;
  border-radius: 4px;
  transition: .2s;
}
.btn-outline-dark:hover { background: #1a2f5e; color: #fff; }
.btn-blue { background: #1a2f5e; color: #fff; }
.btn-blue:hover { background: #0f1e3d; }
.btn-sm   { padding: 6px 14px; font-size: 12.5px; }

/* ═══════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════ */
.section-cta {
  background: linear-gradient(135deg, #1a2f5e 0%, #2454a4 100%);
  color: #fff;
  padding: clamp(48px, 7vw, 80px) clamp(16px, 4vw, 40px);
  text-align: center;
}
.section-cta h2 { font-size: clamp(22px, 2.8vw, 34px); font-weight: 800; margin-bottom: 14px; }
.section-cta p  { font-size: clamp(14px, 1.3vw, 17px); opacity: .85; line-height: 1.8; }
.btn-cta-primary {
  display: inline-block;
  padding: clamp(12px, 1.3vw, 16px) clamp(24px, 3vw, 40px);
  background: #e8a020;
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
  font-size: clamp(12px, 1.1vw, 14.5px);
  letter-spacing: .8px;
  transition: background .2s;
  white-space: nowrap;
}
.btn-cta-primary:hover { background: #c98510; }
.btn-cta-outline {
  display: inline-block;
  padding: clamp(10px, 1.1vw, 14px) clamp(20px, 2.5vw, 36px);
  border: 2px solid rgba(255,255,255,.75);
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  font-size: clamp(12px, 1.1vw, 14.5px);
  letter-spacing: .6px;
  transition: background .2s;
  white-space: nowrap;
}
.btn-cta-outline:hover { background: rgba(255,255,255,.15); }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer { background: #122040; color: #8aadd4; padding: clamp(18px, 2.5vw, 30px) clamp(16px, 4vw, 40px) 0; }
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding-bottom: clamp(16px, 2vw, 24px);
}
.footer-logo {
  height: clamp(40px, 4vw, 54px);
  width: auto;
  background: transparent;
  margin-bottom: clamp(8px, 1vw, 12px);
}
.footer-brand p { font-size: clamp(13px, 1.1vw, 14.5px); line-height: 1.6; }
.footer-brand strong { color: #c5daf5; }
.footer-col h4 {
  color: #fff;
  font-size: clamp(10px, 1vw, 12.5px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer-rule { border: none; border-top: 2px solid #e8a020; margin-bottom: 12px; }
.footer-col p { font-size: clamp(12.5px, 1.1vw, 14px); line-height: 1.5; margin: 0 0 8px; }

/* ── Footer contact items ─────────────────────── */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: clamp(12.5px, 1.1vw, 14px);
  line-height: 1.5;
  color: #8aadd4;
}
.footer-contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item a { color: #8aadd4; transition: color .2s; }
.footer-contact-item a:hover { color: #fff; }

/* ── Social circles ───────────────────────────── */
.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.social-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #122040;
  transition: background .2s, color .2s, transform .15s;
  flex-shrink: 0;
}
.social-circle:hover {
  background: #e8a020;
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(14px, 2vw, 22px) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: clamp(11px, .9vw, 13px); color: #506a8a; }
.footer-bottom-links { display: flex; gap: clamp(12px, 2vw, 24px); flex-wrap: wrap; }
.footer-bottom-links a { font-size: clamp(11px, .9vw, 13px); color: #6a8db0; transition: color .2s; }
.footer-bottom-links a:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════
   INNER PAGES
   ═══════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #1a2f5e, #2454a4);
  color: #fff;
  padding: clamp(36px, 5vw, 60px) clamp(16px, 4vw, 40px);
  text-align: center;
}
.page-hero h1 { font-size: clamp(22px, 2.8vw, 34px); font-weight: 800; margin-bottom: 2px; }
.page-hero p  { opacity: .8; font-size: clamp(13px, 1.2vw, 16px); }

/* ─── Forms ───────────────────────────────────────────── */
.form-card { background: #fff; border-radius: 8px; padding: clamp(24px, 4vw, 44px); box-shadow: 0 4px 20px rgba(0,0,0,.1); max-width: 520px; width: 100%; margin: clamp(32px, 5vw, 64px) auto; }
.form-card h2 { color: #1a2f5e; margin-bottom: 24px; text-align: center; font-size: clamp(18px, 2vw, 24px); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #444; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 10px 14px; border: 1px solid #ccc; border-radius: 5px; font-size: 14px; font-family: inherit; transition: .2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: #1a2f5e; box-shadow: 0 0 0 3px rgba(26,47,94,.12); }
.form-submit { width: 100%; padding: 12px; background: #1a2f5e; color: #fff; border: none; border-radius: 6px; font-size: 15px; font-weight: bold; cursor: pointer; transition: .2s; }
.form-submit:hover { background: #2454a4; }
.alert { padding: 12px 16px; border-radius: 5px; margin-bottom: 18px; font-size: 14px; }
.alert-error   { background: #fce4e4; color: #9c0006; border: 1px solid #f5c2c2; }
.alert-success { background: #e2efda; color: #375623; border: 1px solid #c6e0b4; }

/* ─── Dashboard ───────────────────────────────────────── */
.dashboard { max-width: 1100px; margin: clamp(24px, 4vw, 44px) auto; padding: 0 clamp(16px, 3vw, 32px); }
.dashboard-header { margin-bottom: 28px; }
.dashboard-header h1 { color: #1a2f5e; font-size: clamp(20px, 2.2vw, 28px); }
.dashboard-header p { color: #666; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px,100%), 1fr)); gap: 16px; margin-bottom: 28px; }
.info-box { background: #fff; border-radius: 8px; padding: clamp(14px, 2vw, 22px); box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.info-box .label { font-size: 11px; color: #888; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .5px; }
.info-box .value { font-size: clamp(15px, 1.5vw, 19px); font-weight: bold; color: #1a2f5e; }
.info-box .value.active      { color: #375623; }
.info-box .value.expired     { color: #c00; }
.info-box .value.deactivated { color: #333; }
.info-box .value.suspended   { color: #7030A0; }

/* ─── Badges ──────────────────────────────────────────── */
.badge { display: inline-block; padding: 3px 12px; border-radius: 12px; font-size: 12px; font-weight: bold; }
.badge-active      { background: #e2efda; color: #375623; }
.badge-expired     { background: #fce4e4; color: #9c0006; }
.badge-pending     { background: #fff3cd; color: #7d4e00; }
.badge-suspended   { background: #ede0f7; color: #7030A0; }
.badge-deactivated { background: #2d2d2d; color: #fff; }
.badge-cancelled   { background: #ededed; color: #595959; }

/* ─── Admin ───────────────────────────────────────────── */
.admin-layout  { display: flex; min-height: calc(100vh - clamp(58px,7vw,76px)); }
.admin-sidebar { width: clamp(180px, 18vw, 240px); background: #1a2f5e; padding: 24px 0; flex-shrink: 0; }
.admin-sidebar a { display: block; padding: 12px 24px; color: #aac4e8; font-size: 13.5px; transition: .2s; }
.admin-sidebar a:hover, .admin-sidebar a.active { background: rgba(255,255,255,.1); color: #fff; }
.admin-sidebar .sidebar-title { color: #5bc8f5; font-size: 10.5px; font-weight: bold; padding: 16px 24px 6px; text-transform: uppercase; letter-spacing: 1.2px; }
.admin-sidebar .sidebar-parent { display:block; padding:12px 24px 4px; color:#fff; font-size:13.5px; font-weight:600; cursor:default; }
.admin-sidebar .sidebar-sub { padding:7px 14px 7px 36px !important; font-size:12.5px !important; color:#8ab4d8 !important; border-left:2px solid rgba(255,255,255,.12); margin-left:20px; }
.admin-sidebar .sidebar-sub:hover, .admin-sidebar .sidebar-sub.active { background:rgba(255,255,255,.1) !important; color:#fff !important; border-left-color:#5bc8f5; }
.admin-main { flex: 1; padding: clamp(20px, 3vw, 36px); overflow-x: auto; background: #f4f7fb; min-width: 0; }
.admin-main h1 { color: #1a2f5e; font-size: clamp(18px, 2vw, 24px); margin-bottom: 24px; }
.admin-stats { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.admin-stat { background: #fff; border-radius: 8px; padding: 18px 26px; box-shadow: 0 2px 8px rgba(0,0,0,.08); text-align: center; min-width: 120px; }
.admin-stat .num { font-size: clamp(22px, 2.5vw, 30px); font-weight: bold; color: #1a2f5e; }
.admin-stat .lbl { font-size: 12px; color: #888; }
.admin-stat.green  .num { color: #375623; }
.admin-stat.red    .num { color: #c00; }
.admin-stat.purple .num { color: #7030A0; }

/* ─── Table ───────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.08); font-size: 13px; }
.data-table thead th { background: #1a2f5e; color: #fff; padding: 11px 14px; text-align: left; white-space: nowrap; font-size: 12.5px; letter-spacing: .4px; }
.data-table tbody tr:nth-child(even) { background: #f7f9fc; }
.data-table tbody tr:hover { background: #e8f0fe; }
.data-table td { padding: 9px 14px; border-bottom: 1px solid #eee; white-space: nowrap; }
.table-toolbar { display: flex; gap: 12px; margin-bottom: 14px; align-items: center; flex-wrap: wrap; }
.table-toolbar input  { padding: 8px 12px; border: 1px solid #ccc; border-radius: 5px; font-size: 13px; width: min(240px, 100%); }
.table-toolbar select { padding: 8px 10px; border: 1px solid #ccc; border-radius: 5px; font-size: 13px; }

/* ─── Card / Contact ──────────────────────────────────── */
.card { background: #fff; border-radius: 8px; padding: clamp(18px, 2.5vw, 30px); box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px,100%), 1fr)); gap: clamp(24px, 4vw, 44px); max-width: 960px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════ */

/* Large monitors (≥ 1600px) */
@media (min-width: 1600px) {
  .hero-slider { height: calc(100vh - clamp(58px, 7vw, 76px)); }
  .container, .nav-container, .footer-inner, .footer-bottom { max-width: 1440px; }
}

/* Tablet landscape / small laptop (≤ 1024px) */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Tablet portrait (≤ 900px) — switch to hamburger */
@media (max-width: 900px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: auto;
    background: #1a2f5e;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0 20px;
    box-shadow: 0 10px 28px rgba(0,0,0,.4);
    gap: 0;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { height: auto; display: block; }
  .nav-links > li > a {
    height: auto;
    padding: 13px 22px;
    line-height: 1.5;
    border-bottom: none;
    border-left: 3px solid transparent;
    font-size: 13.5px;
  }
  .nav-links > li > a:hover { border-left-color: #e8a020; background: rgba(255,255,255,.07); }
  .nav-member-btn {
    display: block !important;
    margin: 12px 18px !important;
    height: auto !important;
    padding: 12px 20px !important;
    text-align: center;
    border-radius: 4px;
    font-size: 13.5px !important;
  }
  li:has(> .nav-member-btn) { display: block; }
  .nav-dropdown {
    position: static;
    display: block;
    border-top: none;
    border-left: 4px solid #e8a020;
    margin-left: 22px;
    box-shadow: none;
    background: rgba(255,255,255,.05);
  }
  .nav-has-dropdown > a::after { content: ' ▾'; }
}

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
  .stats-bar { display: none; }
  .stat-sep { display: none; }
  .stat-item { padding: 8px 16px; width: 50%; }
  .stats-row { justify-content: center; }

  .hero-content { align-items: center; text-align: center; padding: 0 24px; }
  .hero-content h1 { max-width: 100%; }
  .btn-join-larc { align-self: center; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .admin-layout  { flex-direction: column; }
  .admin-sidebar { width: 100%; }
  .admin-sidebar a { padding: 10px 16px; }

  .section-cta .hero-actions,
  .section-cta > .container > div { flex-direction: column; align-items: center; }
  .btn-cta-primary, .btn-cta-outline { width: 100%; max-width: 260px; text-align: center; }

  .data-table { font-size: 12px; }
  .data-table td, .data-table thead th { padding: 7px 10px; }
}

/* Small mobile (≤ 400px) */
@media (max-width: 400px) {
  .hero-content h1 { font-size: 18px; }
  .stat-item { width: 100%; }
  .nav-brand img { height: 38px; }
}
