/* ===================================================== */
/* RESET */
/* ===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===================================================== */
/* BASE */
/* ===================================================== */

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #e6e6e6;
  background: radial-gradient(
    ellipse at top,
    #1a2a3a 0%,
    #0b0f1a 60%,
    #05070d 100%
  );
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===================================================== */
/* HEADER */
/* ===================================================== */

.site-header {
  background: rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.8rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.branding {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo img {
  height: 60px;
}

.titre h1 {
  color: #ffa726;
  font-size: 2rem;
}

.titre p {
  color: #ffcc80;
  font-size: 1rem;
  margin-top: 4px;
}

/* ===================================================== */
/* MENU */
/* ===================================================== */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #ffa726;
  cursor: pointer;
}

.main-nav {
  overflow: visible;
}

.menu {
  list-style: none;
  display: flex;
  gap: 18px;
  align-items: center;
}

.menu li {
  position: relative;
}

.menu a {
  text-decoration: none;
  padding: 10px 18px;
  background: #121212;
  color: #eaeaea;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.menu a:hover {
  background: #2e2e2e;
  transform: translateY(-2px);
}

.menu .shop {
  background: #ffa726;
  color: #1b1b1b;
  font-weight: 600;
}

/* ===================================================== */
/* SOUS-MENU */
/* ===================================================== */

.has-submenu > span {
  cursor: default;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  padding: 12px 0;
  background: rgba(10, 15, 25, 0.97);
  border-radius: 10px;
  display: none;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  z-index: 999;
}

.has-submenu:hover .submenu {
  display: block;
}

.submenu a {
  display: block;
  padding: 10px 22px;
  font-size: 0.95rem;
  color: #ffd36a;
  background: transparent;
}

.submenu a:hover {
  background: rgba(255,255,255,0.08);
}

/* ===================================================== */
/* CONTENU GÉNÉRAL */
/* ===================================================== */

main {
  padding: 4rem 1.5rem;
}

/* ===================================================== */
/* FRAGMENTS D’INFINI — ISOLÉS */
/* ===================================================== */

.page-fragment main {
  display: flex;
  justify-content: center;
}

.page-fragment .fragment-wrapper {
  width: 100%;
}

.page-fragment .fragment-intro {
  max-width: 820px;
  margin: 80px auto;
  padding: 50px 60px;
  text-align: center;
  line-height: 1.9;
  background: rgba(15, 20, 35, 0.85);
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 30px 80px rgba(0,0,0,0.7);
}

.page-fragment .fragment-intro h1 {
  font-size: 2.4rem;
  margin-bottom: 35px;
}

.page-fragment .fragment-intro p {
  font-size: 1.1rem;
  color: #d8dbe6;
  margin-bottom: 22px;
}

.page-fragment .signature {
  margin-top: 40px;
  font-style: italic;
  color: #ffd36a;
}

/* ===================================================== */
/* FOOTER */
/* ===================================================== */

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #999;
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===================================================== */
/* MOBILE */
/* ===================================================== */

@media (max-width: 900px) {

  .menu-toggle {
    display: block;
  }

  .header-inner {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .branding {
    flex-direction: column;
  }

  .main-nav {
    display: none;
    width: 100%;
  }

  .main-nav.active {
    display: block;
  }

  .menu {
    flex-direction: column;
    gap: 14px;
  }

  .menu a {
    width: 100%;
    text-align: center;
  }

  .submenu {
    position: static;
    display: none;
    background: rgba(0,0,0,0.35);
    margin-top: 8px;
    box-shadow: none;
  }

  .has-submenu.active .submenu {
    display: block;
  }
}

/* Images générales */

.page-interne main img,
.page-fragment main img,
.page-galerie main img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2rem auto;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.page-galerie .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.page-galerie .gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* ===================================================== */
/* GALERIE */
/* ===================================================== */

.page-galerie .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 3rem auto;
}

.page-galerie .gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  transition: transform 0.3s ease;
}

