cont
/* Styles de base pour HTML et body */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #3a256b;
    text-align: left;
    background-color: #fff;
}

/* Conteneur principal */
.container-fluid {
    flex: 1 0 auto;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Variables de couleur */
:root {
    --blue: #002bff;
    --indigo: #661d72;
    --purple: #64d2c1;
    --pink: #e838dc;
    --red: #e82845;
    --orange: #f67e14;
    --yellow: #f47c19;
    --green: #28a295;
    --teal: #28c597;
    --cyan: #17a2ba;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #800fb; /* Note: cette couleur semble avoir une faute de frappe */
    --secondary: #6c757d;
    --success: #28a745;
}
/* Footer */
.footer {
    flex-shrink: 0;
    width: 100vw;
    margin: 0;
    padding: 15px 20px; /* Espacement interne cohérent avec la nav */
    background-color: #2c2c2c; /* Fond gris foncé/noir */
    text-align: center;
    border: none; /* Suppression de la bordure blanche */
    border-radius: 5px; /* Bordures arrondies légères */
    box-sizing: border-box;
}

.footer .footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer a {
    color: transparent; /* Rendu transparent pour le dégradé */
    text-decoration: none;
    text-transform: uppercase; /* Majuscules */
    font-family: Arial, sans-serif;
    margin: 0 10px; /* Espacement entre les liens */
    background: linear-gradient(90deg, #6B48FF, #00DDEB);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); /* Effet subtil */
}

.footer a:hover {
    background: linear-gradient(90deg, #ffcc00, #ffcc00); /* Dégradé fixe au survol */
    -webkit-background-clip: text;
    background-clip: text;
}

.footer p {
    color: transparent; /* Rendu transparent pour le dégradé */
    margin: 0;
    font-family: Arial, sans-serif;
    text-transform: uppercase; /* Majuscules pour le texte */
    font-size: 14px; /* Taille ajustée pour correspondre */
    background: linear-gradient(90deg, #6B48FF, #00DDEB);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); /* Effet subtil */
}
/* Navigation */
nav {
    position: fixed !important;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    margin: 0;
    padding: 15px 20px; /* Ajusté pour un espacement interne */
    background-color: #2c2c2c; /* Fond gris foncé/noir */
    border: none; /* Suppression de la bordure blanche */
    border-radius: 5px; /* Bordures arrondies légères */
  
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    width: 100%;
}

nav ul li {
    margin: 0 15px; /* Espacement entre les éléments */
    font-size: 16px; /* Taille de police ajustée pour correspondre */
    color: #ffffff; /* Texte blanc */
    text-transform: uppercase; /* Majuscules */
    font-family: Arial, sans-serif; /* Police sans serif */
}

nav ul li a {
   text-decoration: none;
            font-size: 17px;
            background: linear-gradient(90deg, #6B48FF, #00DDEB);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

nav ul li a:hover {
    color: #ffcc00; /* Couleur au survol, comme dans ton style précédent */
}

    .service ul {
        list-style-type: none;
    }

 .service ul li { /* Plus spécifique que .service li */
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #555;
    position: relative;
    padding-left: 15px;
    display: block !important; /* Ajout de !important pour le test */
}
    .service li:before {
        content: "•";
        color: #3498db;
        position: absolute;
        left: 0;
    }

.login-inside-nav {
    position: absolute;
    top: 0;
    right: 0.5px;
    z-index: 10;
}

#login-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

#logout-icon,
#logout-video {
    width: 40px;
    height: 40px;
}

#logout-video {
    object-fit: cover;
    vertical-align: middle;
}

     #chat {
            position: fixed; /* Fixe l'image par rapport à la fenêtre */
            top: 0;
            left: 0;
            width: 100vw; /* Prend 100% de la largeur de la fenêtre */
            height: 100vh; /* Prend 100% de la hauteur de la fenêtre */
            object-fit: cover; /* S'assure que l'image couvre sans déformer */
            z-index: -1; /* ENVOIE L'IMAGE EN ARRIÈRE-PLAN pour qu'elle ne recouvre pas le contenu */
            opacity: 0; /* Initialement invisible, pour la transition fade-in */
            transition: opacity 1s ease-in-out; /* Animation de fondu */
        }
        
          #chat.fade-in {
            opacity: 1; /* Rends l'image visible */
        }

/* Conteneur de boutons */
.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.button-container .btn {
    margin: 0;
}

@media (max-width: 576px) {
    .button-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Élément client */
#client {
    text-align: center;
    margin: 20px auto;
    max-width: 400px;
    background-color: white;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
    #client {
        max-width: 90%;
        padding: 8px 15px;
    }
}

/* Animation fade-in */
.fade-in {
    opacity: 1 !important;
}

/* Conteneur de la table */
.table-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 90px;
}

