@import url("./shared/cse-theme.css");

:root {
  --white: #ffffff;
  --black: var(--cse-text);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--cse-text);
  background: var(--cse-surface-alt);
  overflow-x: hidden;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.ticker {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 50px;
  width: 100%;
}

.ticker-label {
  background: var(--cse-ticker-dark);
  color: var(--cse-ticker-on-dark);
  font: 700 1.1rem "Plus Jakarta Sans", sans-serif;
  padding: 0 1rem;
  height: 100%;
  display: grid;
  place-items: center;
}

.ticker-track {
  background: var(--cse-ticker-accent);
  color: var(--cse-ticker-on-accent);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: .55rem;
  padding-inline: .75rem;
  font-weight: 700;
  min-width: 0;
  height: 50px;
  border-bottom: 1px solid var(--cse-border-strong);
}

.ticker-prefix {
  background: var(--cse-ticker-dark);
  color: var(--cse-ticker-on-dark);
  border-radius: 5px;
  padding: .2rem .45rem;
  font: 700 .8rem "Roboto", "Plus Jakarta Sans", sans-serif;
  flex: 0 0 auto;
}

.ticker-message {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 50px;
  font: 700 .95rem "Roboto", "Plus Jakarta Sans", sans-serif;
  min-width: 0;
  flex: 1 1 auto;
  color: var(--cse-ticker-on-accent);
}

.ticker-nav {
  height: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cse-ticker-dark);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.ticker-nav button {
  width: 34px;
  border: 0;
  background: transparent;
  color: #eee;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.ticker-nav button + button {
  border-left: 1px solid rgba(255, 255, 255, .35);
}

.ticker-nav button:hover {
  color: var(--cse-ticker-on-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--cse-gradient-header);
  box-shadow: var(--cse-shadow);
}

.header-top {
  display: none;
}

.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .45rem 0;
  color: #fff;
  font-size: .85rem;
}

.top-socials {
  display: flex;
  gap: .45rem;
}

.top-socials a {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
  text-decoration: none;
  font-size: .72rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 74px;
  padding: .35rem 0;
}

.logo img {
  width: auto;
  height: clamp(38px, 4.4vw, 54px);
  max-width: 100%;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}

.main-nav {
  margin-left: auto;
  margin-right: 1rem;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: .2rem;
}

.menu > li {
  position: relative;
}

.menu > li > a {
  text-decoration: none;
  color: #fff;
  font: 700 .88rem "Plus Jakarta Sans", sans-serif;
  padding: .55rem .4rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

.menu > li.has-submenu > a::after {
  content: "▾";
  font-size: .68rem;
  line-height: 1;
  opacity: .9;
  transform: translateY(1px);
}

.menu > li > a:hover {
  color: var(--orange);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: 0 0 7px 7px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
  list-style: none;
  margin: 0;
  padding: .25rem 0;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: all .2s ease;
  z-index: 35;
}

.submenu li a {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .65rem .75rem;
  color: #111;
  text-decoration: none;
  font: 500 .9rem "Plus Jakarta Sans", sans-serif;
}

.submenu li + li a {
  border-top: 1px dotted var(--cse-border);
}

.submenu li a:hover {
  background: var(--cse-green-600);
  color: var(--cse-text-inverse);
}

.submenu img,
.menu > li > a img {
  width: 18px;
  height: 12px;
}

.menu > li:hover > .submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 8px;
  padding: .5rem .86rem;
  font: 600 .82rem "Plus Jakarta Sans", sans-serif;
}

.btn-orange { background: var(--cse-green-400); color: var(--cse-text-inverse); }
.btn-green { background: var(--cse-green-600); color: var(--cse-text-inverse); }
.btn-outline { border: 1px solid #fff; color: #fff; background: transparent; }
.btn-solid-light { background: var(--cse-green-600); color: var(--cse-text-inverse); border: 1px solid var(--cse-green-600); }
.btn-outline-green { border: 1px solid var(--cse-green-600); color: var(--cse-green-700); background: var(--cse-surface); }

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 500ms ease;
}

.hero-slide.active {
  opacity: 1;
  animation: heroZoomOut 5000ms linear both;
}

@keyframes heroZoomOut {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    var(--cse-gradient-hero),
    url("https://www.collegejeantabi.org/wp-content/uploads/2025/08/overlay2.png") center/cover no-repeat;
}

.hero-content {
  position: relative;
  color: #fff;
  padding: 9rem 0 8rem;
  max-width: 800px;
}