.page-galerie .gallery-grid img:hover {
  transform: scale(1.03);
}

/* ===================================================== */
/* CONTENEURS DE PAGES */
/* ===================================================== */

/* INDEX – centrage du contenu */
.page-index main {
  max-width: 1400px;
  margin: 0 auto;
}

.page-interne main,
.page-galerie main,
.page-materiel main,
.page-fragment main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

/* ===================================================== */
/* IMAGES GÉNÉRALES (HORS GALERIE) */
/* ===================================================== */

.page-interne main img,
.page-fragment main img,
.page-materiel main img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2.5rem auto;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* ============================= */
/* GALERIE — VERSION SAINE */
/* ============================= */

.page-galerie main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

  max-width: 1200px;
  margin: 3rem auto;
}

.galerie-item {
  text-align: center;
}

.galerie-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  transition: transform 0.3s ease;
}

.galerie-item img:hover {
  transform: scale(1.03);
}

.galerie-item figcaption {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: #ccc;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .galerie-grid {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 500px) {
  .galerie-grid {
    grid-template-columns: 1fr;
  }

}
.galerie-grid {
  width: 100%;
  justify-items: stretch;
}
.texte-encadre {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem 2.5rem;

  background: rgba(255, 255, 255, 0.06);
  border-left: 4px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;

  backdrop-filter: blur(4px);

  color: #eaeaea;
  font-size: 1.05rem;
  line-height: 1.7;
}

.texte-encadre p {
  margin-bottom: 1.2rem;
}

.texte-encadre p:last-child {
  margin-bottom: 0;
}
.material-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.material-section h2 {
  margin-bottom: 30px;
}

/* GALERIE */
.material-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* IMAGES */
.material-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease;
}

.material-gallery img:hover {
  transform: scale(1.04);
}
@media (max-width: 900px) {
  .material-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .material-gallery {
    grid-template-columns: 1fr;
  }
}
/* === GALERIE : correction images trop grandes === */

.galerie-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
/* ===============================
   PAGE MATÉRIEL
================================ */

.materiel-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.materiel-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.materiel-intro h2 {
  margin-bottom: 15px;
}

/* ===============================
   GRILLE MATÉRIEL (3 PAR LIGNE)
================================ */

.materiel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARTE */
.materiel-item {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 15px;
  text-align: center;
}

