/* Contact Form Styles */
.contact-form {
    max-width: 700px;
    margin: 50px auto;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1); /* Transparence pour s'harmoniser avec l'arrière-plan */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.contact-form h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #ffcc00;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-size: 18px;
    margin-bottom: 8px;
    display: block;
    color: #ffcc00;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: rgba(255, 255, 255, 0.2); /* Arrière-plan légèrement transparent */
    color: #fff;
    box-sizing: border-box;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: #ffcc00;
    outline: none;
    background-color: rgba(255, 255, 255, 0.3);
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: #aaa;
}

/* Style pour le bouton de soumission */
.contact-form .btn-submit {
    padding: 12px;
    background-color: #ffcc00;
    color: #000;
    font-size: 1.1em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.contact-form .btn-submit:hover {
    background-color: #e6b800;
}

/* Messages de succès et d'erreur */
.contact-form .error,
.contact-form .success {
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.1em;
    border-radius: 8px;
}

.contact-form .error {
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border: 1px solid #ff0000;
}

.contact-form .success {
    background-color: rgba(0, 255, 0, 0.1);
    color: #008000;
    border: 1px solid #008000;
}

/* Contact Info Section */
.contact-info {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.contact-info h2 {
    font-size: 28px;
    color: #ffcc00;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 18px;
}

.contact-info a {
    color: #ffcc00;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .contact-form {
        width: 90%;
    }

    .contact-info {
        width: 90%;
    }

    .contact-form h2 {
        font-size: 28px;
    }

    .contact-info h2 {
        font-size: 24px;
    }
}
