/* =========================================
   AIMSAT AFRICA - Global Stylesheet
   Colors: Black (#0a0a0a), Red (#d4001a), White (#f5f5f5), Gold (#c9a84c)
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Raleway:wght@300;400;500;600;700&family=Dancing+Script:wght@600&display=swap');

:root {
  --black: #0a0a0a;
  --deep: #111111;
  --red: #d4001a;
  --red-light: #ff1a35;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --white: #f5f5f5;
  --grey: #888;
  --border: rgba(201,168,76,0.25);
  --card-bg: #161616;
  --nav-height: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ---- NAV ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4%;
  z-index: 1000;
  transition: all 0.3s;
}

nav.scrolled {
  height: 65px;
  background: rgba(10,10,10,0.99);
  box-shadow: 0 4px 30px rgba(212,0,26,0.15);
}

.nav-logo img {
  height: 42px;
  object-fit: contain;
  filter: brightness(1.1);
}

.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 3px;
  transition: all 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 1px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: calc(var(--nav-height) + 40px) 4% 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212,0,26,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 80% 70%, rgba(201,168,76,0.05) 0%, transparent 60%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 60px,
    rgba(201,168,76,0.03) 60px, rgba(201,168,76,0.03) 61px
  ),
  repeating-linear-gradient(
    90deg, transparent, transparent 60px,
    rgba(201,168,76,0.03) 60px, rgba(201,168,76,0.03) 61px
  );
}

.hero > * { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(212,0,26,0.4);
  padding: 6px 20px; border-radius: 2px;
  margin-bottom: 28px;
  display: inline-block;
  animation: fadeUp 0.8s 0.2s both;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900; line-height: 1.05;
  color: var(--white);
  margin-bottom: 10px;
  animation: fadeUp 0.8s 0.4s both;
}

.hero h1 span { color: var(--red); }

.hero-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.5s both;
}

.hero p {
  max-width: 560px;
  font-size: 1rem; color: rgba(245,245,245,0.7);
  margin: 0 auto 48px;
  animation: fadeUp 0.8s 0.6s both;
}

.hero-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; max-width: 820px; width: 100%;
  animation: fadeUp 0.8s 0.8s both;
}

.hero-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 36px 30px;
  text-decoration: none; color: var(--white);
  transition: all 0.35s; position: relative; overflow: hidden;
  cursor: pointer;
}

.hero-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,0,26,0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.35s;
}

.hero-card:hover { transform: translateY(-6px); border-color: var(--red); box-shadow: 0 20px 50px rgba(212,0,26,0.2); }
.hero-card:hover::before { opacity: 1; }

.hero-card .card-icon {
  font-size: 2.2rem; margin-bottom: 14px; display: block;
}

.hero-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: 10px;
}

.hero-card p { font-size: 0.88rem; color: rgba(245,245,245,0.6); margin: 0; }

.card-tag {
  display: inline-block; margin-top: 18px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
}

/* ---- PAGE HEADER ---- */
.page-header {
  padding: calc(var(--nav-height) + 60px) 4% 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(212,0,26,0.06) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}

.page-header .eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 16px; display: block;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.1;
}

.page-header h1 span { color: var(--red); }

.page-header p {
  max-width: 600px; margin: 20px auto 0;
  font-size: 1rem; color: rgba(245,245,245,0.65);
}

/* ---- SECTIONS ---- */
.section { padding: 80px 4%; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; text-align: center; margin-bottom: 8px;
}
.section-title span { color: var(--red); }
.section-sub {
  text-align: center; color: var(--grey); font-size: 0.92rem;
  margin-bottom: 50px;
}
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  margin: 14px auto 48px; border-radius: 2px;
}

/* ---- SEASON TABS ---- */
.season-tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 50px;
}

.season-tab {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--grey);
  font-family: 'Raleway', sans-serif;
  font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; border-radius: 3px;
  transition: all 0.25s;
}

.season-tab:hover { border-color: var(--red); color: var(--white); }
.season-tab.active { background: var(--red); border-color: var(--red); color: var(--white); }

.season-content { display: none; }
.season-content.active { display: block; animation: fadeUp 0.4s both; }

.season-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start; margin-bottom: 50px;
}

.season-info { }
.season-year {
  font-family: 'Playfair Display', serif;
  font-size: 5rem; font-weight: 900; color: rgba(212,0,26,0.15);
  line-height: 1; margin-bottom: -10px;
}
.season-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px; display: block;
}
.season-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; margin-bottom: 14px;
}
.season-info p { color: rgba(245,245,245,0.65); font-size: 0.92rem; }

