/* Import des variables du projet */
@import url("./root.css");

/* .profil-form
{
    margin: 0 auto;
    width: 50%;
} */

.profil-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', sans-serif;
}

.profil-form h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #333;
}

.profil-form .form-group {
    margin-bottom: 1.2rem;
}

.profil-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #444;
}

.profil-form input[type="text"],
.profil-form input[type="email"],
.profil-form input[type="password"] {
    width: 100%;
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    transition: border 0.3s;
}

.profil-form input:focus {
    border-color: #007BFF;
    outline: none;
}

.btn-container {
    width: 100%;
    padding: 0;
    border: none;
    background: none;
}

.view-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background-color: var(--orange-color);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.view-more-btn:hover {
    background-color: var(--orange-color-bold);
}

/* Responsive */
@media (max-width: 768px) {
    .profil-form {
        padding: 1.5rem;
    }

    .profil-form h2 {
        font-size: 1.5rem;
    }

    .view-more-btn {
        font-size: 0.95rem;
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    .profil-form {
        padding: 1rem;
    }

    .profil-form h2 {
        font-size: 1.3rem;
    }

    .view-more-btn {
        flex-direction: column;
        gap: 0.2rem;
    }
}

/* Bannière Contact */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.contact-hero .hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-hero .hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grille de contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 50px 0;
}

.contact-form, .contact-info {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h2, .contact-info h2 {
    font-size: 1.5rem;
    color: var(--black-blue-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

/* Formulaire */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--black-blue-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange-color);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    background: linear-gradient(90deg, var(--orange-color), var(--green-color));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
    gap: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Informations de contact */
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    background-color: rgb(248, 249, 250);
    border-radius: 5px;
    padding: 10px;
}

.info-card i {
    font-size: 1.5rem;
    color: var(--orange-color);
    margin-top: 5px;
}

.info-card h3 {
    font-size: 1.1rem;
    color: var(--black-blue-color);
    margin-bottom: 5px;
}

.info-card p {
    color: var(--dark-color);
    line-height: 1.6;
}

.social-links {
    margin-top: 40px;
}

.social-links h3 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gray-light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-blue-color);
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--orange-color);
    color: white;
    transform: translateY(-3px);
}

.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Carte */
.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 300px;
    }

    .contact-hero .hero-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .contact-form, .contact-info {
        padding: 20px;
    }

    .info-card {
        flex-direction: column;
        gap: 10px;
    }
}
