body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #1a1a1a; /* Background proche du noir */
    color: #ffffff;
}

.encart {
    text-align: center;
    color: #ffffff;
}

.logo-circle {
    width: 100px;
    height: 100px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.8); /* Effet lumineux */
    overflow: hidden;
}

.logo {
    width: 80%;
    height: 80%;
    object-fit: cover;
}

.name {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    letter-spacing: 2px;
    color: #ffffff;
}

.contact-cards {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.card {
    display: flex;
    align-items: center;
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 15px 20px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ff8c00;
    color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    margin-right: 15px;
}

.info {
    text-align: left;
}

.title {
    font-size: 14px;
    color: #bbbbbb;
    margin: 0;
}

.detail {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.detail:hover {
    color: #ff8c00;
}
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #1a1a1a; /* Background proche du noir */
    color: #ffffff;
}

.encart {
    text-align: center;
    color: #ffffff;
}



.logo {
    width: 80%;
    height: 80%;
    object-fit: cover;
}

.name {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    letter-spacing: 2px;
    color: #ffffff;
}

.contact-cards {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.card {
    display: flex;
    align-items: center;
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 15px 20px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ff8c00;
    color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    margin-right: 15px;
}

.info {
    text-align: left;
}

.title {
    font-size: 14px;
    color: #bbbbbb;
    margin: 0;
}

.detail {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.detail:hover {
    color: #ff8c00;
}
.logo-circle {
    width: 100px;
    height: 100px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.8);
    overflow: hidden;
    animation: glowing 3s infinite alternate ease-in-out;
}

/* Animation de l'ombre */
@keyframes glowing {
    0% {
        box-shadow: 0 0 15px rgba(255, 140, 0, 0.8), 0 0 30px rgba(255, 140, 0, 0.6);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 140, 0, 1), 0 0 50px rgba(255, 140, 0, 0.8);
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 140, 0, 0.8), 0 0 30px rgba(255, 140, 0, 0.6);
    }
}