/* ============================================================
   IYNA October Chapter — Redesigned Style
   Calm, professional, neuroscience-inspired dark theme
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&display=swap");

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

:root {
  --black: #080c12;
  --blackk: #0e1420;
  --surface: #111926;
  --surface2: #162030;
  --white: #f0ede8;
  --muted: #8a9bb0;
  --dark: #1a2333;
  --light: #e8e4dc;
  --accent: #7b8cde;
  --accent2: #a78bde;
  --accent-dim: rgba(123,140,222,0.12);
  --accent-glow: rgba(123,140,222,0.25);
  --border: rgba(123,140,222,0.15);
  --border-hover: rgba(123,140,222,0.35);
  --text-body: #c8d0dc;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.7;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent2); }

::selection { background: rgba(123,140,222,0.3); color: var(--white); }

/* ── HERO / BANNER ─────────────────────────────────────────── */

.banner {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

/* Deep overlay for all banners */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,12,18,0.55) 0%,
    rgba(8,12,18,0.45) 40%,
    rgba(8,12,18,0.75) 80%,
    rgba(8,12,18,1) 100%
  );
  z-index: 1;
}

/* Subtle neural-net pattern overlay */
.overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(123,140,222,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* ── HEADER ─────────────────────────────────────────────────── */

header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  z-index: 900;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

header.bgc {
  background: rgba(8,12,18,0.88);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

header .logo {
  width: 130px;
  transition: opacity var(--transition);
}
header .logo:hover { opacity: 0.85; }

#logo_F { display: block; }
#LOGO9 { display: none; }

header nav ul {
  display: flex;
  list-style: none;
  gap: 6px;
}

header nav ul li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(240,237,232,0.75);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all var(--transition);
  position: relative;
}

header nav ul li a i {
  font-size: 14px;
  color: inherit;
  opacity: 0.7;
}

header nav ul li a:hover,
header nav ul li a.active {
  color: var(--white);
  background: var(--accent-dim);
  border-color: var(--border);
}

header nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--white);
  z-index: 10;
}

/* Logos section on index */
.logos { display: flex; align-items: center; gap: 10px; }

/* ── HERO CONTENT ───────────────────────────────────────────── */

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: fadeUp 1s ease both;
  animation-delay: 0.2s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.content h1.ho {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  text-transform: none;
}

.content h1.ho span {
  font-style: italic;
  color: var(--accent);
}

/* Short hero (inner pages) */
.content.iss h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  text-transform: none;
  letter-spacing: -0.01em;
}

.content .issues {
  margin-top: 28px;
}

.content .issues img {
  width: 130px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}

.content .issues img:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(123,140,222,0.25);
}

/* Hero CTA button */
.btns {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.btnn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 32px;
  background: transparent;
  border: 1px solid var(--border-hover);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  overflow: hidden;
  position: relative;
}

.btnn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-dim);
  opacity: 0;
  transition: opacity var(--transition);
}

.btnn:hover::before { opacity: 1; }
.btnn:hover { border-color: var(--accent); box-shadow: 0 0 24px var(--accent-glow); }

.btnn strong {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--white);
  text-shadow: none;
  z-index: 1;
  position: relative;
}

/* Remove old star containers */
#container-stars, #glow, #stars, .circle { display: none; }

/* ── ABOUT SECTION ──────────────────────────────────────────── */

.coon {
  width: min(1100px, 92%);
  margin: 80px auto 0;
}

.bii {
  text-align: center;
  padding: 80px 60px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.7s ease both;
}

.bii::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.bii h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
}

.bii p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

