body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: #333;
}

:root {
    --primary-color: #b22222;
    --text-color: #333;
    --background-light: #f8f8f8;
}

body {
    font-size: 16px;
}

h1 { font-size: 26px; }
h2 { font-size: 22px; }
h3 { font-size: 18px; }


.recipe-title {
    font-size: 28px;
}

/* FOOTER GLOBAL */
.site-footer {
    width: 100%;
    margin-top: 60px;
    font-family: Arial, sans-serif;
}

/* ========================= */
/* 🔴 BANDEAU ROUGE */
/* ========================= */

.footer-top {
    background-color: #b22222;
    color: white;
    padding: 40px 60px;
}

.footer-brand h2 {
    margin: 0;
    font-size: 22px;
}

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

.social-icons a {
    color: white;
    font-size: 20px;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
}

/* ========================= */
/* ⚫ BANDEAU NOIR */
/* ========================= */

.footer-bottom {
    background-color: black;
    color: white;
    padding: 40px 60px;
}

.footer-line1 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-separator {
    height: 1px;
    background-color: white;
    margin: 15px 0;
}

.footer-line3 {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    font-size: 14px;
}

.footer-line3 a {
    color: white;
    text-decoration: none;
}

.footer-line3 a:hover {
    text-decoration: underline;
}