.hero h1 {
  margin: 0 0 1rem;
  font: 800 clamp(1.8rem, 4.5vw, 3rem) "Plus Jakarta Sans", sans-serif;
  line-height: 1.1;
}

.hero p {
  margin: 0 0 1.4rem;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

.hero-content .anim-item {
  opacity: 0;
  transform: translateY(20px);
}

.hero-content.animate .anim-item {
  animation: heroTextIn 700ms ease forwards;
}

.hero-content.animate .anim-item:nth-child(2) {
  animation-delay: 200ms;
}

.hero-content.animate .anim-item:nth-child(3) {
  animation-delay: 300ms;
}

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

.quick-features {
  background: var(--cse-gradient-band);
  color: var(--cse-text-inverse);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid article {
  padding: 2rem;
  border-right: 1px solid rgba(255, 255, 255, .25);
}

.feature-grid article:last-child {
  border-right: none;
}

.about-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.4rem;
  padding-block: 3rem;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.info-card {
  min-height: 235px;
  border-radius: 12px;
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .8rem;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 46, 28, 0.48);
  transition: background .35s ease;
}

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

.info-card p {
  margin: .2rem 0 .8rem;
  color: rgba(255, 255, 255, .95);
  font-size: .95rem;
}

.info-card h3 {
  margin: 0 0 .55rem;
  font: 700 clamp(1.55rem, 1.8vw, 2rem) "Plus Jakarta Sans", sans-serif;
  line-height: 1.1;
}

.info-card:hover {
  transform: translateY(-6px);
}

.fx-gray {
  filter: grayscale(1);
  transition: filter .45s ease, transform .35s ease;
}

.fx-gray:hover {
  filter: grayscale(0);
}

.info-card:hover::before {
  background: rgba(0, 15, 29, .25);
}

.about-panel {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 1.4rem 1.8rem;
  overflow: hidden;
  min-width: 0;
}

.about-panel::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -60px;
  width: 480px;
  height: 480px;
  background-image: radial-gradient(circle, rgba(45, 84, 176, .17) 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: .55;
  pointer-events: none;
}

.about-panel h2,
.about-panel p,
.about-actions {
  position: relative;
  z-index: 1;
}

.about-panel h2 {
  margin: .2rem 0 1rem;
  font: 800 clamp(2rem, 2.9vw, 2.8rem) "Plus Jakarta Sans", sans-serif;
  color: var(--cse-text);
}

.about-panel p {
  margin: 0 0 1rem;
  font-size: 1.03rem;
  line-height: 1.45;
  color: var(--cse-text-secondary);
  word-break: break-word;
}

.about-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: .8rem;
}

.stats {
  background: linear-gradient(135deg, var(--cse-green-800), var(--cse-green-600));
  color: var(--cse-text-inverse);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stats-grid div {
  padding: 2rem;
  text-align: center;
}

.stats-grid strong {
  display: block;
  font: 800 2rem "Plus Jakarta Sans", sans-serif;
}

.stats-grid span {
  font: 500 .95rem "DM Sans", sans-serif;
}

.news {
  padding-block: 3.2rem;
}

.section-head h2 {
  font: 800 2rem "Plus Jakarta Sans", sans-serif;
  margin: 0 0 1.5rem;
}

.section-head.center {
  text-align: center;
}

.section-head.center p {
  margin: 0 auto 1.2rem;
  max-width: 900px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.news-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--cse-shadow);
  background: var(--cse-surface);
  border: 1px solid var(--cse-border);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .12);
}

.news-card:hover img {
  transform: scale(1.05);
}

.news-body {
  padding: 1rem;
}

.news-body h3 {
  margin: 0 0 .7rem;
  font: 700 1.1rem "Plus Jakarta Sans", sans-serif;
}

.news-body a {
  color: var(--cse-green-700);
  text-decoration: none;
  font-weight: 700;
}

.tag-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--cse-green-600);
  color: var(--cse-text-inverse);
  padding: .25rem .6rem;
  border-radius: 999px;
  font: 700 .68rem "Plus Jakarta Sans", sans-serif;
}

