/* Core Stuff */

/**
COLORS

Background 4A4A4A
Header / Footer 1A1A1A
A Hover B08D57
Highlight F9F9F9

**/


* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@font-face {
  font-family: 'Symphony';
  src: url('../fonts/symphony-pro.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
    font-size: 16px;
    line-height: 1.7;
    color: #F9F9F9;
    background-color: #4A4A4A;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #F9F9F9;
}

a {
    color: #F9F9F9;
    text-decoration: bold;
}

a:hover {
    color: #B08D57;
}

pre {
    background: #F9F9F9;
    margin: 1rem 0;
    border-radius: 2px;
}

blockquote {
    border-left: 10px solid #eee;
    margin: 0;
    padding: 0 2rem;
}

/* Utility Classes */
.wrapper {
    margin: 0 12rem;
}

@media (min-width:0px) and (max-width:600px) {
  .wrapper {
      margin: 0 1rem;
  }
}

@media (min-width:600px) and (max-width:1300px) {
  .wrapper {
      margin: 0 3rem;
  }
}

.padding {
    padding: 3rem 1rem;
}

.left {
    float: left;
}

.right {
    float: right
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/* Content Styling */
.header .padding {
    /*padding: 1rem 0;*/
}

.header {
    background-color: #1A1A1A;
    color: #eee;
}

.header a {
    color: #F9F9F9;
}

.header .logo {
    font-size: 1.7rem;
    text-transform: uppercase;
}

.footer {
    background-color: #1A1A1A;
}

/* Menu Settings */
.main-nav ul {
    text-align: center;
    letter-spacing: -1em;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    display: inline-block;
    letter-spacing: normal;
}

.main-nav ul li a {
    position: relative;
    display: block;
    line-height: 45px;
    color: #fff;
    padding: 0 20px;
    white-space: nowrap;
}

.main-nav > ul > li > a {
    border-radius: 2px;
}

/*Active dropdown nav item */
.main-nav ul li:hover > a {
    background-color: #F9F9F9;
}

/* Selected Dropdown nav item */
.main-nav ul li.selected > a {
    background-color: #000000;
    color: #F9F9F9;
}

/* Dropdown CSS */
.main-nav ul li {position: relative;}

.main-nav ul li ul {
    position: absolute;
    background-color: #000000;
    min-width: 100%;
    text-align: left;
    z-index: 999;

    display: none;
}
.main-nav ul li ul li {
    display: block;
}

/* Dropdown CSS */
.main-nav ul li ul ul {
    left: 100%;
    top: 0;
}

/* Active on Hover */
.main-nav li:hover > ul {
    display: block;
}

/* Child Indicator */
.main-nav .has-children > a {
    padding-right: 30px;
}
.main-nav .has-children > a:after {
    font-family: FontAwesome;
    content: '\f107';
    position: absolute;
    display: inline-block;
    right: 8px;
    top: 0;
}

.main-nav .has-children .has-children > a:after {
    content: '\f105';
}

/* My classes */

a.title_link {
  font-size: 5rem;
  color: #F9F9F9;
  text-decoration: none;
  font-family: 'Symphony', serif;
}

@media (max-width: 600px) {
  a.title_link {
    font-size: 4rem;
    color: #F9F9F9;
    text-decoration: none;
    font-family: 'Symphony', serif;
  }
}

.languages {
  margin: auto;
  text-align: right;
}

.flag {
  border: 3px solid #F9F9F9;
  margin-right: 5px;
  width: 60px
}

@media (max-width: 600px) {
  .flag {
    margin-right: 10px;
    margin-top: 18px;
    width: 40px
  }
}

.presentation_image {
  border: 3px solid #F9F9F9;
  text-align: center;
  margin: auto;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.presentation_image:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(198,163,79,0.25);
  border-color: #F9F9F9;
}

.presentation_description {
  text-align: justify;
}

.tour_image {
  border: 3px solid #F9F9F9;
  text-align: center;
  margin: auto;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour_image:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(198,163,79,0.25);
  border-color: #F9F9F9;
}

.tour_description {
  text-align: justify;
}

.button {
  background: linear-gradient(135deg, #F9F9F9, #B08D57);
  color: #F9F9F9;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 0.8rem 1.8rem;
  margin-top: 0.5rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(198,163,79,0.25);
}

/* Effet au survol */
.button:hover {
  background: linear-gradient(135deg, #B08D57, #F5D87A);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(198,163,79,0.35);
  color: #2C2B28;
}

/* Version en fond clair (outline) si besoin */
.button-outline {
  background: transparent;
  border: 2px solid #F9F9F9;
  color: #F9F9F9;
  border-radius: 50px;
  padding: 0.8rem 1.8rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.button-outline:hover {
  background: #F9F9F9;
  color: #FFF;
  box-shadow: 0 4px 12px rgba(198,163,79,0.3);
}




input {
  color: #F9F9F9;
  width: 400px;
}

textarea {
  color: #F9F9F9;
  width: 400px;
  height: 400px;
  resize: none;
}

.socialnetworks {
  text-align: left;
}

img.social {
  width: 50px;
}

.legalmentions {
  margin: auto;
  text-align: right;
}

.highlighted {
    background-color: #1A1A1A;
    color: #eee;
}

/* Conteneur d’image centré */
.image-wrapper {
  display: flex;
  justify-content: center; /* centre horizontalement */
  align-items: center;     /* centre verticalement si tu fixes une hauteur */
  padding: 0.5rem;
}

/* Style de l’image */
.image-wrapper img {
  max-width: 90%;      /* garde de la respiration autour de l’image */
  height: auto;        /* conserve les proportions */
  border-radius: 10px; /* coins arrondis élégants */
  display: block;
}

/* Bouton doré - style Luxe Ivoire & Or */
.btn-luxe {
  background: linear-gradient(135deg, #F9F9F9, #B08D57);
  color: #F9F9F9;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 0.8rem 1.8rem;
  margin-top: 0.5rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(198,163,79,0.25);
}

/* Effet au survol */
.btn-luxe:hover {
  background: linear-gradient(135deg, #B08D57, #F5D87A);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(198,163,79,0.35);
  color: #2C2B28;
}

/* Version en fond clair (outline) si besoin */
.btn-luxe-outline {
  background: transparent;
  border: 2px solid #F9F9F9;
  color: #F9F9F9;
  border-radius: 50px;
  padding: 0.8rem 1.8rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-luxe-outline:hover {
  background: #F9F9F9;
  color: #FFF;
  box-shadow: 0 4px 12px rgba(198,163,79,0.3);
}

/* Gallery */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 colonnes fixes */
  gap: 10px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 3px solid #F9F9F9;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(198,163,79,0.25);
  border-color: #F9F9F9;
}

/* Les images gardent la grille même sur mobile */
@media (max-width: 600px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
}


.review {
  border: 1px solid #F9F9F9;
  border-radius: 10px;
  padding: 14px;
  margin: 6px;
  font-size: 12px;
  background: #1A1A1A;
}

.name {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 4px;
}

.stars {
  color: #f4b400;
  font-size: 1.2em;
  margin-bottom: 6px;
}
