:root {

  --color-white: #ffffff;
  --color-hover: rgba(255, 255, 255, 0.2);
  --color-overlay: rgba(0, 0, 0, 0.5);
  --primary-color: #0B1B3B;
  --blue-dark: #0b1b3b;
  --green: #145a32;
  --green-light: #28a745;
  --text-dark: #1e1e1e;
  --text-muted: #555;
  --white: #ffffff;
  --bg-light: #f9f9f9;
  --white: #fff;
  --blue-dark: #0B1B3B; /* bleu foncé */
  --bg-light: #f9f9f9;
  --text-muted: #666666;
  --font-main: 'Roboto', sans-serif;
  --blue-dark: #00363d;
  --text-darks: #00363d;
  --radius: 12px;
  --shadow-light: rgba(0, 0, 0, 0.06);
  --shadow-dark: rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --shadow: 0 6px 16px rgba(0,0,0,0.1);
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  --box-shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-soft: 0 2px 6px rgba(0,0,0,0.2);
  --shadow-strong: 0 2px 6px rgba(0,0,0,0.3);
}


h1, h2, h3, h4, h5 {
  font-family: var(--font-main);
  font-weight: 600;
}

p {
  font-family: var(--font-main);
  font-weight: 400;
}


  body {
    font-family: var(--font-main);
    overflow-x: hidden;
  }

  .custom-navbar {
    background-color: var(--primary-color);
  }

  .nav-link {
    color: var(--color-white) !important;
    font-weight: 500;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--green) !important; /* vert forêt */
  }

  .btn-reservation {
    background-color: var(--green-light); /* vert forêt */
    color: white;
    border-radius: 20px;
    font-weight: bold;
    transition: 0.3s;
  }


  .btn-reservation:hover {
    background-color: var(--green-light);
    color: var(--white);
  }

  .btn-contact {
    background-color: var(--white);
    color: #0B1B3B;
    border-radius: 20px;
    font-weight: bold;
    transition: 0.3s;
  }

  .btn-contact:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
  }

  /* Effet hover et focus sur les nav-links */
.nav-link,
.dropdown-item {
  transition: background-color 0.3s, color 0.3s;
}

.nav-link:hover,
.nav-link:focus,
.nav-item .nav-link.active,
.dropdown-item:hover,
.dropdown-item:focus {
  background-color: white !important;
  color: black !important;
  border-radius: 20px;
}

@media (max-width: 991.98px) {
  .navbar-nav {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 10px;
  }

  .navbar-nav .nav-item {
    margin: 5px 0;
    text-align: center;
  }

  .btn-reservation,
  .btn-contact {
    width: 90%;
    margin: 5px auto;
  }
}

@media (min-width: 992px) {
  .navbar-nav .nav-item {
    margin-left: 15px;
    margin-right: 15px;
  }
}


  /* Responsive spacing */
  @media (max-width: 767.98px) {
    .navbar-nav .nav-item {
      margin: 5px 0;
      text-align: center;
    }

    .btn-reservation, .btn-contact {
      width: 90%;
      margin: 5px auto;
    }
  }


/* Hero */
/* .hero {
  background-image: url('../logo3.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  font-family: var(--font-primary);
  position: relative;
  overflow: hidden;
} */

 .hero {
  background-image: url('../Gallerie/Canoe/Karting.jpg'); /* Image desktop par défaut */
  filter: brightness(1.3);
  background-size: cover;
  background-position: center;
  height: 100vh;
  font-family: var(--font-primary);
  position: relative;
  overflow: hidden;
}  

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

/* Contenu */
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: row; /* <-- changement ici */
  align-items: center;
  justify-content: center;
  gap: 0.5rem; /* un petit espace entre les spans */
}