/* IMAGE — ICI EST LA CLÉ */
.materiel-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* TEXTE */
.materiel-item figcaption {
  margin-top: 12px;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .materiel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .materiel-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   GRILLE MATÉRIEL
================================ */

.materiel-grid {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ===============================
   CARTES
================================ */

.materiel-item {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px;
  text-align: center;

  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.materiel-item:hover {
  transform: translateY(-6px);
}

/* ===============================
   IMAGES (IMPORTANT)
================================ */

.materiel-item img {
  width: 100%;
  height: auto;              /* ✅ clé principale */
  display: block;

  border-radius: 12px;
}

/* ===============================
   TEXTE
================================ */

.materiel-item figcaption {
  margin-top: 12px;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .materiel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .materiel-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================================== */
/* CARTE TEXTE UNIVERSELLE */
/* ===================================================== */

.content-card {
  max-width: 900px;
  margin: 4rem auto;
  padding: 3rem 3.5rem;

  background: rgba(15, 20, 35, 0.85);
  border-radius: 18px;

  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 30px 80px rgba(0,0,0,0.7);

  text-align: center;
  line-height: 1.9;
}

.content-card h2 {
  color: #ffa726;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.content-card p {
  color: #d8dbe6;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* IMAGE TÉLESCOPE — INDEX */
.page-index .image-section img {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;

}
.image-section {
  max-width: 700px;
  margin: 3rem auto;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  text-align: center;
}

/* ===== Ajustement images matériel ===== */

.materiel-item {
  overflow: hidden;            /* empêche les débordements */
}

.materiel-item img {
  width: 100%;
  height: 220px;               /* hauteur fixe uniforme */
  object-fit: cover;           /* remplit le cadre sans déformer */
  display: block;
}

/* ===============================
   DOCUMENTAIRES / VIDEOS
================================ */

.video-grid {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.video-item {
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.video-item iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
}

/* Responsive */

@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}
.fragments-navigation {
  max-width: 320px;
  margin: 4rem auto;

  padding: 1.5rem;
  background: rgba(15, 20, 35, 0.85);
  border-radius: 16px;

  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 20px 50px rgba(0,0,0,0.6);
}

.fragments-navigation h3 {
  color: #ffa726;
  margin-bottom: 1rem;
  text-align: center;
}

.fragments-navigation ul {
  list-style: none;
}

.fragments-navigation li {
  margin-bottom: 0.6rem;
}

.fragments-navigation a {
  text-decoration: none;
  color: #ffd36a;
  font-size: 0.9rem;
}

.fragments-navigation a:hover {
  color: #ffffff;
}
.fragments-nav {
  list-style: none;
  margin-top: 1.5rem;
}

.fragments-nav li {
  margin: 10px 0;
}

.fragments-nav a {
  text-decoration: none;
  color: #ffd36a;
  font-size: 1.05rem;
  transition: all 0.25s ease;
}

.fragments-nav a:hover {
  color: #ffa726;
  transform: translateX(6px);
}

.hero-banner{
    max-width:1200px;
    height:520px;
    margin:40px auto 80px auto;
    border-radius:24px;
    overflow:hidden;
    background-size:cover;
    background-position:center center;
    position:relative;
    box-shadow:0 0 80px rgba(0,0,0,0.45);
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(2,8,20,0.72));
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px;
}

.hero-overlay h2{
    color:#ffffff;
    font-size:54px;
    margin-bottom:20px;
    text-shadow:0 0 20px rgba(0,0,0,0.7);
}

.hero-overlay p{
    color:#d9e2f2;
    font-size:20px;
    margin-bottom:30px;
}

.hero-btn{
    display:inline-block;
    padding:16px 34px;
    background:#f7a51a;
    color:#111;
    text-decoration:none;
    border-radius:10px;
    font-weight:bold;
}

.hero-btn:hover{
    box-shadow:0 0 18px rgba(247,165,26,0.5);
}

.newsletter-galaxy{
    position:relative;
    max-width:900px;
    margin:100px auto;
    padding:40px;
    overflow:hidden;
}

.newsletter-premium-box{
    position:relative;
    z-index:2;
    background:rgba(4,10,25,0.93);
    border:1px solid rgba(247,165,26,0.18);
    border-radius:22px;
    padding:60px 45px;
    text-align:center;
    box-shadow:0 0 70px rgba(0,20,60,0.5), inset 0 0 25px rgba(247,165,26,0.03);
}

.newsletter-premium-box::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle, rgba(247,165,26,0.08), transparent 70%);
    top:-150px;
    left:50%;
    transform:translateX(-50%);
    z-index:-1;
    animation:pulseGlow 6s infinite alternate;
}

@keyframes pulseGlow{
    from{transform:translateX(-50%) scale(1);opacity:0.5;}
    to{transform:translateX(-50%) scale(1.2);opacity:1;}
}

.stars{
    position:absolute;
    inset:0;
    background-image:
      radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.5), transparent),
      radial-gradient(1px 1px at 140px 80px, rgba(255,255,255,0.4), transparent),
      radial-gradient(1.5px 1.5px at 300px 120px, rgba(255,255,255,0.4), transparent),
      radial-gradient(2px 2px at 500px 200px, rgba(255,255,255,0.35), transparent);
    animation:starMove 18s linear infinite;
    opacity:0.4;
}

@keyframes starMove{
    from{transform:translateY(0px);} 
    to{transform:translateY(20px);} 
}

.newsletter-premium-box h2{
    color:#f7a51a;
    font-size:38px;
    margin-bottom:20px;
}

.newsletter-premium-box p{
    color:#d7dcea;
    line-height:1.8;
    font-size:17px;
    margin-bottom:30px;
}

