body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased; 
    color: #1b1b1b; 
}

h1, h2, h3 {
    font-weight: 700;
    text-transform: uppercase; 
    letter-spacing: 0.05em;    
}

.button-uniqlo {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    background-color: #ff0000; 
    color: white;
    padding: 10px 20px;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
}


.bandeau-rouge-uniqlo h1 {
    color: black;
    text-align: center;
    font-size: 40px; /* N'oublie pas le 'px' ! */
    margin: 0;
    text-transform: uppercase;
}

.selection-services {
    display: flex;
    flex-direction: row;          
    justify-content: center;       
    align-items: center;
    gap: 50px; 
    padding: 60px 20px;
    width: 100%;
}

.bouton-service img {
    height: 150px; 
    width: auto; 
    border: 2px solid #ff0000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bouton-service img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2); 
}

p
{
text-align: center;
}

H2
{
text-align: center;
}

.map-wrapper {
    position: relative; 
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border: 5px solid #ff0000; 
}

.fond-carte {
    width: 100%;
    display: block;
    filter: grayscale(50%); 
}

.point-conducteur {
    position: absolute;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.avatar-map {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #ff0000;
    background-color: white; 
    display: flex;           
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 22px;
    color: #ff0000;
    overflow: hidden;     
}

.map-wrapper {
    position: relative; 
    max-width: 1200px; 
    height: auto;      
    margin: 0 auto;
    border: 5px solid #ff0000; 
    box-sizing: border-box; 
    overflow: visible; 
}
.carte-container {
    text-align: center; 
    width: 100%;
}

.tooltip {
    display: none;
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 10px;
    border: 1px solid #ccc;
    width: 150px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


.point-conducteur:hover .tooltip {
    display: block;
}

.point-conducteur:hover {
    transform: scale(1.2); 
 } 
    
    
.point-locaux {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 20; 
    display: flex;
    flex-direction: column;
    align-items: center;
}


.point-rouge-fixe {
    width: 15px;
    height: 15px;
    background-color: #ff0000; 
    
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    position: relative;
}


.bandeau-rouge-uniqlo {
    background-color: #ff0000; 
    padding: 40px 20px;       
    text-align: center;       
    border-radius: 5px;        
    width: 100%;              
    box-sizing: border-box;    
}

nav a { 
    text-decoration: none; 
    color: #000000;
    font-weight: bold;
    padding :0 8px;
    font-size: 22px;
    }
    
nav a:hover { 
color: #ff0000
  }
  
.formulaire-inscription {
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
    border: 2px solid #ff0000;
    text-align: center;
}

.formulaire-inscription input {
    display: block;
    width: 90%;
    margin: 10px auto;
    padding: 10px;
    border: 1px solid #ccc;
}

.formulaire-inscription button {
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

.formulaire-inscription button:hover {
    background-color: black;
}

.btn-mini, .btn-contact-js {
    display: block !important;
    width: 100% !important;
    background-color: #ff0000 !important;
    color: white !important;
    border: none !important;
    padding: 8px 0 !important;
    margin-top: 10px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    text-align: center !important;
    text-decoration: none !important;
    font-size: 12px !important;
    cursor: pointer !important;
    transition: background 0.3s !important;
}

.btn-mini:hover, .btn-contact-js:hover {
    background-color: #000000 !important;
}



.admin-controls button {
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 10px 20px;
    text-transform: uppercase;
    transition: 0.3s;
}

.admin-controls button:hover {
    background-color: #ff0000;
    border-color: #ff0000;
}

.container {
      width: 1000px;
      height: 500px;
      text-align: center;
      margin: 50px auto;
      display: block;
    }
    

.header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
    }

button {
      cursor: pointer;
      padding: 5px 10px;
      font-size: 16px;
    }

.month-title {
      font-size: 30px;
      font-weight: bold;
      text-transform: capitalize;
    }

.weekdays {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      font-size: 12px;
      color: gray;
      margin-bottom: 5px;
    }

.days {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 5px;
    
    }

.day {
      border: 1px solid #ddd;
      height: 100px;
      border-radius: 6px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      font-size: 16px;
      position: relative 
    }
    
.day div:first-child {
    position: absolute;
    top: 5px; 
    right: 6px; 
    font-size: 10px;

}
.day:hover {
      background-color: #f0f0f0;
    }

    .today {
      background-color: #4da3ff;
      color: white;
    }

.name {
      font-size: 18px;
      color: red;
      width: 100%;
      background-color: rgba(255, 0, 0, 0.15);
    }

.empty {
      border: none;
      cursor: default;
    }

.footer-links a  { 
    text-decoration: none; 
    display: block;
    margin: 5px 0; 
    color: #000000
    
    }
 .account-card {
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
    border: 2px solid #ff0000;
    text-align: center;
}

.account-card input {
    display: block;
    width: 90%;
    margin: 10px auto;
    padding: 10px;
    border: 1px solid #ccc;
}

.account-card button {
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}   

.faq-section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
        }
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
        }
.faq-question {
    color: #ff0000;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
        }
.faq-answer {
    font-size: 15px;
    color: #333;
    text-align: left;
    line-height: 1.5;
        }
    
.support-card {
    background-color: #f9f9f9;
    border-left: 5px solid #ff0000;
    padding: 15px;
    margin: 20px auto;
    max-width: 600px;
        }
        
.icon-social {
    transition: transform 0.3s ease, filter 0.3s ease;
    border-radius: 8px; 
}

.icon-social:hover {
    transform: scale(1.2); 
    filter: brightness(1.2);
}

.footer-links a {
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

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


.video-container {
    display: flex;
    justify-content: center; 
    margin: 40px 0;          
    width: 100%;
}

.video-container video {
    border: 3px solid #ff0000; 
    max-width: 90%;            
    height: auto;
}