/* Header */
.stickhead {
  background-color: transparent !important;
  transition: background-color 0.3s ease !important;
}

.stickhead.scrolled {
  background-color: rgb(0, 0, 0) !important;
  z-index: 9999;
  box-shadow: rgb(20, 20, 20) 0px 20px 30px -10px !important;
}

/* Header noir par défaut sur mobile et tablette */


#mentions-legales {
    background-color: #1a1a1a;
    color: #e5e5e5;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.8;
    padding: 60px 20px;
    font-size: 16px;
}

#mentions-legales {
    margin: 0 auto;
    box-sizing: border-box;
}

#mentions-legales h2 {
    color: #F09B2F;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 50px;
    margin-bottom: 20px;
    border-left: 5px solid #F09B2F;
    padding-left: 15px;
}

#mentions-legales h2:first-of-type {
    margin-top: 0;
}

#mentions-legales p {
    margin-bottom: 20px;
    text-align: justify;
    color: #cccccc;
}

#mentions-legales a {
    color: #F09B2F;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

#mentions-legales a:hover {
    color: #ffffff;
    border-bottom: 1px solid #F09B2F;
}

@media (max-width: 768px) {
    #mentions-legales {
        padding: 40px 15px;
    }
    
    #mentions-legales h2 {
        font-size: 1.5rem;
        padding-left: 10px;
        border-left-width: 4px;
    }
    
    #mentions-legales p {
        text-align: left;
        font-size: 15px;
    }
}

/*---Card terrain---*/

.card-terrain:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}    