.winner-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 28px;
  text-align: center;
}
.winner-card .trophy { font-size: 2.5rem; margin-bottom: 10px; display: block; }
.winner-card .winner-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px; display: block;
}
.winner-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--white);
  margin-bottom: 6px;
}
.winner-card p { font-size: 0.85rem; color: var(--grey); }

.winner-placeholder {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,0,26,0.2), rgba(201,168,76,0.2));
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; margin: 0 auto 16px;
}

.video-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.video-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
  transition: all 0.3s;
}

.video-card:hover { transform: translateY(-4px); border-color: rgba(212,0,26,0.5); }

.video-thumb {
  position: relative; padding-top: 56.25%;
  background: #1a1a1a; overflow: hidden;
}

.video-thumb iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}

.video-thumb .play-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #222);
  font-size: 3rem; cursor: pointer;
}

.video-thumb .play-placeholder .play-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 12px;
  transition: transform 0.3s;
}

.video-thumb .play-placeholder:hover .play-icon { transform: scale(1.1); }

.video-thumb .play-placeholder span:last-child {
  font-size: 0.78rem; color: var(--grey); letter-spacing: 0.05em;
}

.video-info { padding: 16px; }
.video-info h4 { font-size: 0.92rem; font-weight: 600; margin-bottom: 4px; }
.video-info p { font-size: 0.78rem; color: var(--grey); }

/* ---- ADMIN UPLOAD ---- */
.admin-area {
  display: none;
  background: rgba(212,0,26,0.05);
  border: 1px dashed rgba(212,0,26,0.4);
  border-radius: 8px; padding: 20px; margin-top: 20px;
  text-align: center;
}

.admin-area.visible { display: block; }
.upload-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,0,26,0.15); border: 1px solid rgba(212,0,26,0.5);
  color: var(--white); padding: 10px 20px; border-radius: 4px;
  font-family: 'Raleway', sans-serif; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; text-transform: uppercase; letter-spacing: 0.1em;
  transition: all 0.25s;
}
.upload-btn:hover { background: var(--red); }
.upload-note { font-size: 0.75rem; color: var(--grey); margin-top: 8px; }

/* ---- COURSES ---- */
.courses-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.course-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 36px 28px; position: relative; overflow: hidden;
  transition: all 0.35s;
}

.course-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.course-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); border-color: rgba(212,0,26,0.4); }

.course-icon { font-size: 2.8rem; margin-bottom: 18px; display: block; }
.course-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700; margin-bottom: 12px;
}
.course-card p { font-size: 0.88rem; color: rgba(245,245,245,0.6); margin-bottom: 24px; }

.course-details { margin-bottom: 28px; }
.course-detail-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--grey); margin-bottom: 6px;
}
.course-detail-item span:first-child { color: var(--gold); }

.price-tag {
  display: flex; align-items: baseline; gap: 6px; margin-bottom: 24px;
}
.price-tag .amount {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--white);
}
.price-tag .period { font-size: 0.82rem; color: var(--grey); }

.enroll-btn {
  display: block; width: 100%;
  background: linear-gradient(135deg, var(--red), #a80015);
  color: var(--white); text-align: center;
  padding: 14px; border-radius: 4px;
  text-decoration: none; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.3s; border: none; cursor: pointer;
  font-family: 'Raleway', sans-serif;
}
.enroll-btn:hover { transform: scale(1.02); box-shadow: 0 8px 25px rgba(212,0,26,0.4); }

/* ---- FORMS ---- */
.form-tabs {
  display: flex; gap: 0; max-width: 500px; margin: 0 auto 50px;
  border: 1px solid var(--border); border-radius: 5px; overflow: hidden;
}

.form-tab {
  flex: 1; padding: 14px 20px;
  background: transparent; border: none;
  color: var(--grey); font-family: 'Raleway', sans-serif;
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer; transition: all 0.25s;
}
.form-tab.active { background: var(--red); color: var(--white); }
.form-tab:hover:not(.active) { color: var(--white); background: rgba(212,0,26,0.15); }

.form-section { display: none; max-width: 650px; margin: 0 auto; }
.form-section.active { display: block; animation: fadeUp 0.4s both; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--card-bg);
  border: 1px solid var(--border); border-radius: 4px;
  padding: 14px 16px; color: var(--white);
  font-family: 'Raleway', sans-serif; font-size: 0.92rem;
  transition: border-color 0.25s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { height: 120px; resize: vertical; }
.form-group select option { background: #222; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.submit-btn {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--red), #a80015);
  color: var(--white); border: none; border-radius: 4px;
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 0.88rem; letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; margin-top: 10px;
}
.submit-btn:hover { box-shadow: 0 8px 30px rgba(212,0,26,0.4); transform: scale(1.01); }

.form-success {
  display: none; text-align: center; padding: 40px;
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
}
.form-success .check { font-size: 3rem; margin-bottom: 14px; display: block; }
.form-success h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 8px; color: var(--gold); }
.form-success p { color: var(--grey); font-size: 0.9rem; }