.newsletter-form-cosmos input[type="text"],
.newsletter-form-cosmos input[type="email"]{
    display:block;
    width:85%;
    max-width:480px;
    margin:12px auto;
    padding:15px;
    background:#08111f;
    border:1px solid #1b2d4d;
    color:white;
    border-radius:10px;
    font-size:15px;
}

.newsletter-form-cosmos button{
    margin-top:25px;
    padding:16px 36px;
    background:#f7a51a;
    color:#111;
    font-size:17px;
    font-weight:bold;
    border:none;
    border-radius:10px;
    cursor:pointer;
    transition:0.3s;
}

.newsletter-form-cosmos button:hover{
    transform:translateY(-2px);
    box-shadow:0 0 15px rgba(247,165,26,0.4);
}

.rgpd-check{
    display:block;
    margin-top:22px;
    color:#8fa0bf;
    font-size:13px;
    line-height:1.6;
}

.rgpd-check input[type="checkbox"]{
    margin-right:8px;
    transform:scale(1.1);
    vertical-align:middle;
}

.welcome-gift{
    margin-top:25px;
    color:#f7a51a;
    font-size:14px;
    letter-spacing:1px;
}

.fadein-newsletter{
    opacity:0;
    transform:translateY(40px);
    transition:all 1.2s ease;
}

.fadein-newsletter.visible{
    opacity:1;
    transform:translateY(0);
}

.trap-field{
    display:none !important;
    visibility:hidden !important;
    opacity:0 !important;
    position:absolute !important;
    left:-9999px !important;
    width:1px !important;
    height:1px !important;
    border:0 !important;
    padding:0 !important;
    margin:0 !important;
}

@media (max-width: 900px){
   .hero-banner{
    max-width:1200px;
    height:520px;
    margin:40px auto 80px auto;
    border-radius:24px;
    overflow:hidden;
    background-size:cover;
    background-position:center center;
    position:relative;
    box-shadow:0 0 80px rgba(0,0,0,0.45);
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(2,8,20,0.72));
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px;
}

.hero-overlay h2{
    color:#ffffff;
    font-size:54px;
    margin-bottom:20px;
    text-shadow:0 0 20px rgba(0,0,0,0.7);
}

.hero-overlay p{
    color:#d9e2f2;
    font-size:20px;
    margin-bottom:30px;
}

.hero-btn{
    display:inline-block;
    padding:16px 34px;
    background:#f7a51a;
    color:#111;
    text-decoration:none;
    border-radius:10px;
    font-weight:bold;
}

.hero-btn:hover{
    box-shadow:0 0 18px rgba(247,165,26,0.5);
}

.newsletter-galaxy{
    position:relative;
    max-width:900px;
    margin:100px auto;
    padding:40px;
    overflow:hidden;
}

.newsletter-premium-box{
    position:relative;
    z-index:2;
    background:rgba(4,10,25,0.93);
    border:1px solid rgba(247,165,26,0.18);
    border-radius:22px;
    padding:60px 45px;
    text-align:center;
    box-shadow:0 0 70px rgba(0,20,60,0.5), inset 0 0 25px rgba(247,165,26,0.03);
}

.newsletter-premium-box::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle, rgba(247,165,26,0.08), transparent 70%);
    top:-150px;
    left:50%;
    transform:translateX(-50%);
    z-index:-1;
    animation:pulseGlow 6s infinite alternate;
}

@keyframes pulseGlow{
    from{transform:translateX(-50%) scale(1);opacity:0.5;}
    to{transform:translateX(-50%) scale(1.2);opacity:1;}
}

.stars{
    position:absolute;
    inset:0;
    background-image:
      radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.5), transparent),
      radial-gradient(1px 1px at 140px 80px, rgba(255,255,255,0.4), transparent),
      radial-gradient(1.5px 1.5px at 300px 120px, rgba(255,255,255,0.4), transparent),
      radial-gradient(2px 2px at 500px 200px, rgba(255,255,255,0.35), transparent);
    animation:starMove 18s linear infinite;
    opacity:0.4;
}

