/* Global Styles */
@font-face {
    font-family: 'Nok';
    src: url('fonts/Nok.woff2') format('woff2'),
         url('fonts/Nok.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #fff;
}

.text-orange {
    color: #e67e22;
    font-family: 'Nok';
    letter-spacing: 2px;
    font-size: 4vw;
}
.text-orange-footer {
    color: #e67e22;
    
    font-size: 1.3vw;
}
.text-orange-footer { color: #e67e22; font-size: 1.3vw;font-family:'Nok',Arial, sans-serif; }
.social-icon { color: #6c757d; font-size: 1.5rem; transition: color 0.3s ease-in-out; }
.social-icon:hover { color: #e67e22; }
.text-footer{
    color: #6c757d;
    font-family: Arial, sans-serif;
    letter-spacing: 2px;
    font-size: 4vw;
}
.text-blanc {
    color: white;
    font-family: 'Nok';
    letter-spacing: 2px;
    font-size: 4vw;
}

.btn-outline-orange {
    border: 2px solid #e67e22 !important;
    color: #e67e22 !important;
    transition: 0.3s !important;
}

.btn-outline-orange1 {
    border: 2px solid white !important;
    color: white !important;
    transition: 0.3s !important;
}
.btn-outline-orange1:hover {
    border: 2px solid white !important;
    background-color: white !important;
    color: #e67e22 !important;
    transition: 0.3s !important;
}
#map {
    width: 400px;
    height: 400px;

}
.container {
    width: 100vw; /* Permet aux sections enfants d'occuper toute la largeur */
    max-width: none;
    padding: 0;
}
#place {
    background-color: #e67e22 !important; /* Définit le fond en orange */
    width: 100vw !important;
    padding: 50px 0; /* Ajoute de l'espace en haut et en bas */
    color: white; /* Change la couleur du texte pour un meilleur contraste */
}

#place p strong div h2 h3 {
    color: white;
}

.btn-outline-orange:hover {
    background-color: #e67e22 !important;
    color: #fff !important;
}

.navbar {
    border-bottom: none;
}
.navbar-icons a {
    color: #6c757d; /* Gris par défaut */
    font-size: 20px; /* Taille des icônes */
    margin-left: 15px; /* Espacement entre les icônes */
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.navbar-icons a:hover {
    color: #ff6600; /* Orange au survol */
}


/* Card Styling */
.card {
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    margin-top: 10px;
}

.card:hover {
    transform: translateY(-5px);
}

/* Footer Styling */
footer {
    background-color: #f8f9fa;
    padding: 20px 0;
}

/* Image Styling */
.img-fluid {
    max-width: 600px;
}
.typing-container1 {
    font-size: 3rem;
    white-space: pre-line;
    overflow: hidden;
    padding-right: 5px;
    width: fit-content;
    color: #e67e22;
    animation: blink-cursor 0.8s steps(2, start) infinite;
    text-align: center;
}

.typing-container {
    font-size: 24px;
    white-space: nowrap;
    overflow: hidden;
    padding-right: 5px;
    width: fit-content;
    color: #e67e22;
    border-right: 3px solid #e67e22 !important;
    animation: blink-cursor 0.8s steps(2, start) infinite;
    text-align: center;
}

.social-icons a {
    text-decoration: none; /* Supprime tout soulignement éventuel */
    margin: 0 10px; /* Ajuste l'espacement entre les icônes */
    display: inline-block; /* Assure une disposition en ligne sans tirets */
}

.social-icons i {
    font-size: 24px; /* Ajuste la taille des icônes */
    color: white; /* Assure que les icônes restent blanches */
}

@keyframes blink-cursor {
    50% {
        border-color: transparent;
    }
}

.team-section {
    width: 100%;
    padding: 20px;
}

.team-section .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.card-portrait {
    max-width: 350px;
    margin: 20px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-portrait img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #ff7f50;
}

.card-portrait .card-body {
    padding: 15px;
    text-align: center;
}

.card-portrait h3 {
    margin: 10px 0 5px;
    color: #ff7f50;
}

.card-portrait p {
    font-size: 14px;
    color: #666;
}

.form-label {
font-weight: bold;
color: #e67e22;
}
/* Changer la couleur du contour en bleu */
input.form-control, 
textarea.form-control {
    border-color: grey; /* Couleur bleue */
    border-width: 2px; /* Épaisseur du contour */
}

/* Changer la couleur du contour lors du focus */
input.form-control:focus, 
textarea.form-control:focus {
    border-color: #e67e22; /* Couleur orange */
    box-shadow: 0 0 5px rgba(255, 102, 0, 0.5); /* Légère lueur autour */
    outline: none; /* Supprime le contour par défaut */
}
.checkbox-custom {
    border: 2px solid grey;
    width: 20px;
    height: 20px;
}
.checkbox-custom:checked {
    border-color: #e67e22;
    background-color: #e67e22;
}
.typing-div {
    position: relative;
    height: 100%;
    min-height: 550px; /* Défini une hauteur minimale pour éviter que l'image ne se chevauche avec le contenu dynamique */
    overflow: hidden;
}

.typing-container1,
.typing-container {
    margin-bottom: 20px; /* Pour laisser de l'espace au-dessus de l'image */
}
.col1{
    height: auto;
    display: block;
    width: 313px;
}

.typing-div img {
    padding-top: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1; /* Si tu veux que l'image soit en arrière-plan */
}

/* Footer Styles */
.bg-orange {
    background-color: #e67e22;
}

footer p {
    margin: 0;
    font-size: 1rem;
    color: white;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #333;
}
#atelierModalLabel {
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 90%;
}
    
@media (max-width:780px){
    .img-fluid {
        max-width: 430px;
    }
    p {
        padding: 3%;
    }
    .text-orange {
        color: #e67e22;
        font-family: 'Nok';
        letter-spacing: 2px;
        font-size: 10vw;
        text-align: center;
    }
    .text-orange-footer {
        color: #e67e22;
        font-family: 'Nok', Arial, sans-serif;
        font-size: 5.3vw;
        text-align: center;
    }
    .text-blanc {
        color: white;
        font-family: 'Nok';
        letter-spacing: 2px;
        font-size: 10vw;
        text-align: center;
}
.navbar-icons a {
    color: #6c757d; /* Gris par défaut */
    font-size: 20px; /* Taille des icônes */
    margin-left: 15px; /* Espacement entre les icônes */
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    display: none;
}
}