:root {
  --bg: #F5F3EE;
  --white: #FFFFFF;
  --black: #0d0d0d;
  --border: 1.5px solid #1a1a1a;
  --shadow: 3px 3px 0 #1a1a1a;
  --shadow-lg: 5px 5px 0 #1a1a1a;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-pill: 100px;
  
  --yellow: #F5C518;
  --blue: #4B6BFB;
  --light: #F7F5F0;
  --pink: #FF6B9D;
  --green: #1DB954;
  
  --primary-color: var(--black);
  --primary-hover: #333333;
  --text-main: var(--black);
  --text-muted: #555555;
  --background: var(--light);
  --foreground: var(--black);
  --success-color: #27ae60;
  --error-color: #EF4444;

  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-head: 'Nunito', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  max-width: 100vw;
  overflow-x: hidden;
  height: 100%;
}

body {
  background: var(--background);
  font-family: var(--font-body);
  color: var(--black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

.main {
  overflow-x: hidden;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.revealActive {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════
   FLOATING NAVBAR
═══════════════════════════════ */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1100px;
  z-index: 100;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 16px;
  box-shadow: 4px 4px 0px var(--black);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.2s ease;
}
.navbar:hover {
  box-shadow: 6px 6px 0px var(--black);
}

.navLogo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navLogoIcon {
  width: 36px; height: 36px;
  background: var(--black);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.navLogoIcon svg { width: 20px; height: 20px; }
.navLogoText {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
}

.navLinks {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.navLinks a {
  text-decoration: none;
  color: var(--black);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  transition: background 0.15s ease;
}
.navLinks a:hover { background: var(--light); }

/* ═══════════════════════════════
   HERO SECTION
═══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 60px 60px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  position: relative;
}

/* ── LEFT ── */
.heroLeft {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeUp 0.8s ease both;
  z-index: 10;
}

.heroEyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--black);
  border-radius: 50px;
  padding: 6px 14px;
  width: fit-content;
  background: var(--white);
  box-shadow: 2px 2px 0 var(--black);
}
.heroEyebrow span {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

.heroTitle {
  font-family: 'Playfair Display', serif;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.lineLg {
  font-size: 4.2rem;
  font-weight: 900;
  color: var(--black);
  display: block;
}

.heroMark {
  background-color: var(--yellow);
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
  border: 2px solid var(--black);
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 3px 3px 0 var(--black);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 1.6;
}

.heroMeta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
}
.heroMeta .accent { color: var(--blue); }

.heroActions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.btnPrimary {
  background: var(--blue);
  color: var(--white);
  border: 2.5px solid var(--black);
  border-radius: 50px;
  padding: 13px 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--black);
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.btnPrimary:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--black); color: var(--white); }

/* Latest Registrant Ticker */
.ticker {
  background-color: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 4px 4px 0 var(--black);
  animation: slideIn 0.5s ease-out;
  margin-top: 20px;
}

/* ── RIGHT ── */
.heroRight {
  position: relative;
  height: 520px;
  animation: fadeUp 0.8s ease 0.15s both;
}

.heroMainImg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.heroMainImg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(6px 6px 0 var(--black));
  animation: float 4s ease-in-out infinite;
}

.sticker {
  position: absolute;
  width: 90px;
  height: 90px;
  object-fit: contain;
  z-index: 15;
  filter: drop-shadow(4px 4px 0 var(--black));
}
.sticker1 { top: 20px; left: 20px; animation: float 3s ease-in-out infinite; }
.sticker2 { bottom: 40px; right: -10px; animation: float 3s ease-in-out infinite 0.9s; }
.sticker3 { top: 50%; left: -30px; animation: float 3s ease-in-out infinite 1.7s; }
.sticker4 { top: 10px; right: 30px; animation: float 3s ease-in-out infinite 0.5s; }
.sticker5 { bottom: -10px; left: 30%; animation: float 3s ease-in-out infinite 1.2s; }

/* deco elements */
.deco {
  position: absolute;
  pointer-events: none;
  z-index: 5;
}
.decoStarLg {
  top: 60px; left: 20px;
  font-size: 2.5rem;
  color: var(--yellow);
  -webkit-text-stroke: 2px var(--black);
  animation: spin 8s linear infinite;
}
.decoStarSm {
  bottom: 100px; left: 50px;
  font-size: 1.4rem;
  color: var(--black);
  opacity: 0.5;
  animation: spin 5s linear infinite reverse;
}
.decoSquiggle {
  top: 180px; left: -10px;
  opacity: 0.6;
}
.decoBurst {
  bottom: 90px; right: 140px;
  font-size: 2rem;
  color: var(--black);
  opacity: 0.25;
  animation: spin 6s linear infinite;
}

.heroBgBlob {
  position: absolute;
  top: -60px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle at 40% 40%, rgba(245,197,24,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}


/* Section Common */
.section {
  padding: 80px 40px;
  border-bottom: 2px solid var(--black);
}

.sectionTitle {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
  color: var(--black);
}

/* About */
.about {
  position: relative;
  text-align: center;
  background-color: transparent;
  border-bottom: none;
  padding-bottom: 0;
}

.aboutContainer {
  position: relative;
  z-index: 1;
}

.aboutGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  align-items: center;
}

@media (min-width: 768px) {
  .aboutGrid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
}

.aboutCard {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 6px 6px 0px var(--black);
  animation: float 4s ease-in-out infinite;
}

.aboutDesc { animation-delay: 0s; }
.aboutList { animation-delay: 1s; }

.aboutImage {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: end;
}

.aboutImage img {
  width: 100%;
  max-width: 400px;
  object-fit: contain;
}

.aboutDesc h3, .aboutList h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--black);
}

