* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    background-color: #f9f9f9;
}

/* Header stylé */
.site-header {
    background-color: #f17825; /* Couleur de fond personnalisable */
    padding: 20px 0;
    text-align: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    height: 100px;
    width: auto;
}

/* Responsive */
@media (max-width: 600px) {
    .logo {
        height: 100px;
    }
}

/* WHO
*/
.tools-section {
  padding: 30px 20px;
  text-align: center;
}

.tools-section p{
  padding-bottom: 15px;
}

.tools-section h1 {
  font-size: 2.5rem;
  color: #2675a4;
  margin-bottom: 40px;
}

.tools-section h2{
    color: #0a3d62;
}

.tools-box {
  padding: 30px 20px;
  margin: 0 auto 30px auto;
  max-width: 800px;
  border: 5px solid #f17825;
}

.tools-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.tool-icon img {
  width: 60px;
  height: auto;
  transition: transform 0.3s ease;
}

.tool-icon img:hover {
  transform: scale(1.1);
}

.tools-text {
  font-size: 1.3rem;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .tool-icon img {
    width: 50px;
  }

  .tools-icons {
    gap: 20px;
  }
}

/* BIO
*/
.me-diamond {
  width: 250px;
  height: 250px;
  margin: 30px;
  transform: rotate(45deg);
  overflow: hidden;
  border-radius: 15px;
  border: 4px solid #f17825; /* contour orange */
  box-sizing: border-box; /* inclure le contour dans la taille */
  z-index: 1;
  top: -175px;
  left:0;
}

.me-diamond-content {
  width: 100%;
  height: 100%;
  background-image: url('assets/images/rubis.jpeg'); /* ton image */
  background-size: cover;
  background-position: center;
  transform: rotate(-45deg) scale(1.42); /* image droite + remplissage total */
}

.presentation {
    padding: 60px 20px;
    background-color: #ededed;
}

.presentation {
  position: relative; /* nécessaire pour positionner le losange à l’intérieur */
  background: #f9f9f9;
  padding: 50px;
  min-height: 400px;
  overflow: hidden; /* évite les débordements */
}

.diamond {
  position: absolute;
  bottom: -55vh;
    left: -65vh;
  width: 100vh;     /* largeur du losange = hauteur (carré tourné) */
  height: 100vh;
  background: #f17825;
  transform: rotate(45deg);
}

.presentation-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap-reverse; /* ordre inversé sur mobile */
}

/* Colonne contenu */
.presentation-content {
    flex: 1 1 300px;
}

.presentation-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2675a4;
    text-align: center;
}

.presentation-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: black;
    margin-right: 10%;
    margin-left: 10%;
}

/* Colonne image */
.presentation-image {
    flex: 1 1 250px;
    display: flex;
    justify-content: center;
}

.presentation-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.presentation-image img:hover {
    transform: scale(1.05);
}



.diamond {
    position: absolute;
    bottom: -62vh;
    left: -80vh;
    width: 100vh;
    height: 100vh;
    background: #f17825;
    transform: rotate(45deg);
}

@media (min-width: 768px) and (max-width: 1024px) {
    .diamond {
        position: absolute;
        bottom: -60vh;
        left: -80vh;
        width: 100vh;
        height: 100vh;
        background: #f17825;
        transform: rotate(45deg);
    }
}