.hero-para {
  background-color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.highlight {
  background-color: var(--white);
  color: var(--blue-dark);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
}

.hero-subtitle {
  color: var(--white);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 1rem auto 2rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

/* Boutons */
.button-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  font-family: var(--font-main);
  font-weight: 600;
  border-radius: 40px;
  font-size: 1rem;
  padding: 0.75rem 1.8rem;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.hero-btn-reserve {
  background-color: var(--green);
  color: var(--color-white);
}

.hero-btn-reserve:hover {
  background-color: var(--green);
  transform: scale(1.05);
}

.hero-btn-info {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.hero-btn-info:hover {
  background-color: var(--white);
  color: var(--color-primary);
  transform: scale(1.05);
}

/* Responsive */
/* @media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    flex-direction: column; 
    align-items: center;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
} */

/* Image mobile en dessous de 768px */
 @media screen and (max-width: 768px) {
  .hero {
    background-image: url('../Gallerie/Canoe/Karting4.jpg');
    filter: brightness(1.9);
   }  

  .hero-title {
    font-size: 2rem;
    flex-direction: column;
    align-items: center;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}


/* offre*/
:root {
  --white: #fff;
  --blue-dark: #0b1b3b;
  --green: #145214;
  --bg-light: #f7f9fb;
  --font-main: 'Roboto', sans-serif;
  --text-muted: #666;
  --text-dark: #222;
  --radius: 12px;
  --shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.offre-section {
  background-color: var(--bg-light);
  padding: 5rem 1rem;
  font-family: var(--font-main);
  text-align: center;
}

.offre-header h2 {
  font-size: 2.2rem;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}

.offre-header p {
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.offre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

.offre-card {
  background-color: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offre-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.offre-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.offre-card.blue .icon {
  color: var(--blue-dark);
}

.offre-card.green .icon {
  color: var(--green);
}

.offre-card h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.offre-card p {
  font-size: 1rem;
  color: var(--text-muted);
}

.voir-detail-btn {
  font-family: var(--font-main);
  font-weight: 500;
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
}

@media (max-width: 768px) {
  .offre-grid {
    grid-template-columns: 1fr;
  }
}


/* Card Section */

.card-section {
  background-color: var(--white);
  font-family: var(--font-main);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-header {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.section-title {
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--blue-dark);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 600px;
}

.lux-card {
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 6px 18px var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.lux-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 36px var(--shadow-dark);
}

.lux-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.lux-card:hover .lux-card-image img {
  transform: scale(1.05);
}

.lux-card-content {
  padding: 1rem 1.25rem 1.5rem;
  flex-grow: 1;
}

.lux-card-content h3 {
  font-size: 1.3rem;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.lux-card-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Responsive adjustments */

@media (max-width: 992px) {
  .lux-card-image img {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .lux-card-image img {
    height: 150px;
  }
}
 

:root {
  --color-white: #ffffff;
  --color-blue-dark: #0a2e2e; /* Bleu foncé */
  --color-green-forest: #00796b; /* Vert forêt */
  --font-family-base: 'Roboto', sans-serif;
}

.why-section {
  background: linear-gradient(to bottom, var(--color-white), #f3faf8);
  padding: 80px 20px;
  text-align: center;
  font-family: var(--font-family-base);
  margin-top: 20px; /* espace avec section précédente */
}

.why-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-blue-dark);
  margin-bottom: 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Responsive mobile : 1 colonne */
@media (max-width: 767px) {
  .why-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.why-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.why-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.card-content {
  padding: 20px 25px;
}

.card-content h3 {
  font-size: 1.3rem;
  color: var(--color-green-forest);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-content ul {
  padding-left: 18px;
  margin: 0;
  color: #444;
}

.card-content ul li {
  list-style-type: disc;
  font-size: 0.95rem;
  margin-bottom: 6px;
  line-height: 1.5;
}


/*---newsletter--*/
.newsletter-section {
  background: linear-gradient(135deg, #81c784, #4caf50);
  color: white;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  margin: 50px auto;
  max-width: 700px;
}
.newsletter-title {
  font-size: 1.8rem;
  font-weight: bold;
}
.newsletter-form input[type="email"] {
  border: none;
  border-radius: 30px 0 0 30px;
  padding: 12px 20px;
  flex: 1;
  min-width: 250px;
}
.newsletter-form button {
  border-radius: 0 30px 30px 0;
  padding: 12px 25px;
  border: none;
  background-color: #2e7d32;
  color: white;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.newsletter-form button:hover {
  background-color: #1b5e20;
  transform: scale(1.03);
}
.no-spam-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  padding: 8px 20px;
  display: inline-block;
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 500;
}
.success-message {
  display: none;
  margin-top: 20px;
  background-color: #dff0d8;
  padding: 15px;
  border-radius: 8px;
  color: #2e7d32;
  font-weight: 500;
}


:root {
  --color-white: #ffffff;
  --color-blue-dark: #0b1b3b;
  --color-green-forest: #00796b;
  --font-family-base: 'Roboto', sans-serif;
  --btn-radius: 40px;
}

/* Footer général */
footer {
  background-color: var(--color-blue-dark);
  color: var(--color-white);
  padding: 40px 0;
  font-family: var(--font-family-base);
  position: relative;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.footer-column {
  flex: 1 1 220px;
  margin: 10px;
}

.footer-logo img {
  max-width: 200px;
  border-radius: 10px;
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 18px;
  color: var(--color-white);
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 10px 0;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--color-green-forest);
}

.contact-item i {
  margin-right: 10px;
  color: var(--color-green-forest);
}

.qr-code {
  width: 100px;
  height: 100px;
  border-radius: 10px;
}

/* Boutons personnalisés */
.btn-custom {
  border-radius: var(--btn-radius);
  padding: 10px 25px;
  font-weight: 600;
  font-family: var(--font-family-base);
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  -webkit-user-select: none;
  user-select: none;
}

/* Boutons classiques */
.btn-outline-custom {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-outline-custom:hover {
  background-color: var(--color-green-forest);
  border-color: var(--color-green-forest);
  color: var(--color-white);
}

/* Boutons Réservation et Contact distincts */
.btn-reservation {
  background-color: var(--color-green-forest);
  color: var(--color-white);
  border-color: var(--color-green-forest);
}

.btn-reservation:hover {
  background-color: var(--color-white);
  color: var(--color-green-forest);
  border-color: var(--color-green-forest);
}

.btn-contact {
  background-color: var(--color-blue-dark);
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-contact:hover {
  background-color: var(--color-white);
  color: var(--color-blue-dark);
  border-color: var(--color-blue-dark);
}

/* Menu déroulant sous "Activités" */
.nav-activites {
  position: relative;
  display: inline-block;
}

.nav-activites > button {
  background-color: var(--color-blue-dark);
  color: var(--color-white);
  border: none;
  font-family: var(--font-family-base);
  font-weight: 600;
  border-radius: var(--btn-radius);
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.nav-activites > button:hover,
.nav-activites > button:focus {
  background-color: var(--color-green-forest);
  outline: none;
}

/* Dropdown menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background-color: var(--color-blue-dark);
  min-width: 180px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
  z-index: 1000;
  padding: 10px 0;
}

.dropdown-menu a {
  color: var(--color-white);
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  font-family: var(--font-family-base);
  transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
  background-color: var(--color-green-forest);
  color: var(--color-white);
}

/* Affiche menu au hover sur desktop */
@media (hover: hover) and (pointer: fine) {
  .nav-activites:hover .dropdown-menu {
    display: block;
  }
}

/* Responsive: menu dropdown toggle sur mobile */
@media (max-width: 767px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }
  .nav-activites > button {
    width: 100%;
    text-align: left;
  }
}

/* Réseaux sociaux flottants */
.social-icons-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 999;
}

.social-icon {
  margin: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 20px;
  color: var(--color-white);
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  opacity: 0.8;
}

.bg-facebook { background-color: #3b5998; }
.bg-instagram { background-color: #e1306c; }
.bg-whatsapp { background-color: #25d366; }
.bg-tiktok { background: linear-gradient(135deg, #FE2C55, #25F4EE); }
.bg-youtube { background-color: red; }

:root {
  --color-primary: #002147; /* Bleu foncé */
  --color-success: #228B22; /* Vert forêt */
  --color-white: #ffffff;
  --font-main: 'Roboto', sans-serif;
}

/* Style général */
.footer-nav .btn {
  border-radius: 30px;
  padding: 8px 18px;
  font-family: var(--font-main);
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Réservation */
.btn-reservation {
  background-color: var(--color-success);
  color: var(--color-white);
  border: none;
}
.btn-reservation:hover {
  background-color: #1e7b1e;
}

/* Contact */
.btn-contact {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
}
.btn-contact:hover {
  background-color: #001a36;
}

/* Activités dropdown */
.nav-activites {
  position: relative;
}
.btn-activites {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid #fff;
  padding: 8px 18px;
  border-radius: 30px;
  cursor: pointer;
}
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: var(--color-primary);
  top: 100%;
  left: 0;
  min-width: 160px;
  border-radius: 5px;
  z-index: 10;
  padding: 10px;
}
.dropdown-menu a {
  color: var(--color-white);
  padding: 8px;
  display: block;
  text-decoration: none;
}
.dropdown-menu a:hover {
  background-color: var(--color-success);
}

/* Show menu */
.nav-activites.open .dropdown-menu {
  display: block;
}

/* Responsive : empêcher élargissement sur mobile */
@media (max-width: 767px) {
  .footer-nav .btn-reservation,
  .footer-nav .btn-contact {
    width: auto !important;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
  }

  .nav-activites .dropdown-menu {
    position: static;
    margin-top: 10px;
  }
}
