/* Styles pour la page Contact */
.contact-form {
    background: #1e1e1e;
    width: 100%;
    max-width: 500px;
    padding: 4%;
    margin: 3em auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(117, 117, 117, 0.1);
}

.contact-form h1 {
    font-size: 24px;
    padding-bottom: 20px;
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    width: 80%;
    padding: 10px;
    margin: 20px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-size: 16px;
}

.contact-form input[type="submit"] {
    text-align: center;
    color: white;
    background-color: #050626;
    border: none;
    font-size: 18px;
    padding: 10px;
}

.contact-form input[type="text"]#name {
    text-transform: uppercase;
}

iframe {
    width: 100%;
    height: 500px;
}

/* 🔹 Responsive Design */
@media (max-width: 768px) {
    .contact-form {
        margin: 1em;
        max-width: fit-content;
    }
}

/* 🌌 Fond étoilé animé */
@keyframes twinkling {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

.stars {
    position: fixed;
    width: 100%;
    height: 100%;
    background: transparent;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: -1;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    opacity: 0.3;
    animation: twinkling 1.5s infinite alternate ease-in-out;
}

/* Génération aléatoire des étoiles */
.star:nth-child(odd) {
    animation-duration: 1.5s;
}

.star:nth-child(even) {
    animation-duration: 2.5s;
}