/* ---- ABOUT ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-text {}
.about-text h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; margin-bottom: 20px; }
.about-text h2 span { color: var(--red); }
.about-text p { font-size: 0.92rem; color: rgba(245,245,245,0.7); margin-bottom: 16px; }

.founder-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 36px; text-align: center; position: sticky; top: 100px;
}

.founder-avatar {
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,0,26,0.3), rgba(201,168,76,0.3));
  border: 3px solid var(--gold); display: flex; align-items: center;
  justify-content: center; font-size: 3rem; margin: 0 auto 20px;
}

.founder-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
  margin-bottom: 4px;
}
.founder-card .title { font-size: 0.78rem; color: var(--red); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; margin-bottom: 16px; display: block; }
.founder-card .bio-item { font-size: 0.85rem; color: var(--grey); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; justify-content: center; }
.founder-card .bio-item span:first-child { color: var(--gold); }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; }

.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 24px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(212,0,26,0.15); border: 1px solid rgba(212,0,26,0.3);
  border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.contact-item h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-item p { font-size: 0.88rem; color: rgba(245,245,245,0.7); }
.contact-item a { color: rgba(245,245,245,0.7); text-decoration: none; transition: color 0.2s; display: block; }
.contact-item a:hover { color: var(--red); }

.hours-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 8px; padding: 24px; margin-top: 28px; }
.hours-card h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.hours-item { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hours-item:last-child { border: none; }
.hours-item span:last-child { color: var(--grey); }

/* ---- FOOTER ---- */
footer {
  background: var(--deep); border-top: 1px solid var(--border);
  padding: 60px 4% 30px;
}

.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 50px;
}

.footer-brand img { height: 36px; margin-bottom: 16px; filter: brightness(1.1); }
.footer-brand p { font-size: 0.85rem; color: var(--grey); line-height: 1.7; }

.footer-col h4 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--grey); text-decoration: none; font-size: 0.87rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }

.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 40px; height: 40px; border-radius: 6px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; text-decoration: none; color: var(--white);
  transition: all 0.25s;
}
.social-link:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: var(--grey);
}

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; box-shadow: 0 6px 25px rgba(37,211,102,0.4);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all 0.3s;
  animation: pulse-green 2.5s infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 10px 35px rgba(37,211,102,0.6); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: white; }

/* ---- PAGE VISIBILITY ---- */
.page { display: none; }
.page.active { display: block; }

/* ---- PARTNER BANNER ---- */
.partner-banner {
  background: linear-gradient(135deg, rgba(212,0,26,0.12), rgba(201,168,76,0.08));
  border: 1px solid var(--border); border-radius: 10px;
  padding: 50px; text-align: center; margin-bottom: 60px;
}
.partner-banner h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 12px; }
.partner-banner p { color: var(--grey); max-width: 500px; margin: 0 auto; }

/* ---- STATS ROW ---- */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
  margin-bottom: 80px;
}
.stat-box {
  background: var(--card-bg); padding: 30px 20px; text-align: center;
}
.stat-box .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 900;
  background: linear-gradient(135deg, var(--red), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stat-box .label { font-size: 0.78rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 35px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ---- ADMIN LOGIN ---- */
.admin-bar {
  position: fixed; bottom: 28px; left: 28px; z-index: 998;
}
.admin-toggle {
  background: rgba(20,20,20,0.9); border: 1px solid var(--border);
  color: var(--grey); padding: 8px 14px; border-radius: 4px;
  font-family: 'Raleway', sans-serif; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  transition: all 0.2s;
}
.admin-toggle:hover { border-color: var(--gold); color: var(--gold); }

.admin-modal {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.85); align-items: center; justify-content: center;
}
.admin-modal.visible { display: flex; }
.admin-modal-box {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 40px; width: 100%; max-width: 400px;
  position: relative;
}
.admin-modal-box h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 24px; }
.admin-modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; color: var(--grey); font-size: 1.2rem; cursor: pointer;
}
.admin-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(212,0,26,0.15); border: 1px solid rgba(212,0,26,0.4);
  color: var(--red); padding: 5px 12px; border-radius: 3px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 20px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-cards { grid-template-columns: 1fr; max-width: 420px; }
  .season-header { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .nav-links { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0; background: rgba(10,10,10,0.98); flex-direction: column; align-items: center; justify-content: center; gap: 20px; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .hamburger { display: flex; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
}