/* Responsive mobile */
@media (max-width: 760px) {
    .presentation-container {
        flex-direction: column;
        text-align: center;
    }

    .presentation-content h2 {
        font-size: 1.6rem;
    }

    .presentation-image img {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 767px) {
    .presentation {
        padding: 10px;
        padding-top: 50px;
    }

    .presentation-content {
        background-color: #f9f9f9;
        z-index: 1;
    }
}

/* WHY
*/
.detail-list {
  list-style: none; /* Supprimer les puces natives */
  padding-left: 1.5em; /* Laisser de la place pour la puce */
}

.detail-list li {
  position: relative;
  margin-bottom: 1em;
  text-align: left;
}

.detail-list li::before {
  content: "•";
  position: absolute;
  left: -20px;
  top: 0;
  color: black; /* couleur de la puce */
  font-size: 1.2em;
  line-height: 1;
}


.detail-list {
    /* margin: auto; */
    margin: 10%;
}
.detail-list li {
    text-align: left;
    font-size: 1.3rem
    /* margin: auto; */
}
.why-me-section {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  min-height: 400px;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.why-me-section p{
  margin-bottom: 1rem;
}

.diamond-why {
    position: absolute;
    top: 8vh;
    right: -65vh;
    width: 100vh;
    height: 100vh;
    background: #f17825;
    transform: rotate(45deg);
}

.why-me-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #2675a4;
  margin: 50px;
}

.why-me-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 80px 20px;
  padding: 50px;
  padding-top: 0;
}

.why-me-block {
  transform: translateY(-10px);
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
  text-align: center;
  border: 2px solid orange;
  transition: transform 0.3s ease;
}

/* .why-me-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgb(0 0 0 / 0.15);
} */

.why-me-block .icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.why-me-block h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #ee7929;
}

.why-me-block p {
  font-size: 1.3rem;
  line-height: 1.5;
}

/* Responsive */

@media (max-width: 992px) {
  .why-me-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 769px) {
  .why-me-section {
    max-width: none;
    margin: 0;
    text-align: center;
    min-height: 400px;
    background-color: white;
    position: relative;
    overflow: hidden;
  }

  .why-me-grid{
    max-width: 1200px;
    margin: auto;
  }
}

@media (max-width: 600px) {
  .why-me-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .why-me-grid {
    padding: 10px;
  }
}

/* Podcast
*/
.podcast-img{
    width: 250px;
    height: 250px;
}

.podcast-container{
    display: flex;
    align-items: center;
    gap: 50px;
}
.podcast-section {
    position: relative;
    background: white;
    padding: 50px;
    min-height: 400px;
    margin-left: 25px;
    border-radius: 10px;
    border: 3px #ededed solid;
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
}

@media (min-width: 769px) {
  /* Styles pour écrans > 768px (tablette paysage et desktop) */
    .podcast-section {
        position: relative;
        background: white;
        padding: 25px;
        min-height: 400px;
        border-radius: 10px;
        border: 3px #ededed solid;
        overflow: hidden;
        margin-bottom: 50px;
        max-width: 1200px;
        margin: auto;
        margin-bottom: 50px;
    }
}

@media (max-width: 600px) {
    .podcast-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .why-me-section h2 {
        margin: 10px!important;
    }
}

/* CUSTOMER
*/
.customer-section .icon img{
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
}
.customer-section {
  max-width: 1200px;
  background-color: #ededed;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 0;
}

.customer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #222;
}

.customer-section p {
  font-size: 1.2rem;
}

.customer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 20px;
  margin-top: 25px;
  padding-top: 70px;
}

.customer-block {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  transform: translateY(-10px);
  border: 2px solid orange;
}


.pricing-block .icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.icon img{
    width: 250px;
    height: auto;
}

.pricing-block h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #005f73;
}

.pricing-block p {
  font-size: 1.3rem;
  line-height: 1.5;
}

.diamond-pricing {
    position: absolute;
    top: 8vh;
    right: -70vh;
    width: 100vh;
    height: 100vh;
    background: #f17825;
    transform: rotate(45deg);
}
/* Responsive */

@media (min-width: 769px) {
  /* Styles pour écrans > 768px (tablette paysage et desktop) */
  .customer-section {
    max-width: none;
    width: 100%;
    background-color: #ededed;
    margin: 0;
    text-align: center;
    position: relative;
    z-index: 0;
    /* justify-content: center; */
}
    .customer-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        padding: 20px;
        margin-top: 25px;
        padding-top: 70px;
        max-width: 1200px;
        margin: auto;
    }
}


