/* STYLE GENERAL DU SITE */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body{
    background-color: #f4f4f4
}

/* PAGE CONTACT */
.contact{
    width:80%;
    margin:50px auto;
    background:white;
    padding:40px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.contact h2{
    text-align:center;
    color:#00205b;
    font-size:40px;
    margin-bottom:10px;
}

.contact p{
    text-align:center;
    margin-bottom:40px;
    color:#555;
}

.contact-form{
    width:100%;
}

.ligne{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.input-box{
    flex:1;
    display:flex;
    flex-direction:column;
}

.input-box label{
    margin-bottom:8px;
    font-weight:bold;
    color:#00205b;
}

.input-box input{
    padding:15px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;
}

.input-box textarea{
    padding:15px;
    border:1px solid #ccc;
    border-radius:8px;
    resize:none;
    font-size:16px;
}

.contact button{
    margin-top:25px;
    width:100%;
    padding:18px;
    background:#00205b;
    color:white;
    border:none;
    border-radius:8px;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.contact button:hover{
    background:#FFD700;
    color:black;
}

/* Responsive */
@media(max-width:768px){
    .ligne{
        flex-direction:column;
    }

    .contact{
        width:95%;
    }
}

/* FOOTER */
footer{
    background-color: #00205b;
    color: white;
    padding: 40px 20px;
}

.footer-container{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-box{
    width: 220px;
    margin: 15px;
}

.footer-box h3{
    color: #ffd700;
    margin-bottom: 15px;
}

.footer-box p{
    margin: 8px 0;
    cursor: pointer;
}

.footer-box p:hover{
    color: #ffd700;
}

/* Réseaux sociaux */
.social a{
    color: white;
    text-decoration: none;
    margin-right: 10px;
}

.social a:hover{
    color: #ffd700;
}

/* Copyright */
.copyright{
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid white;
}

/* RESPONSIVE TELEPHONE */
@media(max-width:900px){
    .navbar{
        flex-direction: column;
    }

    .menu{
        flex-direction: column;
        text-align: center;
        margin-top: 20px;
    }

    .menu li{
        margin: 10px;
    }

    .footer-container{
        flex-direction: column;
        align-items: center;
    }
}