/* =========================================
   IMPORT POLICES
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400&display=swap');

/* =========================================
   BASE
========================================= */

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: white;
  color: #222;
}

/* =========================================
   HEADER GLOBAL
========================================= */

.site-header {
  height: 70px;
  background: rgba(212,197,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1000;
}

.site-title {
  font-size: 1.2rem;
  margin: 0;
  color: #001f3d;
}

/* MENU DESKTOP */

.main-menu {
  position: absolute;
  right: 60px;
  display: flex;
  gap: 25px;
}

.main-menu a {
  text-decoration: none;
  color: #001f3d;
  font-weight: 600;
}

/* HAMBURGER */

.hamburger {
  display: none;
  position: absolute;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #001f3d;
}

/* =========================================
   HERO ACCUEIL
========================================= */

.hero {
  height: calc(100dvh - 70px);
  background: url("../images/hero.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bloc blanc derrière logo */

.hero-content {
  background: white;
  padding: 2.5rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LOGO ROND */

.hero-logo {
  width: 800px;
  max-width: 90%;
  height: auto;
  display: block;
}

/* =========================================
   PAGES ITEM TYPO
========================================= */

.item-container {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 2rem;
  color: #001f3d;
}

.item-title {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  text-transform: uppercase;
  color: #e94b3c;
}

.item-paragraph {
  font-family: 'Lora', serif;
  line-height: 1.6;
}

/* =========================================
   PASTILLES PROGRAMMATION
========================================= */

.pastille {
  position: absolute;
  width: 3.5%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  z-index: 10;
}
   .pastille {
  position: absolute;
  width: 3.5%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  z-index: 10;
}

.pastille::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  animation: ringPulse 2.2s infinite;
}

@keyframes ringPulse {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
/* =========================================
   FOOTER
========================================= */

.footer-home {
  text-align: center;
  padding: 1.5rem;
  background: #e94b3c;
  color: white;
  font-size: 0.9rem;
}

.footer-programmation {
  background-color: #e94b3c;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

  .main-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: rgba(212,197,255,0.98);
    padding: 1rem 0;
    text-align: center;
  }

  .main-menu.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .hero-logo {
    width: 520px;
  }


}
