/* ===================== */
/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');



/* ===================== */
/* VARIABLES COULEUR */
:root {
  --gold: #f76e01;
  --dark: #1f1f1f;
  --grey: #e7dcdc00;
  --bg: #64d3dc;
  --bg2: #64d3dc;
  --green: #168d44;
}

/* ===================== */
/* GLOBAL */
body {
  margin: 0;
  padding-top: 0px;
  font-family: 'Roboto', sans-serif;
  background: var(--bg);
  color: var(--dark);
}
a {
  text-decoration: none;
}

h1 {
font-family: "lobster", sans-serif;
font-weight: 400;
font-style: normal;
  display: block;
  font-size: 2em;
  margin-top: 0.1em;
  margin-bottom: 0.1em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

h2 {
font-family: "solitas-serif-normal", sans-serif;
font-weight: 900;
font-style: italic;
  font-weight: bold;
margin-bottom: 0.1em ;
}

h3 {
font-family: "solitas-serif-normal", sans-serif;
font-weight: 200;
font-style: italic;
  font-weight: bold;
  margin-bottom: 0.1em ;
}

h4 {
font-family: 'Roboto', sans-serif;
font-size: 25px;
margin-top: 0;
}

h5 {
font-family: 'Roboto', sans-serif;
font-size: 12px;
margin-top: 0;
text-align: left;
}
/* ===================== */
/* MENU STICKY & BURGER */
.topbar {
  position: fixed;
  top: 0px;
  width: 100%;
  background: rgba(250,248,243,0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  z-index: 2000;
}
.topbar.visible { transform: translateY(0); }
.topbar-inner {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  justify-content: center; /* alignement sur la barre */
  align-items: center;
}


.logo img {
  height: 60px;          /* taille standard */
  width: auto;
  max-width: 160px;
  display: block;
}

.logomini {
  margin: auto;
  top: 120px;
  width: 100%;
  height: 60px;          
  max-width: 90px; /* taille standard du logo */
box-shadow: none;
}

.logo-mobile { display: none; }

@media (max-width: 768px) {
  .logo-desktop { display: none; }
  .logo-mobile {
    display: block;
    height: 32px;
  }
}



/* Menu desktop */
nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 20px;
  align-items: center;
}
nav a {
  color: var(--dark);
  font-weight: 500px;
}
nav .cta {
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* Burger menu mobile */
.burger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Menu déroulant mobile */
.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--bg);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Menu actif (open) */
.nav-links.active {
  display: flex;
}

/* Desktop overrides */
@media(min-width:769px){
  .burger { display: none; }
  .nav-links { display: flex !important; flex-direction: row; position: static; gap: 24px; background: transparent; padding: 0; box-shadow: none; }
}

/* ===================== */
/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
  position: relative;
  background: lightblue url("img/background01.png") no-repeat fixed center; 
}

.hero img {
  width: 100%;
  max-width: 500px;
  margin: auto;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transition: transform 0.6s ease;
}
.hero img:hover { transform: scale(1.05); }



/* HERO 2*/
.hero2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  text-align: center;
  padding: 20px 20px;
  position: relative;
}

.hero2 img {
  width: 100%;
  max-width: 500px;
  margin: auto;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transition: transform 0.6s ease;
}
.hero2 img:hover { transform: scale(1.05); }

@keyframes float {0%{transform:translateX(-50%) translateY(0);}100%{transform:translateX(-50%) translateY(-15px);}}

/* ===================== */
/* SECTIONS & GRIDS */
.section {
  padding: 10px 10px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  background-color: #3e9945;
}

.section2 {
  padding: 10px 10px;
  max-width: auto;
  margin: auto;
  margin-top: 0px;
  text-align: center;
  background-color: #64d3dc;
}

.section3 {
  padding: 10px 10px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  background-color: #64d3dc;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 10px;
  margin-top: 10px;
}
.card {
  background: rgba(255, 255, 255, 0);
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}
.card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== */
/* GALERIE */
.gallery img {
  cursor: pointer;
  transition: transform 0.3s;
  border-radius: 16px;
}
.gallery img:hover { transform: scale(1.05); }

/* ===================== */
/* VIDÉO */
.video-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 40px auto 0;
}
.video-container iframe {
  width: 560px;
  max-width: 100%;
  height: 315px;
  border-radius: 12px;
}

/* ===================== */
/* CTA */
.cta, .sticky-cta {
  display: inline-block;
  border-radius: 50px;
  background: var(--gold);
  color: white;
  font-weight: bold;
  transition: all 0.3s ease;
  padding: 12px 24px;
}
.cta:hover, .sticky-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(201,162,77,0.4);
}
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}
@media(max-width:900px){ .sticky-cta { display: block; } }



/* ===================== */
/* FOOTER */
.footer {
  background: rgba(250,248,243,0.96);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 40px;
  margin-top: 0px;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
}

.footer a {
  color: var(--dark);
  margin: 0 8px;
  transition: color 0.3s;
}
.footer a:hover { color: var(--green); }


/* ===================== */
/* SOCIAL ICON */

.social-icons {
  display: flex;
  gap: 25px;
}

.social-icons a {
  text-decoration: none;
  color: #333;
  transition: transform 0.3s, color 0.3s;
}

.material-symbols-outlined {
  font-size: 48px;
}

.social-icons a:hover {
  transform: scale(1.2);
}

/* Couleurs au survol */
.social-icons a:hover:nth-child(1) {
  color: #FF0000; /* YouTube */
}

.social-icons a:hover:nth-child(2) {
  color: #E1306C; /* Instagram */
}

.social-icons a:hover:nth-child(3) {
  color: #1877F2; /* Facebook */
}