*{
    margin: 0;
    padding: 0;
}
body{
    min-height: 100vh;
    background-image: url(graphics/laptop.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: 'Montserrat','Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.scroll-fade-in {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease-out;
}

.scroll-fade-in.visible {
  opacity: 1;
  transform: translateX(0);
}





nav{
    background-color: white;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 0; /* assure-toi qu’il n’y a pas d’espace */
}

nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li {
    height: 50px;
}

nav a {
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
}

#logo {
    margin-right: auto; /* pousse les autres items à droite */
}

#logo a {
    display: flex;
    align-items: center;
    padding: 0 20px;
    text-decoration: none;
}

#logo img {
    height: 40px; /* ajuste selon ton image */
    margin-right: 10px;
}

#logo span {
    font-weight: bold;
    font-size: 18px;
    color: black;
}

nav a:hover{
    background-color: #f0f0f0;
}

nav li:first-child{
    margin-right: auto;
}

.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebar li{
    width: 100%;
}

.sidebar a{
    width: 100%;
}

.goldenMenu {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: white;
    font-weight: bold;
    border-radius: 5px;
}

.contactMenu{
    background: linear-gradient(45deg, #22333b, #2d4551);
    color:white;
    font-weight: bold;
    border-radius: 5px;
}

.contactMenu:hover a{
    color:black;
}

.contactMenu a {
    color: white;
}




.presentation {
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 60px 60px 60px; /* top padding réduit à 20px */
    gap: 40px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(3px);
    flex-wrap: wrap; /* mobile friendly */
    background-image: url(graphics/sport-2266184_1280.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
}


.presentation-left {
    flex: 1 1 45%;
}

.presentation-right {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.presentation-content {
    max-width: 500px;
    text-align: left;
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.8s ease-out;
    text-align: center;
}

.presentation-content.visible {
    transform: translateX(0);
    opacity: 1;
    
}

.gold-bar {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    margin: 30px auto;
    border-radius: 2px;
}

.presentation h1 {
    font-size: 2.4rem;
    color: white;
    text-align: center;
}

.presentation h3 {
    font-size: 1.5rem;
    color: white;
    text-align: center;
}

.presentation p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #22333b;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 15px;
    transform: translateX(30px);
    transition: all 0.3s ease;
    border: 1px solid white;
}

.cta-button.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-button:hover {
    background-color: #495c65;
}

/* Video wrapper with white border */
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border: 4px solid white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    cursor: pointer;
}

.video-wrapper iframe {
    pointer-events: none; /* important: empêche l'iframe de bloquer le clic */
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: white;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    padding: 10px 20px;
    z-index: 2;
    transition: background 0.3s ease;
}

.video-wrapper:hover .video-overlay {
    background: rgba(0,0,0,0.6);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 4px solid white;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  color: white;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}



/* Modal styles (déjà en partie dans ton code, mais pour rappel complet) */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.video-modal-content {
  position: relative;
  width: 80%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  background-color: black;
  border: 4px solid white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.video-modal iframe {
  width: 100%;
  height: 100%;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: white;
  cursor: pointer;
  z-index: 1;
}

/*  -------------- SECTION PRESENTATION DU COACH -------------------- */
.bold-text {
    font-weight: bold;
}

#sec-pres-coach {
    background-color: white;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 70px;
    padding-bottom: 70px;
}

#sec-pres-coach h3{
    color: #b6b6b6;
    font-size: 15px;
}

#sec-pres-coach p{
    color: #373737;
}

#div-sec-pres-coach {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

#img-coach img {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 300px;
}

#img-coach {
    margin-right: 25px;
}

#text-coach {
    margin-left: 25px;
    width: 700px;
}

.gold-bar2 {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 2px;
}

@media(max-width: 775px){
    #div-sec-pres-coach {
        flex-direction: column;
        align-items: center;
    }
    #img-coach {
        margin-right: 0px;
    }

    #text-coach {
        margin-left: 0px;
        width: 300px;
    }
}

@media(max-width: 500px){
    #img-coach img {
        width: 95%;
    }
}



/*   SECTION DES AVIS   */

#review-section {
    background-image: url("graphics/background-review.jpg");
    padding: 60px 150px;
    display: flex;
    justify-content: center;
}

#review-section .review {
    position: relative;
    background-color: white;
    font-size: 30px;
    padding: 60px 35px 35px 35px; /* + espace en haut pour respirer */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 750px;
}

#review-section .review p {
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.2em;
    font-weight: 500;
    font-size: 21px;
}

/* Cercle citation */
#review-section .quote-icon {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-30%, -30%);
    background: white;
    border-radius: 150%;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

#review-section .quote-icon i {
    font-size: 40px;
    color: #2c3e50;
}

/* Bouton Modifier */
#review-section .btn-edit {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 25px;
    padding: 8px 15px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #3498db;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
}

#review-section .btn-edit:hover {
    background-color: #217dbb;
}

/* Review désactivée (visible uniquement pour admin) */
.inactive-review {
    opacity: 0.5;          /* effet translucide */
    font-style: italic;    /* différencier du texte normal */
    color: #555;           /* gris plus clair */
    position: relative;
}

.inactive-review::after {
    content: " (désactivée)";
    font-size: 14px;
    color: #b00;  /* rouge pour attirer l’attention admin */
    margin-left: 5px;
}


/* Bouton ajouter une review */
.btn-add-review {
    display: inline-block;
    margin-top: 20px;
    padding: 5px 10px;
    background-color: #28a745; /* vert */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.btn-add-review:hover {
    background-color: #218838; /* vert plus foncé */
}







@media(max-width: 850px){
    #review-section {
        padding: 30px 10px;
    }
    #review-section .quote-icon {
        transform: translate(-10%, -30%);
    }
}

