
//* === BASE === */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}
*, *::before, *::after {
  box-sizing: inherit;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* === HEADER === */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  background: #000;
  color: white;
  z-index: 1000;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.logo img {
  height: 60px;
}

/* === MENU BURGER CSS === */
.menu-toggle {
  display: none;
}
.burger-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
}
.burger-icon span {
  display: block;
  height: 3px;
  background: #e60000;
  border-radius: 2px;
}

/* === NAVIGATION === */
.site-nav {
  display: flex;
  gap: 20px;
}
.site-nav a {
  color: #e60000;
  text-decoration: none;
  font-weight: bold;
}
.site-nav a:hover {
  color: #fff;
}

/* === RESPONSIVE MENU === */
@media screen and (max-width: 768px) {
  .burger-icon {
    display: flex;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    background-color: #000;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    box-sizing: border-box;
  }

  .menu-toggle:checked + .burger-icon + .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
    text-align: center;
    font-size: 18px;
    border-bottom: 1px solid #222;
  }

  .site-header .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* === FOOTER === */
.site-footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
}
.site-footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}
.site-footer a:hover {
  color: #e60000;
}

/* === HERO === */
.hero {
  background: #f9f9f9;
  color: #000;
  padding: 80px 20px 40px;
  text-align: center;
}

/* === BUTTON === */
.submit-button,
#checkout-button {
  display: inline-block;
  background-color: #e60000;
  color: white;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 20px;
  border: none;
  cursor: pointer;
}
.submit-button:hover,
#checkout-button:hover {
  background-color: #c00000;
}

/* === VIDEO === */
video {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 100vh;
}

/* === FORMULAIRE DE RÉSERVATION === */
.reservation-form {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}
.reservation-form label {
  display: block;
  margin-top: 20px;
  font-weight: bold;
}
.reservation-form input[type="text"],
.reservation-form input[type="email"],
.reservation-form input[type="date"],
.reservation-form input[type="time"],
.reservation-form input[type="hidden"],
.reservation-form select {
  width: 100%;
  padding: 10px 15px;
  margin-top: 5px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
.reservation-form gmpx-placeautocomplete {
  display: block;
  width: 100%;
  margin-top: 10px;
}

#summary {
  margin-top: 30px;
  text-align: left;
}
#summary p {
  margin: 5px 0;
  font-weight: 500;
}
#payment-section {
  margin-top: 30px;
  text-align: center;
}
#map {
  width: 100%;
  height: 400px;
  margin-top: 40px;
  border-radius: 8px;
  overflow: hidden;
}

/* === RESPONSIVE === */
@media screen and (max-width: 768px) {
  .section {
    padding: 40px 15px;
  }
  .hero {
    padding: 60px 15px 30px;
  }
  .submit-button,
  #checkout-button {
    width: 100%;
    max-width: 300px;
  }
  #summary {
    text-align: center;
    font-size: 15px;
  }
  .reservation-form label {
    margin-top: 15px;
  }
  .reservation-form input {
    font-size: 15px;
    padding: 8px 12px;
  }
  #map {
    height: 300px;
  }
  .site-footer a {
    display: block;
    margin: 5px 0;
  }

  .site-nav {
    flex-direction: column;
    background-color: #000;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 10px 0;
    display: none;
  }

  .site-nav.show {
    display: flex;
  }

  .site-nav a {
    padding: 12px 20px;
    text-align: center;
    font-size: 18px;
  }
}
/* === LIENS GÉNÉRAUX === */
a {
  color: #e60000;
  text-decoration: none;
}
a:hover {
  color: #c00000;
}

/* === GRILLE FORMULAIRE 2 COLONNES === */
.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.form-col {
  flex: 1;
  min-width: 200px;
}
.form-col label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}
.form-col input,
.form-col select,
.form-col textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  box-sizing: border-box;
}
/* === CAROUSEL === */
.js-carousel {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  background-color: #000;
}

.js-carousel-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.js-carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
}
.js-carousel-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* Arrows */
.js-carousel-prev,
.js-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.js-carousel-prev:hover,
.js-carousel-next:hover {
  background-color: rgba(0,0,0,0.8);
}
.js-carousel-prev {
  left: 12px;
}
.js-carousel-next {
  right: 12px;
}

/* Dots */
.js-carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.js-carousel-dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
}
.js-carousel-dot.active {
  background-color: rgba(255,255,255,0.9);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .js-carousel-slide img {
    height: 250px;
  }
  .js-carousel-prev,
  .js-carousel-next {
    font-size: 1.5rem;
    width: 32px;
    height: 32px;
  }
  .js-carousel-dots {
    bottom: 8px;
  }
}
@media screen and (max-width: 768px) {
  .site-header .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
    /* Social icons container */
    .social-links{
      display:flex;
      gap:10px;
      align-items:center;
      justify-content:flex-end;
      margin-left:auto;
    }
    .social a{ text-decoration:none; display:inline-flex; align-items:center; }
    .social-icon{ width:24px; height:24px; display:block; fill:currentColor; }
    /* Color scheme: black and red as requested */
    .social-linkedin{ color:#0A66C2; } /* linkedin blue */
    .social-google{ color:#DB4437; } /* google red */
    .social-facebook{ color:#1877F2; } /* facebook blue */
    .social-youtube{ color:#FF0000; } /* youtube red */

    /* Responsive: hide text on very small screens, keep icons */
    @media (max-width:768px){
      .social-links{ gap:8px; }
      .social-icon{ width:20px; height:20px; }
    }
    @media (max-width:480px){
      /* on very small screens move icons into a collapsible menu if needed - here just reduce size and spacing */
      .social-links{ gap:6px; }
      .social-icon{ width:18px; height:18px; }
    }