/* ------------------------------
   Style principal Hippomer
------------------------------ */

/* Réinitialisation */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.5;
}

/* ------------------------------
   Topbar & Header
------------------------------ */
.topbar {
  background: #48145c;
  color: #fff;
  padding: 10px 0;
}

.topbar .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: uppercase;
}
.logo .lt {
  color: #fff;
}
.logo .rt {
  color: #990099;
}
.logo .subtitle {
  font-size: 0.8rem;
  font-weight: 300;
}

.lang select {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 4px 8px;
}

/* ------------------------------
   Section Hero
------------------------------ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero .overlay {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  border-radius: 8px;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 3px;
}
.hero .accent {
  color: #990099;
}
.hero h2 {
  font-weight: 300;
  margin: 20px 0;
}
.buttons {
  margin: 20px auto;
}
.btn {
  display: inline-block;
  margin: 5px;
  background: #18B99E;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #2456a4;
}
.btn.phone {
  background: #990099;
}
.btn.phone:hover {
  background: #bf00bf;
}

/* ------------------------------
   Section Carte
------------------------------ */
#carte.wrapped {
  padding: 60px 0;
  background: #f8f8f8;
  text-align: center;
}

#carte h3 {
  font-size: 1.6rem;
  color: #48145c;
  margin-bottom: 10px;
}
#carte p {
  font-weight: 300;
  color: #555;
  margin-bottom: 20px;
}
.map-framed {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}
.map-actions {
  margin-top: 25px;
}
.map-actions .btn.itinerary {
  background: #48145c;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}
.map-actions .btn.itinerary:hover {
  background: #006fb3;
}

/* ------------------------------
   Footer
------------------------------ */
footer {
  background: #48145c;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
}

/* ------------------------------
   Responsive
------------------------------ */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.4rem; }
  .hero h2 { font-size: 1rem; }
  .btn { padding: 10px 18px; }
}
.lang {
  position: relative;
}

/* Boîte du traducteur Google */
#google_translate_element {
  display: inline-block;
  background: #48145c;
  padding: 5px;
  border-radius: 4px;
}

/* Retouche l'apparence du menu déroulant */
.goog-te-gadget {
  color: #fff !important;
  font-size: 0.9rem;
  font-weight: 500;
}
.goog-te-gadget-simple {
  background: transparent !important;
  border: 1px solid #fff !important;
  border-radius: 4px !important;
  padding: 4px 8px !important;
}
.goog-te-menu-value span {
  color: #fff !important;
}
.goog-logo-link {
  display: none !important; /* supprime le mini-logo Google */
}
/* Page Mentions légales */
.mentions {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: left;
}
.mentions h1 {
  color: #004b80;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}
.mentions h2 {
  color: #004b80;
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 10px;
}
.mentions p, .mentions li {
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.6;
}
.mentions ul {
  list-style-type: disc;
  margin-left: 20px;
}

/* Footer link */
footer a {
  color: #fff;
  text-decoration: underline;
}
footer a:hover {
  color: #ffccff;
}