/* Style des tables */
.table-base {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.95);
}

#kamel {
    @extend .table-base;
    border: 3px solid white;
}

#kamel th {
    font-size: 16px;
    color: black;
    padding: 12px;
    background-color: #f8f9fa;
    border-bottom: 2px solid gold;
}

#kamel td {
    font-size: 16px;
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

#kamel tr:hover {
    background-color: #f1f1f1;
}

#tarifs {
    @extend .table-base;
    border: 3px solid #FF00FF;
}

#tarifs thead th {
    background-color: rgba(255, 255, 255, 0.95);
    color: black;
    font-size: 20px;
    padding: 12px;
    border-bottom: 2px solid gold;
    text-align: center;
    font-weight: normal;
}

#tarifs td {
    font-size: 14px;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
}

#tarifs tr:hover {
    background-color: #f1f1f1;
}

@media (max-width: 768px) {
    #tarifs {
        border: none;
    }

    #tarifs thead {
        display: none;
    }

    #tarifs tbody tr {
        display: block;
        margin-bottom: 20px;
        border: 2px solid gold;
        border-radius: 8px;
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    #tarifs tbody td {
        display: block;
        text-align: left;
        padding: 10px;
        border: none;
        border-bottom: 1px solid #ddd;
        font-size: 14px;
        position: relative;
        padding-left: 50%;
    }

    #tarifs tbody td:last-child {
        border-bottom: none;
    }

    #tarifs tbody td:before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        font-weight: bold;
        color: #8b1c2a;
        font-size: 14px;
    }
}

/* Ajustement du bouton "Charger plus" */
#load-more {
    display: block;
    margin: 20px auto;
}

/* Hover pour les liens de la navbar */
.navbar-nav .nav-link:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

/* Icône de la page d’accueil */
#home-icon {
    width: 70px;
    height: 70px;
    margin-right: 10px;
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #3498db;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #2980b9;
}

/* Polices personnalisées */
@font-face {
    font-family: "Imperial";
    src: url("<?php echo SCRIPTS_fonts; ?>Imperial.ttf") format("truetype");
   
}

@font-face {
    font-family: "OldLondon";
    src: url("<?php echo SCRIPTS_fonts; ?>OldLondon.ttf") format("truetype");
    
}

@font-face {
    font-family: "Khiara";
    src: url("<?php echo SCRIPTS_fonts; ?>Khiara.woff2") format("opentype");
    font-weight: normal;
    font-style: normal;
    
}

.OldLondon {
    font-family: "OldLondon", "Times New Roman", serif;
}

.Khiara {
    font-family: "Khiara", "Times New Roman", serif;
    color: red;
    font-size: 105px;
}

.Imperial {
    font-family: "Imperial", "Times New Roman", serif;
    font-size: 10em;
    color: rgb(15, 248, 65);
    border: 2px solid rgb(41, 39, 39);
}

/* Effet hover pour les boutons et inputs */
button:hover,
input[type="submit"]:hover,
input[type="text"]:hover,
input[type="search"]:hover {
    background-color: rgb(89, 69, 160);
}

/* Conteneur de recherche */
.search-container {
    display: none;
    position: relative;
    width: 50%;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px;
    top: 10px;
}

.search-container.visible {
    display: block;
}

