:root {
    --bg-creme: #f8f0ec;
    --rose-ellise: #e42b62;
    --vert-profond: #1a4731;
    --bleu-soft: #779acb;
}

body {
    margin: 0; padding: 0;
    font-family: 'Comfortaa', sans-serif;
    background-color: var(--bg-creme);
}

/* SECTION BANNIERE + MENU PAR-DESSUS */
.hero-section {
    width: 100%;
    /* CORRECTIF BANNIÈRE : Même hauteur et comportement que Site Google */
    height: 350px; 
    background-image: url('assets/banniere.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.google-header {
    width: 100%;
    /* CORRECTIF BUG DIMENSION HAUT : Hauteur réduite pour le menu */
    height: 70px;
    display: flex;
    align-items: center;
    background: transparent; /* Menu transparent */
    position: absolute; /* Place le menu au-dessus */
    top: 0; left: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 0 5%;
    box-sizing: border-box;
}

.logo-main {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* CORRECTIF DIMENSION LOGO & TEXTE MENU */
.logo-main img {
    height: 35px; /* Analyse Screenshot : Icon plus petit */
}

.brand-name {
    color: var(--vert-profond);
    font-size: 1.2rem; /* Analyse Screenshot : Texte plus petit */
    margin-left: 10px;
}

.desktop-menu a {
    text-decoration: none;
    color: var(--vert-profond);
    margin-left: 20px;
    font-size: 0.9rem; /* Analyse Screenshot : Texte plus petit */
}

/* ZONE APPELS À L'ACTION (Panier & Cloche) */
.cta-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
}

.cta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--vert-profond);
    font-size: 0.8rem;
    background: none; border: none; cursor: pointer;
}

.cta-item img {
    width: 32px;
    margin-bottom: 8px;
}

/* GRILLE & TABS */
.tabs { text-align: center; margin-bottom: 20px; }
.tab-btn {
    background: white; border: 1px solid #ccc;
    padding: 8px 18px; border-radius: 20px;
    margin: 4px; cursor: pointer;
}
.tab-btn.active { background: var(--bleu-soft); color: white; border: none; }

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    max-width: 900px;
    margin: auto;
}

/* CORRECTIF PIED DE PAGE : Style Site Google */
.gs-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 2%; /* Plus serré sur les bords pour coller au screen */
    background-color: var(--bg-creme);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-left {
    display: flex;
    gap: 10px;
}

.footer-left img {
    width: 20px; /* Petit format discret */
}

.footer-right img {
    height: 22px; /* Ton logo E rose à droite */
}

/* On s'assure qu'aucun style de cercle ne s'applique ici */
.footer-right a img {
    border-radius: 0 !important;
    background: transparent !important;
    padding: 0 !important;
}