.projects-band {
  background: var(--cse-surface-muted);
  padding: 3rem 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.projects-copy h2 {
  margin: 0 0 .8rem;
  font: 800 2rem "Plus Jakarta Sans", sans-serif;
}

.projects-copy p {
  margin: 0 0 1rem;
  line-height: 1.5;
}

.project-card {
  background: var(--cse-surface);
  border-radius: 12px;
  padding: 1.4rem;
  box-shadow: var(--cse-shadow);
  border: 1px solid var(--cse-border);
  text-align: center;
  transition: transform .25s ease;
}

.project-card:hover {
  transform: translateY(-4px);
}

.project-card h3 {
  color: var(--cse-green-700);
  margin: 0 0 .5rem;
}

.life-section {
  padding-block: 3rem;
}

.success-band {
  background: var(--cse-gradient-footer);
  color: var(--cse-text-inverse);
  padding: 2.5rem 0;
}

.success-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  align-items: center;
}

.video-wrap video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .3);
  display: block;
}

.success-copy h2 {
  margin: 0 0 .8rem;
  font: 800 clamp(1.8rem, 3.4vw, 3rem) "Plus Jakarta Sans", sans-serif;
}

.org-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 450px;
}

.org-left {
  background: var(--cse-green-900);
  color: var(--cse-text-inverse);
  padding: 4rem min(9vw, 5rem);
  position: relative;
}

.org-dots {
  position: absolute;
  right: 20%;
  top: 40px;
  width: 220px;
  height: 220px;
  background-image: radial-gradient(circle, rgba(79, 193, 137, .27) 2px, transparent 2px);
  background-size: 11px 11px;
}

.org-left h2 {
  position: relative;
  margin: 0 0 .9rem;
  max-width: 520px;
}

.org-left p {
  position: relative;
  max-width: 620px;
  margin: 0 0 1rem;
}

.org-right {
  background: linear-gradient(rgba(20, 82, 51, 0.22), rgba(20, 82, 51, 0.22)),
    url("https://www.collegejeantabi.org/wp-content/uploads/2025/08/18fc6e455ad0b8468851e91685cc5306-580x350-2.jpg") center/cover no-repeat;
}

.site-footer {
  background: var(--cse-gradient-footer);
  color: var(--cse-text-inverse);
  margin-top: 0;
  padding-top: 1.3rem;
}

.gallery {
  padding-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 10px;
  transition: transform .35s ease, filter .35s ease;
  filter: saturate(0.92);
}

.gallery-grid img:hover {
  transform: scale(1.03);
  filter: saturate(1.1);
}

.cta.enroll {
  position: relative;
  min-height: 340px;
  display: grid;
  align-items: center;
  /* Image de fond pilotée par l’admin (inline sur accueil-repro.php) */
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 46, 28, 0.62), rgba(20, 82, 51, 0.68)),
    url("https://www.collegejeantabi.org/wp-content/uploads/2025/08/overlay2.png") center/cover no-repeat;
}

.cta-content {
  position: relative;
  color: #fff;
  max-width: 760px;
  text-align: left;
  padding: 2rem 0;
}

.cta-content h2 {
  font: 800 clamp(1.6rem, 4vw, 2.4rem) "Plus Jakarta Sans", sans-serif;
  margin: 0 0 .9rem;
}

.cta-content p {
  margin: 0 0 1.2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0 2rem;
}

.footer-logo {
  width: auto;
  max-width: 100%;
  height: clamp(56px, 8vw, 92px);
  object-fit: contain;
  display: block;
}

.site-footer h4 {
  margin: .2rem 0 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: .6rem;
  color: #f3f3f3;
}

.site-footer a {
  color: #f3f3f3;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .3);
  padding: .9rem 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  opacity: .9;
}

.newsletter-card {
  background: #fff;
  border-radius: 10px;
  margin-top: -80px;
  margin-bottom: 1.3rem;
  padding: 1.3rem 1.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.2rem;
  align-items: center;
  box-shadow: 0 14px 26px rgba(0, 0, 0, .18);
}

.newsletter-card p {
  margin: 0;
  color: #242424;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
}

.newsletter-form input,
.newsletter-form button {
  border: 1px solid #8f8f8f;
  border-radius: 8px;
  padding: .62rem .7rem;
  font: 500 .9rem "Inter", sans-serif;
  width: 100%;
  min-width: 0;
}

.newsletter-form button {
  grid-column: 1 / -1;
  border-color: var(--cse-green-600);
  background: var(--cse-green-600);
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.4rem;
}

@media (max-width: 1200px) {
  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }

  .projects-copy {
    grid-column: 1 / -1;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-cards {
    order: 2;
  }

  .about-panel {
    order: 1;
  }

  .success-grid {
    grid-template-columns: 1fr;
  }

  .org-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .org-right {
    min-height: 320px;
  }
}