@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .customer-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* MAIN EVENT
*/
.banner-content{
    max-width: 1200px;
        margin: auto;
}

.event-section{
    position: relative;
    min-height: 500px;
    overflow: hidden;
}
img.background {
    height: auto;
    width: 100%;
    position: absolute;
    right: 0;
    top: -180px;
}

.event-content {
    width: 70%;
    padding: 2rem;
    text-align: center;
}

.event-content h3 {
    padding-bottom: 1rem;
    font-size: 1.5rem;
}

.event-banner {
    background-color: #fff3e3;
    height: 250px;
    margin-top: 350px;
    border: 2px solid lightgray;
    margin-bottom: 20px;
}

.event-container {
    z-index: 1;
    position: relative;
}

.destination-diamond {
    width: 350px;
    height: 350px;
    margin: 30px;
    transform: rotate(45deg);
    overflow: hidden;
    border-radius: 55px;
    border: 10px solid #f17825;
    box-sizing: border-box;
    z-index: 1;
    top: -20vh;
    right: 0;
    position: absolute;
    right: 2vh;
}

.diamond-event {
    position: absolute;
    bottom: -54vh;
    left: -80vh;
    width: 100vh;
    height: 100vh;
    background: #f17825;
    transform: rotate(45deg);
    z-index: 1;
}

.diamond-pictures {
    position: absolute;
    top: -108vh;
    right: -27vh;
    width: 120vh;
    height: 120vh;
    background: green;
    transform: rotate(45deg);
}


.destination-diamond-content {
  width: 100%;
  height: 100%;
  background-image: url('assets/images/destination.jpg'); /* ton image */
  background-size: cover;
  background-position: center;
  transform: rotate(-45deg) scale(1.42); /* image droite + remplissage total */
}

@media (max-width: 768px) {
    .background{
        display: none;
        padding: 1.5rem;
    }

    .destination-diamond {
        width: 280px;
        height: 280px;
        margin: 30px;
        transform: rotate(45deg);
        overflow: hidden;
        border-radius: 55px;
        border: 10px solid #f17825;
        box-sizing: border-box;
        z-index: 1;
        top: -50vh;
        right: 0;
        position: absolute;
        right: 3vh;
    }
    .event-content {
        width: 100%;
        padding: 2rem;
        text-align: center;
    }
}

@media (min-width: 769px) {
    img.background {
        top: -60px;
    }
}
@media (min-width: 1025px) {

    .destination-diamond {
        width: 450px;
        height: 450px;
        top: -35vh;
        right: 25vh;
    }
    .event-banner {
        margin-top: 400px;
    }
    .diamond-event {
        width: 120vh;
        height: 120vh;
        bottom: -60vh;
        left: -90vh;
    }
    .diamond-pictures {
        width: 150vh;
        height: 150vh;
        top: -130vh;
        right: -35vh;
    }
}

/* TARIF
*/
p.tarifs{
  color: #2675a4;
  font-weight: bold;
  font-size: 2rem !important;
}

.tooltip-container{
  margin-left: 1rem;
}

.main-tarifs{
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-section {
  max-width: 1200px;
  background-color: #fff;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 0;
}

.pricing-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #222;
  margin: 50px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 50px;
  padding: 20px;
}

.pricing-block {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  transform: translateY(-10px);
  border: 2px solid orange;
}


.pricing-block .icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.icon img{
    width: 200px;
    height: auto;
}

.pricing-block h3 {
  font-size: 2rem;
    font-weight: lighter;
    margin-bottom: 15px;
    color: #ee7929;
}

.pricing-block p {
  font-size: 1.3rem;
  line-height: 1.5;
}

.diamond-pricing {
    position: absolute;
    top: 8vh;
    right: -70vh;
    width: 100vh;
    height: 100vh;
    background: #f17825;
    transform: rotate(45deg);
}
/* Responsive */

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.tooltip-container {
    position: relative;
    display: inline-block;
    font-family: sans-serif;
}