#searchInput {
    border: none;
    outline: none;
    flex-grow: 1;
    padding: 5px;
}

#searchButton {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

#searchButton img {
    width: 150px; /* Augmenté de 70px à 100px, ajuste selon ton besoin */
    height: 150px; /* Augmenté de 70px à 100px */
    transition: transform 0.2s; /* Ajout d'une transition pour un effet smooth */
}

#searchButton:hover img {
    transform: scale(1.1); /* Effet de zoom au survol (optionnel) */
}

/* Classe pour cacher des éléments */
.hidden {
    display: none;
}


/* Style du formulaire */
.form-container-formulaire {
    width: 100%;
    max-width: 500px;
    margin: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid #FF00FF;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.form-container-formulaire h2 {
    font-family: 'Kingsguard', Arial, sans-serif;
    font-size: 1.5em;
    margin: 0 0 20px;
    color: #333;
    text-align: center;
}

/* Style des groupes de champs */
.form-container-formulaire .form-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
}

/* Style des labels */
.form-container-formulaire label {
    display: inline-block;
    width: 150px;
    font-family: 'Kingsguard', Arial, sans-serif;
    font-size: 1em;
    color: #333;
    margin-right: 10px;
}

/* Style des inputs, textarea, et select */
.form-container-formulaire input,
.form-container-formulaire select,
.form-container-formulaire textarea {
    flex: 1;
    min-width: 0;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 1em;
    font-family: 'Khiara', Arial, sans-serif;
    box-sizing: border-box;
}

/* Masquer les suggestions d’autocomplétion */
.form-container-formulaire input::-webkit-calendar-picker-indicator,
.form-container-formulaire input::-webkit-clear-button,
.form-container-formulaire input::-webkit-inner-spin-button,
.form-container-formulaire input::-webkit-outer-spin-button {
    display: none;
}

/* Supprimer l’apparence par défaut des navigateurs */
.form-container-formulaire input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Personnalisation de la flèche pour le select */
.form-container-formulaire select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    padding-right: 30px;
}

/* Supprime la flèche par défaut sur Internet Explorer/Edge */
.form-container-formulaire select::-ms-expand {
    display: none;
}

/* Style spécifique pour le textarea */
.form-container-formulaire textarea {
    height: 100px;
    resize: vertical;
}

/* Style des inputs en lecture seule */
.form-container-formulaire input[readonly] {
    background-color: #f8f9fa;
    border-color: #ddd;
}

/* Style du bouton */
.form-container-formulaire button,
.form-container-formulaire .btn {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 20px auto 0;
    padding: 10px;
    background-color: #007bff;
    color: white;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 3px;
    font-family: 'Kingsguard', Arial, sans-serif;
    font-size: 1em;
    cursor: pointer;
}

.form-container-formulaire button:hover,
.form-container-formulaire .btn:hover {
    background-color: #0056b3;
}

/* Style du message d’erreur */
.form-container-formulaire .error {
    color: red;
    font-size: 0.9em;
    margin-top: 10px;
    text-align: center;
    font-family: 'Kingsguard', Arial, sans-serif;
}

/* Responsive : Ajustements pour mobile */
@media (max-width: 600px) {
    .form-container-formulaire {
        max-width: 90%;
        padding: 15px;
    }

    .form-container-formulaire .form-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-container-formulaire label {
        width: 100%;
        margin-bottom: 5px;
        margin-right: 0;
    }

    .form-container-formulaire input,
    .form-container-formulaire select,
    .form-container-formulaire textarea {
        width: 100%;
    }

    .form-container-formulaire button,
    .form-container-formulaire .btn {
        max-width: 100%;
    }
}

/* Conteneur de contenu */
.content {
    min-height: 90vh;
}

/* Centrage générique */
#centrer {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Styles pour h1 */
h1 {
    text-align: center;
    margin-top: 70px;
    margin-bottom: 30px;
    color: black;
    text-shadow: none;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 5px 15px;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    max-width: 90%;
    font-size: 1.8em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.chat2.fade-in {
    opacity: 1;
}