.smaa {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ccc {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 40px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: border-color var(--transition), box-shadow var(--transition);
  animation: fadeUp 0.7s ease both;
}

.ccc:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.ccc img {
  width: 200px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.ccc h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.ccc hr {
  width: 36px;
  border: none;
  border-top: 2px solid var(--accent);
  margin-bottom: 14px;
}

.ccc p, .ccc span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.coon span { color: var(--accent); }

/* ── TEAM ───────────────────────────────────────────────────── */

.team-co {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 24px;
  gap: 32px;
}

.switch {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.caa {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  text-align: center;
  width: 280px;
  cursor: pointer;
  transition: all var(--transition);
  outline: none;
  color: var(--white);
}

.caa i { font-size: 40px; color: var(--accent); margin-bottom: 12px; display: block; }
.caa h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; color: var(--white); margin-bottom: 6px; }
.caa p  { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

.caa.tee {
  transform: scale(1.06);
  border-color: var(--accent);
  background: var(--accent-dim);
}

.caa.add { opacity: 0.55; }

.caa:hover { border-color: var(--border-hover); opacity: 1; transform: scale(1.03); }

.wrapper.exec, .wrapper.advis {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: min(1000px, 92%);
}

.wrapper h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  margin-bottom: 8px;
}

.wrapper hr {
  width: 48px;
  border: none;
  border-top: 2px solid var(--accent);
  margin: 0 auto 32px;
}

.members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.team-mem {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  width: 200px;
  text-align: center;
  transition: all var(--transition);
}

.team-mem:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.members img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.members h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.members p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.social-links { display: flex; justify-content: center; gap: 8px; }

.social-links a {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--transition);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  text-decoration: none;
}

.social-links a:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.social-links a i { color: inherit; }

/* Fix old specific classes */
.social-links .fac, .social-links .instag, .social-links .whats { background: transparent; }
.social-links .fac i, .social-links .instag i, .social-links .whats i { margin: 0; }

/* ── ISSUES ─────────────────────────────────────────────────── */

.season {
  padding: 60px 24px;
  text-align: center;
}

.season h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 40px;
}

.season .imags {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.season .imags img {
  border-radius: var(--radius);
  width: 220px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.season .imags img:hover {
  border-color: var(--accent);
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(123,140,222,0.2);
}

/* ── COURSES ────────────────────────────────────────────────── */

.courses_sec2 {
  padding: 60px 24px;
}

.courses_sec2 h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--white);
  text-align: center;
  margin-bottom: 40px;
}

.courses {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto;
}

.course-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 380px;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

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

.course-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.course-card .cont {
  padding: 24px 24px 0;
}

.course-card h3 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.course-card h3 i { color: inherit; margin-right: 6px; }

.course-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
  text-align: left;
}

.course-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.course-card hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 24px 24px;
}

/* ── PUBLISH ────────────────────────────────────────────────── */

.giude {
  padding: 80px min(80px, 6vw);
  max-width: 1000px;
  margin: 0 auto;
}

.giude h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--accent);
  margin-top: 48px;
  margin-bottom: 16px;
}

.giude span { color: var(--accent); }

.giude p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 12px;
}

.giude .word {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 24px;
  background: var(--accent-dim);
  border: 1px solid var(--border-hover);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
}

.giude .word:hover {
  background: rgba(123,140,222,0.22);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.mail a { color: var(--accent); text-decoration: none; }

.publish_form {
  width: min(680px, 92%);
  margin: 0 auto 80px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}

#publish_box > h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 32px;
}

#publish_form { display: flex; flex-direction: column; gap: 20px; }

#publish_form .input {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 10px 0;
  transition: border-color var(--transition);
  outline: none;
}

#publish_form .input::placeholder { color: rgba(138,155,176,0.6); }
#publish_form .input:focus { border-bottom-color: var(--accent); }
input:-webkit-autofill { -webkit-text-fill-color: var(--white); }

.publish_commands { display: flex; gap: 16px; align-items: center; }

#publish_form #publish_submit,
#publish_form label {
  padding: 10px 28px;
  background: var(--accent-dim);
  border: 1px solid var(--border-hover);
  border-radius: 8px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  height: auto;
  width: auto;
}

#publish_form #publish_submit:hover,
#publish_form label:hover {
  background: rgba(123,140,222,0.22);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.file-upload { display: flex; }
.file-upload__input { display: none; }

/* ── CONTACT ────────────────────────────────────────────────── */

.sec {
  display: flex;
  justify-content: center;
  padding: 60px 24px;
}

.sec .wrapper {
  width: min(700px, 100%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.sec .wrapper h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 28px;
  text-align: left;
}

.sec .wrapper form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.wrapper input[type="text"],
.wrapper input[type="email"],
.wrapper textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 10px 0;
  outline: none;
  transition: border-color var(--transition);
  margin: 0;
  width: 100%;
}

.wrapper input:focus,
.wrapper textarea:focus { border-bottom-color: var(--accent); }
.wrapper textarea { resize: vertical; min-height: 80px; }
::placeholder { color: rgba(138,155,176,0.6); }

