
/* Structure principale clotilde */
.footer {
    width: 100%;
    background-color: #222;
    color: #fff;
    padding: 20px 20px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Grille 2x2 */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Boîtes individuelles */
.footer-box {
    display: flex;
    flex-direction: column;
}

.footer-box h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #f2f2f2;
}

.footer-box p, 
.footer-box a {
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    gap: 5px;
    color: #ccc;
    text-decoration: none;
}

.footer-box a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Formulaire */
.footer-box form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.footer-box input[type="email"] {
    padding: 8px;
    border: none;
    border-radius: 4px;
}

.footer-box button {
    padding: 8px;
    background-color: #444;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.footer-box button:hover {
    background-color: #666;
}

/* Bas du footer */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 13px;
    color: #aaa;
}

.small-icon {
  max-height: 20px;
  margin-top: 1px;
  height: auto;
  width: auto;
}