@keyframes starMove{
    from{transform:translateY(0px);} 
    to{transform:translateY(20px);} 
}

.newsletter-premium-box h2{
    color:#f7a51a;
    font-size:38px;
    margin-bottom:20px;
}

.newsletter-premium-box p{
    color:#d7dcea;
    line-height:1.8;
    font-size:17px;
    margin-bottom:30px;
}

.newsletter-form-cosmos input[type="text"],
.newsletter-form-cosmos input[type="email"]{
    display:block;
    width:85%;
    max-width:480px;
    margin:12px auto;
    padding:15px;
    background:#08111f;
    border:1px solid #1b2d4d;
    color:white;
    border-radius:10px;
    font-size:15px;
}

.newsletter-form-cosmos button{
    margin-top:25px;
    padding:16px 36px;
    background:#f7a51a;
    color:#111;
    font-size:17px;
    font-weight:bold;
    border:none;
    border-radius:10px;
    cursor:pointer;
    transition:0.3s;
}

.newsletter-form-cosmos button:hover{
    transform:translateY(-2px);
    box-shadow:0 0 15px rgba(247,165,26,0.4);
}

.rgpd-check{
    display:block;
    margin-top:22px;
    color:#8fa0bf;
    font-size:13px;
    line-height:1.6;
}

.rgpd-check input[type="checkbox"]{
    margin-right:8px;
    transform:scale(1.1);
    vertical-align:middle;
}

.welcome-gift{
    margin-top:25px;
    color:#f7a51a;
    font-size:14px;
    letter-spacing:1px;
}

.fadein-newsletter{
    opacity:0;
    transform:translateY(40px);
    transition:all 1.2s ease;
}

.fadein-newsletter.visible{
    opacity:1;
    transform:translateY(0);
}

.trap-field{
    display:none !important;
    visibility:hidden !important;
    opacity:0 !important;
    position:absolute !important;
    left:-9999px !important;
    width:1px !important;
    height:1px !important;
    border:0 !important;
    padding:0 !important;
    margin:0 !important;
}

@media (max-width: 900px){
    .hero-banner{
        height:340px;
        margin:20px auto 50px auto;
        border-radius:18px;
    }

    .hero-overlay{
        padding:25px;
    }

    .hero-overlay h2{
        font-size:34px;
        line-height:1.2;
    }

    .hero-overlay p{
        font-size:16px;
        line-height:1.5;
        margin-bottom:22px;
    }

    .hero-btn{
        padding:14px 24px;
        font-size:15px;
    }

    .newsletter-galaxy{
        margin:40px auto;
        padding:15px;
    }

    .newsletter-premium-box{
        padding:35px 20px;
        border-radius:16px;
    }

    .newsletter-premium-box h2{
        font-size:28px;
        line-height:1.3;
    }

    .newsletter-premium-box p{
        font-size:15px;
    }

    .newsletter-form-cosmos input[type="text"],
    .newsletter-form-cosmos input[type="email"]{
        width:100%;
        max-width:100%;
        font-size:14px;
    }

    .newsletter-form-cosmos button{
        width:100%;
        padding:15px;
        font-size:16px;
    }

    .rgpd-check{
        font-size:12px;
        text-align:left;
    }

    .content-card{
        margin:2rem auto;
        padding:2rem 1.4rem;
    }

    .content-card h2{
        font-size:1.7rem;
    }

    .content-card p{
        font-size:0.97rem;
        line-height:1.8;
    }

    .header-inner{
        padding:1.2rem 1rem;
    }

    .titre h1{
        font-size:1.5rem;
    }
}

@media (max-width: 500px){
    .hero-banner{
        height:280px;
    }

    .hero-overlay h2{
        font-size:26px;
    }

    .hero-overlay p{
        font-size:14px;
    }

    .newsletter-premium-box h2{
        font-size:24px;
    }
}