/* Contact submit button */
.sec button.shadow { display: none; }
.sec button.edge  { display: none; }

.sec button {
  align-self: flex-start;
  padding: 12px 32px;
  background: var(--accent-dim);
  border: 1px solid var(--border-hover);
  border-radius: 8px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.sec button .front {
  display: block;
  position: static;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
  color: var(--white);
  background: none;
  transform: none;
  transition: none;
  will-change: unset;
}

.sec button:hover {
  filter: none;
  background: rgba(123,140,222,0.22);
  box-shadow: 0 4px 20px var(--accent-glow);
}

/* ── FOOTER ─────────────────────────────────────────────────── */

.footer-distributed {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 80px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-distributed .footer-left  { width: 38%; }
.footer-distributed .footer-center { width: 30%; }
.footer-distributed .footer-right  { width: 26%; }

.footer-distributed h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-distributed h3 span { color: var(--accent); font-style: italic; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.87rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-links .link-1::before { display: none; }
.footer-links a:before {
  content: '·';
  margin: 0 10px;
  color: var(--border-hover);
}

.footer-company-name {
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.65;
}

.footer-center div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-center i {
  color: var(--accent);
  font-size: 18px;
  width: auto; height: auto;
  line-height: 1.7;
  margin: 0;
  flex-shrink: 0;
}

.footer-center p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
  display: inline;
}

.footer-center p span { color: var(--white); display: inline; }
.footer-center p a { color: var(--accent); text-decoration: none; }

.footer-company-about {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-company-about span {
  display: block;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-icons a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 16px;
  text-decoration: none;
  transition: all var(--transition);
}

.footer-icons a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.footer-icons a i { color: inherit !important; }

/* ── SCROLL PROGRESS ────────────────────────────────────────── */

#progress {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: none;
  place-items: center;
  cursor: pointer;
  z-index: 1000;
  background: conic-gradient(var(--accent) 0%, var(--surface) 0%);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: transform var(--transition);
}

#progress:hover { transform: scale(1.1); }

#progress-value {
  display: grid;
  place-items: center;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 50%;
  background: var(--surface);
  font-size: 18px;
  color: var(--white);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .smaa { grid-template-columns: 1fr; }
  .ccc { flex-direction: column; }
  .ccc img { width: 100%; max-height: 200px; }
}

@media (max-width: 880px) {
  header { padding: 0 24px; }

  .hamburger {
    display: block;
  }

  header nav ul {
    position: fixed;
    top: 68px; left: 0;
    width: 100%; height: auto;
    flex-direction: column;
    background: rgba(8,12,18,0.97);
    backdrop-filter: blur(16px);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    left: -100%;
    transition: left var(--transition);
  }

  header #nav_check:checked ~ nav ul { left: 0; }
  header nav ul li a { font-size: 0.92rem; padding: 10px 16px; }

  .footer-distributed {
    flex-direction: column;
    padding: 40px 32px;
  }

  .footer-distributed .footer-left,
  .footer-distributed .footer-center,
  .footer-distributed .footer-right { width: 100%; text-align: center; }

  .footer-links { justify-content: center; }
  .footer-center div { justify-content: center; }
  .footer-icons { justify-content: center; }

  .bii { padding: 48px 24px; }
  .publish_form { padding: 32px 24px; }
  .sec .wrapper { padding: 32px 24px; }
  .giude { padding: 48px 24px; }
}

@media (max-width: 640px) {
  header .logo { width: 100px; }
  .course-card { width: 100%; max-width: 420px; }
  .courses { gap: 20px; }
  .team-mem { width: 160px; }
  .caa { width: 100%; }
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */

@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.ccc, .course-card, .team-mem, .wrapper.exec, .wrapper.advis {
  animation: fadeUp 0.6s ease both;
}

.ccc:nth-child(2)     { animation-delay: 0.1s; }
.course-card:nth-child(2) { animation-delay: 0.12s; }

/* ── EVENTS BAR (if ever shown) ─────────────────────────────── */
.events { display: none; }

/* ── ELFSIGHT embed area ──────────────────────────────────────*/
.elfsight-app-ba7ed6a5-4ce0-4673-a7e0-70a06c7e8c1d {
  margin: 20px auto;
  max-width: 1100px;
}

/* ── HERO SHORT for non-video pages ─────────────────────────── */
.banner.short-hero { min-height: 40vh; }