@media (max-width: 980px) {
  .header-top {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    background: var(--cse-green-600);
    padding: .6rem 1rem 1rem;
    margin: 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .main-nav.open {
    display: flex;
  }

  .menu {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
  }

  .menu > li > a {
    width: 100%;
    justify-content: space-between;
    padding: .85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }

  .submenu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    min-width: 100%;
    max-height: 0;
    overflow: hidden;
    background: #ffffffeb;
    box-shadow: none;
    border-radius: 6px;
    margin-top: .35rem;
    transition: max-height .25s ease;
  }

  .menu > li.open > .submenu {
    max-height: 520px;
  }

  .menu > li.has-submenu > a::after {
    transition: transform .2s ease;
  }

  .menu > li.open > a::after {
    transform: rotate(180deg);
  }

  .menu-toggle {
    display: block;
  }

  .desktop-only {
    display: none;
  }

  .feature-grid,
  .about-section,
  .about-cards,
  .projects-grid,
  .success-grid,
  .org-split,
  .stats-grid,
  .news-grid,
  .footer-grid,
  .gallery-grid,
  .newsletter-card,
  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .about-panel {
    padding: 1.2rem;
  }

  .newsletter-card {
    margin-top: -35px;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    padding: 6.2rem 0 5rem;
  }

  .cta-content {
    max-width: 100%;
  }

  .ticker {
    grid-template-columns: auto 1fr auto;
    height: 46px;
  }

  .ticker-label,
  .ticker-track,
  .ticker-nav {
    height: 46px;
  }

  .ticker-label {
    font-size: 1rem;
    padding: 0 .7rem;
  }

  .ticker-message {
    line-height: 46px;
    font-size: .86rem;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(1200px, 95%);
  }

  .header-inner {
    gap: .55rem;
    min-height: 64px;
    padding: .3rem 0;
  }

  .logo img {
    width: auto;
    height: clamp(34px, 10vw, 46px);
  }

  .btn {
    padding: .5rem .7rem;
    font-size: .78rem;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-content {
    padding: 5rem 0 3.5rem;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .hero p {
    font-size: .95rem;
  }

  .hero-actions {
    gap: .5rem;
  }

  .feature-grid article,
  .stats-grid div {
    padding: 1.25rem 1rem;
  }

  .about-section {
    gap: 1rem;
    padding-block: 2rem;
  }

  .info-card {
    min-height: 200px;
    padding: 1rem;
  }

  .info-card h3 {
    font-size: clamp(1.15rem, 6vw, 1.45rem);
  }

  .info-card p {
    font-size: .86rem;
  }

  .about-panel {
    padding: 1rem;
  }

  .about-panel h2 {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .about-panel p {
    font-size: .93rem;
    line-height: 1.4;
  }

  .projects-band,
  .life-section,
  .news,
  .gallery {
    padding-block: 2rem;
  }

  .projects-copy h2,
  .section-head h2 {
    font-size: clamp(1.35rem, 7vw, 1.9rem);
  }

  .project-card {
    padding: 1rem;
  }

  .news-body {
    padding: .85rem;
  }

  .news-body h3 {
    font-size: 1rem;
  }

  .success-band {
    padding: 1.7rem 0;
  }

  .success-copy h2 {
    font-size: clamp(1.4rem, 8vw, 2rem);
  }

  .org-left {
    padding: 2rem 1rem;
  }

  .org-right {
    min-height: 230px;
  }

  .cta.enroll {
    min-height: 300px;
  }

  .cta-content {
    padding: 1.2rem 0;
  }

  .newsletter-card {
    margin-top: -20px;
    padding: 1rem;
    gap: .75rem;
  }

  .newsletter-card p {
    font-size: .92rem;
    line-height: 1.35;
  }

  .newsletter-form {
    gap: .45rem;
  }

  .footer-grid {
    gap: .9rem;
  }

  .footer-logo {
    width: auto;
    height: clamp(50px, 16vw, 78px);
  }

  .footer-bottom .container {
    justify-content: flex-start;
  }

  .ticker {
    height: 42px;
    grid-template-columns: auto 1fr;
  }

  .ticker-nav {
    display: none;
  }

  .ticker-label,
  .ticker-track {
    height: 42px;
  }

  .ticker-label {
    padding: 0 .55rem;
    font-size: .92rem;
  }

  .ticker-prefix {
    font-size: .72rem;
    padding: .18rem .35rem;
  }

  .ticker-message {
    line-height: 42px;
    font-size: .8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide.active,
  .hero-content .anim-item,
  .hero-content.animate .anim-item {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}


