/* ==============================
   VARIABLES (BASE PRO)
============================== */
:root {
    --color-black: #111;
    --color-text: #000;
    --color-text-soft: #333;

    --color-accent: #ff9800;
    --color-accent-light: #ffb300;

    --radius-main: 14px;
    --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* ==============================
   BASE
============================== */
body {
    font-family: "Roboto", serif;
    background: #fff;
    color: var(--color-text);
}

ul {
    margin: 50px;
}

/* ==============================
   HEADER
============================== */
header .logo {
    padding: 1.5rem 1rem;
    min-height: 120px;
    background: transparent;
    text-align: center;

    clip-path: polygon(50% 0%, 200% 0, 50% 200%, 0 0);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Barre noire décorative */
#header {
    position: relative;
}

#header .top-black-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: #000;
    z-index: 9999;
}

/* ==============================
   MENU
============================== */
.gb_navigation ul li a {
    font-size: 20px;
}

/* ==============================
   HERO / FEATURED IMAGE
============================== */
#blog-content .featured-img,
#service-page .featured-img,
#skip-content .featured-img {
    position: relative;
    margin-bottom: 50px;
    background: var(--first-color);
    height: 600px;
}

#blog-content .featured-img img,
#service-page .featured-img img,
#skip-content .featured-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    opacity: 0.5;
}

body.home .featured-img {
    height: 500px;
}

body.home .featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    display: block;
}

/* ==============================
   CADRE ACCUEIL (COMPOSANT)
============================== */
.has-luminous-vivid-amber-background-color {
    background-color: #fff !important;
    border-radius: var(--radius-main);
    padding: 24px 28px;
    box-shadow: var(--shadow-soft);
    border-left: 10px solid var(--color-accent-light);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.has-luminous-vivid-amber-background-color:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Titres */
.has-luminous-vivid-amber-background-color h1,
.has-luminous-vivid-amber-background-color h2,
.has-luminous-vivid-amber-background-color h3 {
    color: var(--color-accent) !important;
    margin-top: 0;
    margin-bottom: 14px;
    font-weight: 600;
}
/* TITRE ROUGE -> JAUNE */
em, cite, q {
    color: #ffb300;
}
.blog-post ul:not(.meta-info) li a, .blog-post ol:not(.meta-info) li a, .blog-post table a, strong a, blockquote a, code a, p a, span:not(.author-name):not(.comments-link):not(.posted-on):not(.post-list) a, .post-content-inner a, .site-content a, .wp-block-heading a {
    color:#ffb300;
}


/* Ligne décorative */
.has-luminous-vivid-amber-background-color h1::after,
.has-luminous-vivid-amber-background-color h2::after,
.has-luminous-vivid-amber-background-color h3::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    background-color: var(--color-accent-light);
    margin-top: 8px;
    border-radius: 2px;
}

/* Texte */
.has-luminous-vivid-amber-background-color p {
    color: var(--color-text-soft);
    line-height: 1.6;
}

.has-luminous-vivid-amber-background-color p:last-child {
    margin-bottom: 0;
}

/* ==============================
   FOOTER
============================== */
.site-footer {
    background-color: var(--color-black);
    color: #fff;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start; /* 👈 toutes les colonnes ont la même hauteur */
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1 1 300px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* 👈 texte commence en haut */
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--color-accent-light);
}

.footer-column p,
.footer-column ul {
    font-size: 14px;
    line-height: 1.5;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s, text-decoration 0.3s;
}

.footer-column ul li a:hover {
    color: var(--color-accent-light);
    text-decoration: underline;
}

/* Icônes réseaux */
.footer-column ul.social-links li a i {
    font-size: 18px;
    color: #fff;
    transition: color 0.3s;
}

.footer-column ul.social-links li a:hover i {
    color: var(--color-accent-light);
}

/* Footer bottom */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    border-top: 1px solid #333;
    padding-top: 15px;
}
.site-footer p,
.site-footer ul {
    margin-top: 0;
}


/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        flex: 1 1 100%;
        text-align: center;
    }

    header .logo {
        height: 80px;
    }

    #header .top-black-bar {
        height: 5px;
    }
}