.info-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #2675a4;
    color: white;
    text-align: center;
    line-height: 24px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    border: none;
}

.tooltip-text {
    visibility: hidden;
    opacity: 0;
    width: max-content;
    max-width: 200px;
    background-color: #333;
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    text-align: left;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* au-dessus de l'icône */
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s;
    white-space: normal;
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%; /* en bas du tooltip */
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

/* Affichage du tooltip au survol (desktop) */
.tooltip-container:hover .tooltip-text,
/* Affichage du tooltip au focus (clic ou tab, pour mobile et accessibilité) */
.tooltip-container:focus-within .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* CONTACT
*/
.contact-section {
    padding: 40px 20px;
    background-color: #ededed;
    text-align: center;
    position: relative;
    z-index: 0;
    overflow: hidden;
  }
  .diamond-contact {
    position: absolute;
    bottom: -50vh;
    left: -85vh;
    width: 100vh;     /* largeur du losange = hauteur (carré tourné) */
    height: 100vh;
    background: #f17825;
    transform: rotate(45deg);
    z-index: -1;
  }


  .contact-section h2{
    font-size: 2rem;
    margin: 50px;
    color: black;
    text-align: center;
  }

  .contact-infos {
    max-width: 80%;
    margin: auto;
    /* margin: 40px auto; */
    /* padding: 40px 30px; */
    /* background-color: #f9f9f9; */
    /* border: 1px solid; */
    border-radius: 12px;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05); */
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#contact-form label {
  font-weight: 600;
  color: #333;
  text-align: left;
  margin-bottom: 5px;
}

#contact-form input,
#contact-form textarea {
  padding: 12px 15px;
  border: 2px solid #f17825;
  border-radius: 8px;
  font-size: 1.3rem;
  background-color: #fff;
  transition: border-color 0.3s;
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: #f17825;
  box-shadow: 0 0 0 2px rgba(255, 136, 0, 0.2);
}

#submit-button {
  background-color: #ff8800;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 30%;
  margin-left: auto;
}

#submit-button:hover {
  background-color: #e67300;
}

#contact-form select {
  padding: 12px 15px;
  border: 2px solid #f17825;
  border-radius: 8px;
  font-size: 1.3rem;
  background-color: #fff;
  color: #333;
  font-family: inherit;
  appearance: none;         /* supprime le style natif (Chrome, Safari) */
  -webkit-appearance: none; /* supprime le style natif (Safari) */
  -moz-appearance: none;    /* supprime le style natif (Firefox) */
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='5' viewBox='0 0 10 5'%3E%3Cpath fill='%23f17825' d='M0 0l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

#contact-form select:focus {
  outline: none;
  border-color: #f17825;
  box-shadow: 0 0 0 2px rgba(255, 136, 0, 0.2);
}

/* Responsive */
@media (max-width: 600px) {
  .contact-section {
    padding: 0;
  }
  .contact-infos {
    width: 100%;
  }

  #submit-button {
    width: 100%;
    margin-bottom: 20px;
  }

  #contact-form {
    gap: 16px;
  }
}
@media (min-width: 950px) {
  .contact-infos {
    max-width: 70%;
  }
}

/* FOOTER
*/
.site-footer {
    background-color: #f17825;
    color: #ffffff;
    padding: 30px 20px;
    text-align: center;
}

.footer-socials {
    margin-bottom: 15px;
}

.footer-socials a {
    margin: 0 10px;
    display: inline-block;
}

.footer-socials img {
    height: 32px;
    width: 32px;
    transition: transform 0.2s ease;
}

.footer-socials a:hover img {
    transform: scale(1.1);
}

.footer-links {
    font-size: 0.9rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: underline;
    margin: 0 5px;
}

.footer-links a:hover {
    text-decoration: none;
}