.aboutDesc p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: #333;
}

.aboutList ul {
  list-style-type: none;
  padding: 0;
}

.aboutList li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
}

.aboutList li::before {
  content: '👉';
  position: absolute;
  left: 0;
  top: 0px;
}

/* Programs */
.programs {
  background-color: var(--white);
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.cardsWrapper {
  display: flex;
  gap: 10px;
  align-items: stretch;
  max-width: 900px;
  width: 100%;
  height: 340px;
  margin: 0 auto;
}

.cardExpandable {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 3px solid var(--black);
  box-shadow: 5px 5px 0px var(--black);
  cursor: pointer;
  flex: 1;
  min-width: 72px;
  background: var(--white);
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease, transform 0.2s ease, background 0.4s ease;
}

.cardsWrapper:hover .cardExpandable { flex: 0.55; }
.cardsWrapper .cardExpandable:hover { flex: 3.2 !important; box-shadow: 8px 8px 0px var(--black); transform: translate(-2px, -2px); z-index: 2; }

.card1:hover { background: #4ca3fc; }
.card2:hover { background: #de68be; }
.card3:hover { background: #fe4260; }
.card4:hover { background: #3052c4; }
.card5:hover { background: #49bf82; }

.cardPhoto {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 92%;
  width: auto;
  pointer-events: none;
  z-index: 1;
}

.cardContent {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  padding: 20px 18px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cardName {
  font-size: 1rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1.3;
  background: var(--white);
  border: 2.5px solid var(--black);
  box-shadow: 3px 3px 0 var(--black);
  padding: 6px 10px;
  border-radius: 6px;
  display: inline-block;
  max-width: 210px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.cardExpandable:hover .cardName { opacity: 1; transform: translateY(0); }

.cardAbbr {
  position: absolute;
  top: 18px;
  left: 0; right: 0;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: 0.04em;
  pointer-events: none;
  z-index: 4;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cardAbbr span {
  background: var(--white);
  border: 2.5px solid var(--black);
  box-shadow: 2px 2px 0 var(--black);
  padding: 3px 9px;
  border-radius: 5px;
}

.cardExpandable:hover .cardAbbr { opacity: 0; }

.cardBar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 7px;
  background: var(--black);
  z-index: 5;
}

/* Footer */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 60px 40px;
  text-align: center;
}

.footerTitle {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 20px;
}

.socialLinks {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.socialLink {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  padding: 10px 20px;
  border: 2px solid var(--white);
  border-radius: var(--radius-pill);
  transition: all 0.2s;
}

.socialLink:hover {
  background-color: var(--white);
  color: var(--black);
}

/* Floating Action Button */
.fab {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  padding: 20px 40px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--black);
  box-shadow: 6px 6px 0 var(--black);
  cursor: pointer;
  z-index: 1000;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.fab:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 var(--black);
}

.btnSecondary {
  background: var(--white);
  color: var(--black);
  border: 2.5px solid var(--black);
  border-radius: 50px;
  padding: 13px 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--black);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btnSecondary:hover { 
  background: var(--yellow); 
  transform: translate(-2px,-2px); 
  box-shadow: 5px 5px 0 var(--black); 
  color: var(--black); 
}

/* Dialog Styles */
.zoom-dialog {
  margin: auto;
  padding: 0;
  border: none;
  background: transparent;
}

.zoom-dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.zoom-dialog-content {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 8px 8px 0px var(--black);
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: center;
  max-width: 400px;
  width: 90vw;
}

.zoom-dialog-content h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
}

.zoom-dialog-content p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 20px 40px;
    gap: 60px;
    text-align: center;
  }
  .heroLeft {
    align-items: center;
  }
  .heroRight {
    height: 400px;
    transform: scale(0.8);
  }
  .heroBgBlob {
    width: 300px; height: 300px;
    top: 0; right: 0;
  }
  .navbar {
    flex-direction: column;
    padding: 15px;
    gap: 15px;
    top: 10px;
  }
  .navBadge {
    display: none;
  }
  .navLinks {
    flex-wrap: wrap;
    justify-content: center;
  }
  .lineLg {
    font-size: 3rem;
  }
  
  .section { padding: 40px 20px; }

  .cardsWrapper {
    flex-direction: column;
    height: 600px;
  }
  .cardExpandable {
    min-height: 60px;
    min-width: 100%;
  }

  .socialLinks {
    flex-wrap: wrap;
  }

  .fab {
    bottom: 20px;
    right: 20px;
    padding: 15px 30px;
    font-size: 16px;
  }
}