@media(max-width: 750px){
    #review-section .review {
        font-size: 20px;
    }
}


/* ----------------- SECTION DU PRICING ---------- */
#pricing-sec {
    background-color: white;
    padding: 30px;
}

#pricing-div-sec {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

#pricing-div {
    display: flex;
    flex-direction: column;
}

#pricing-div img {
    border-radius: 20px;
}

#classic-pack, #six-pack {
    display: flex;
    flex-direction: row;
    margin-left: 30px;
}

#classic-pack {
    margin-bottom: 25px;
}

#six-pack {
    margin-top: 25px;
}

#classic-pack img, #six-pack img{
    width: 100px;
    margin-right: 20px;
}
#classic-pack ul, #six-pack ul{
    margin-right: 20px;
    margin-left: 40px;
}
#classic-pack ul li, #six-pack ul li{
    margin-top: 5px;
}

#pricing-aside-image img {
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 500px;
    margin-right: 20px;
}

@media(max-width: 900px){
    #pricing-div-sec {
        flex-direction: column;
    }
    #pricing-aside-image img {
        margin-right: 0px;
        margin-top: 25px;
    }
}

@media(max-width: 700px){
    #classic-pack, #six-pack {
        flex-direction: column;
    }
    #classic-pack img, #six-pack img{
        width: 90%;
        margin-right: 0px;
        margin-bottom: 30px;
    }
    #classic-pack ul, #six-pack ul{
        margin-right: 20px;
        margin-left: 20px;
    }
    #pricing-aside-image img {
        width: 90%;
        margin-left: 25px;
    }
}






.sec-reservation{
    background-image: url(graphics/blue_bg.PNG);
    text-align: center;
    padding-bottom: 50px;
    
}

.sec-reservation h1{
    color: white;
    padding: 15px;
}

.sec-reservation p{
    color: lightgray;
    padding: 15px;
}

.sec-res-buttons{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.sec-res-buttons a{
    margin-left: 50px;
    margin-right: 50px;
}

#sec-res-services, #sec-res-services:visited{
    color: lightgray;
    text-decoration: underline;
}

.res-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #a47643;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 15px;
    transform: translateX(-30px);
    transition: all 0.3s ease;
    border: 1px solid white;
}

.res-button.visible {
    opacity: 1;
    transform: translateX(0);
}

.res-button:hover {
    background-color: #c19562;
}


#section-offer{
    background-color: white;
    display: flex;
    flex-direction: row;
    padding-bottom: 20px;

}

#section-offer p{
    font-size: 150%;
}

#sec-offer-points{
    display: flex;
    flex-direction: column;
    margin: 50px;
}

.sec-offer-points-boxes{
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
}

.sec-offer-points-boxes-img img{
    height: 150px; /* ajuste selon ton image */
    margin-right: 50px;
}

.sec-offer-points-boxes-img{
    margin-left: 25px;
    
}

#sec-offer-image img{
    height: 300px; /* ajuste selon ton image */
    margin-right: 70px;
    box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.4);
}

#sec-offer-image {
    
    margin-top: 50px;
}

#section-info{
    background-color: rgb(235, 235, 235);
}

#sec-info-global{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-top: 30px;
    padding-bottom: 30px;
}

.sec-info-boxes{
    display: flex;
    flex-direction: row;
    font-size: 100%;
    align-items: center;
}

.sec-info-icon{
    background-color: rgb(201, 201, 201);
    padding: 5px;
    border-radius: 50%;
    margin-right: 15px;
}



/* ---------- PRIVACY ------------ */

#privacy-sec {
    background-color: rgb(240, 240, 240);
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 50px;
    
}


/* -------     FOOTER  --------*/

#footer{
    background-color: #22333b;
}

#div-footer{
    display: flex;
    flex-direction: row;
    justify-content: left;
}

.footer-categories{
    padding-left: 100px;
    color: white;
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-categories img{
    height: 100px;
    padding-bottom: 15px;
}

.footer-categories ul {
    width: 100%;
    list-style: none;
}
.footer-categories li {
    padding-top: 2px;
}

.footer-categories li a {
    text-decoration: none;
    color: rgb(163, 163, 163);
    transition: all 0.5s ease;
}

.footer-categories li a:hover {
    color: white;
}

#copyright{
    background-color: #26373e;
    color: rgb(163, 163, 163);
    padding: 15px;
}

#copyright p{
    padding-left: 85px;
}

@media(max-width: 650px){
    #div-footer{
        flex-direction: column;
        justify-content: center;
    }
    .footer-categories{
        padding-left: 30%;

    }
}






/* ------- RESPONSIVE ------- */

@media(max-width: 1000px){
    .hideOnMobile{
        display: none;
    }
}

@media(min-width: 1001px){
    .hideOnPC{
        display: none;
    }
}

@media(max-width: 850px){
    .presentation{
        flex-direction: column;
    } 
}

@media(max-width: 650px){
    .sec-res-buttons{
        flex-direction: column;
    }
}

@media(max-width: 1250px){
    #section-offer{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-bottom: 50px;
    }
    #sec-offer-image img{
        max-width: 95%;
        height:auto;
        margin-left: 2.5%;
        margin-right: 2.5%;
        
    }
    
}
@media(max-width: 600px){
    .sec-offer-points-boxes{
        flex-direction: column;
        align-items: center;
        padding-bottom: 50px;
    }
    .sec-offer-points-boxes img{
        max-width: 100%;
        height:auto;
        margin-right: 0;
    }
    .sec-offer-points-boxes-img{
        margin-left: 0px;
    }
}

@media(max-width: 1100px){
    #sec-info-global{
        flex-direction: column;
        justify-content: space-around;
        padding-left: 25px;
    }
    .sec-info-boxes{
        padding-top: 25px;
    }
}


