/* public/css/accueil.css */

/* Style général */
body {
    font-family: Arial, sans-serif;
    background-image: url('../../image/accueil2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    touch-action: none;
    -moz-user-select: none; /* Firefox */
    -webkit-user-select: none; /* Chrome, Safari, Opéra depuis la version 15 */
    -ms-user-select: none; /* Internet explorer depuis la version 10 et Edge */
    user-select: none; /* Propriété standard */
}

.title-accueil {
    font-size: 55px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: rgb(240, 246, 254);
    text-transform: uppercase;
    letter-spacing: 4px;
}
.sous-title{
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: rgba(234, 53, 88, 0.98);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.62); /* Ajoute une ombre blanche */

}

.btn-group-accueil {
    position: relative;
    display: flex;
    justify-content: center;
    width: 80%;
    margin: 0 auto;
    margin-top: 20px;
}
/* Styles des boutons */
 .btn-visiteur, .btn-intervenant, .btn-entree, .btn-sortie {
    box-sizing: content-box;
    width: 100%;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 20px;
    padding: 20px ;
    font-size: 30px;
    color: #ffffff;
    border-radius: 30% 10%;

}

.btn-visiteur, .btn-entree {
    background-color: rgb(16, 53, 91, 0.9) !important;
}

.btn-intervenant, .btn-sortie {
    background-color: rgba(187, 41, 78, 0.9) !important;
}


.btn-visiteur:hover, .btn-intervenant:hover, .btn-entree:hover, .btn-sortie:hover {
    text-decoration: none !important;
    color: #FFFFFF;
    opacity: 0.9;
}

.logo-img {
    max-width: 250px;
    max-height: 100px;
    margin: 10px 0 0 10px;
    position: absolute;
    top: 10px;
    left: 10px;
}
.white-text {
    color: rgb(255, 255, 255);
    font-size: 22px;
    letter-spacing: 2px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
}

#datetime-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 10px;
}

.full-screen-card{
    width: 100%;
    max-height: 11%;
    position: fixed;
    top: 15%;
    left: 0;
    background-color: rgb(255, 255, 255, 0.1);
    overflow: hidden;
}
.message-actif-card {
    display: inline-block;
    border: none;
    background-color: rgba(255, 255, 255, 0);
    overflow: hidden;
    white-space: nowrap;
}

.message-actif-text {
    box-sizing: border-box;
    font-weight: bold;
    height: 100%;
    width: 100%;
    color: #ffffff;
    font-size: 55px;
    letter-spacing: 2px;
    padding: 5px 5px;
}


@media (max-width: 1110px) {
    .title-accueil {
        font-size: 30px;
    }
    .sous-title{
        font-size: 20px;
    }
    .btn-entree, .btn-sortie, .btn-visiteur, .btn-intervenant {
      font-size: 20px;
    }

    .white-text {
        font-size: 16px;
    }

    .message-actif-text {
        font-size: 20px;
    }
}

