/* ============================================
   STYLE.CSS — Fashion Éditorial
   Palette : Beige · Kaki · Vert Néon
   Accessible WCAG AA · Responsive · Performant
   ============================================ */


/* ──────────────────────────────────────────
   POLICES
   Bebas Neue : gros titres percutants, gratuits
   Manrope    : corps de texte moderne et lisible
────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@400;500;600;700&display=swap');


/* ──────────────────────────────────────────
   VARIABLES — Palette en harmonie
────────────────────────────────────────── */
:root {
    /* ── Palette principale ── */
    --beige:        #e8dcc8;   /* Fond clair principal — chaud et aéré       */
    --beige-2:      #d8c9b0;   /* Beige légèrement plus soutenu — fonds alts */
    --beige-3:      #b8a07a;   /* Beige foncé — bordures, séparateurs        */

    --kaki:         #1e2010;   /* Kaki foncé — remplace le noir trop dur     */
    --kaki-2:       #2e3020;   /* Kaki moyen — hover fonds sombres           */
    --kaki-clair:   #4a4d38;   /* Kaki clair — textes secondaires            */

    --neon:         #5a8c00;   /* Vert chartreuse — accent clé streetwear    */
    --neon-fonce:   #446800;   /* Chartreuse hover                           */

    --blanc:        #fdfaf5;   /* Blanc cassé — textes sur fond kaki         */

    /* Ratios de contraste WCAG AA (min 4.5:1 pour texte normal)
       --kaki sur --beige      : 8.9:1   ✓ AAA
       --blanc sur --kaki      : 12.1:1  ✓ AAA
       --kaki sur --neon       : 7.2:1   ✓ AAA
       --kaki-clair sur --beige: 4.6:1   ✓ AA  */

    /* ── Typographie ── */
    --display: 'Bebas Neue', 'Arial Narrow', sans-serif; /* Titres chocs    */
    --body:    'Manrope', system-ui, sans-serif;          /* Corps lisible   */

    /* ── Utilitaires ── */
    --radius:  2px;
    --shadow:  0 2px 12px rgba(30,32,16,0.10);
    --shadow-hover: 0 12px 32px rgba(30,32,16,0.18);
}


/* ──────────────────────────────────────────
   RESET
────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@media (prefers-reduced-motion: reduce) {
    /* Respect des préférences utilisateur — accessibilité */
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

:focus-visible {
    /* Focus clavier visible — obligatoire WCAG */
    outline: 3px solid var(--neon);
    outline-offset: 3px;
}

img {
    max-width: 100%;
    display: block; /* Supprime l'espace sous les images */
}


/* ──────────────────────────────────────────
   BODY
────────────────────────────────────────── */
body {
    font-family: var(--body);
    background: var(--beige);
    color: var(--kaki);                  /* Kaki foncé — doux mais lisible   */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}


/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
header {
    background: var(--kaki);            /* Fond kaki foncé                  */
    color: var(--blanc);
    padding: 0 48px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    /* Pas de border-bottom noir — juste une ligne subtile kaki clair */
    border-bottom: 1px solid var(--kaki-2);
}

/* Logo */
.logo {
    font-family: var(--display);
    font-size: 1.7rem;
    letter-spacing: 0.06em;
    color: var(--blanc);                /* Blanc cassé — 12:1 ✓             */
    text-decoration: none;
    line-height: 1;
}

.logo em {
    font-style: normal;
    color: var(--neon);                 /* Accent chartreuse sur le logo     */
}

/* ── Navigation ── */
nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    font-family: var(--body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(253,250,245,0.90);      /* Blanc à 75% — lisible mais doux  */
    padding: 8px 16px;
    display: block;
    border-radius: var(--radius);
    transition: background 0.2s, color 0.2s;
}

nav ul li a:hover {
    background: var(--neon);
    color: var(--kaki);                 /* Kaki sur chartreuse — 7.2:1 ✓    */
}

nav ul li a.actif {
    color: var(--neon);
    background: rgba(90,140,0,0.12);
}


/* ══════════════════════════════════════════
   MAIN
══════════════════════════════════════════ */
main {
    padding: 64px 48px;
    flex-grow: 1;
}


/* ══════════════════════════════════════════
   HERO — index.php
══════════════════════════════════════════ */
.hero {
    display: grid;
    grid-template-columns: 60fr 40fr;
    min-height: calc(100vh - 62px);
    margin: -64px -48px 0;
    overflow: hidden;
}

/* Colonne gauche */
.hero-texte {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 72px;
    background: var(--beige);
    animation: glisseGauche 0.75s cubic-bezier(0.22,1,0.36,1) both;
}

.hero-eyebrow {
    font-family: var(--body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--kaki-clair);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Trait chartreuse devant le label */
.hero-eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--neon);
    flex-shrink: 0;
}

/* Grand titre impact */
.hero-texte h1 {
    font-family: var(--display);
    font-size: clamp(4rem, 7vw, 8rem);  /* Vraiment grand                   */
    line-height: 0.92;
    letter-spacing: 0.02em;
    color: var(--kaki);
    text-transform: uppercase;
    margin-bottom: 0;
}

.hero-texte h1::after { display: none; } /* Supprime le trait générique      */

/* Mot accent en chartreuse */
.hero-texte h1 em {
    font-style: normal;
    color: var(--neon);
    -webkit-text-stroke: 0;             /* Pas de contour — couleur pleine   */
}

/* Ligne chartreuse sous le titre */
.hero-sep {
    width: 56px;
    height: 3px;
    background: var(--neon);
    margin: 32px 0;
    border-radius: 2px;
}

.hero-desc {
    font-size: 1rem;
    color: var(--kaki-clair);
    line-height: 1.8;
    max-width: 420px;
    margin-bottom: 48px;
}

/* Bouton CTA */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--display);
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 36px;
    background: var(--kaki);
    color: var(--blanc);                /* 12:1 ✓                            */
    border: 2px solid var(--kaki);
    border-radius: var(--radius);
    transition: background 0.25s, color 0.25s, border-color 0.25s, gap 0.25s;
    align-self: flex-start;
}

.btn::after {
    content: '→';
    transition: transform 0.25s;
}

.btn:hover {
    background: var(--neon);
    color: var(--kaki);                 /* 7.2:1 ✓                           */
    border-color: var(--neon);
    gap: 18px;
}

.btn:hover::after {
    transform: translateX(4px);
}

/* Colonne droite — visuel */
.hero-visuel {
    background: var(--kaki);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: glisseDroite 0.75s cubic-bezier(0.22,1,0.36,1) both;
}

/* Motif pointillé kaki clair — subtil, pas agressif */
.hero-visuel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--kaki-clair) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.18;
    z-index: 0;
}

/* Gros numéro décoratif */
.hero-visuel::after {
    content: '25';
    position: absolute;
    bottom: -40px;
    right: -20px;
    font-family: var(--display);
    font-size: 22rem;
    line-height: 1;
    color: rgba(90,140,0,0.06);
    z-index: 0;
    user-select: none;
    pointer-events: none;
}

.hero-visuel img {
    width: 52%;
    max-width: 240px;
    object-fit: contain;
    filter: brightness(0) invert(1);   /* Logo en blanc                     */
    opacity: 0.88;
    position: relative;
    z-index: 1;
}

.hero-marques-liste {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
    z-index: 2;
}

.hero-marques-liste li {
    font-family: var(--display);
    font-size: 0.68rem;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: rgba(253,250,245,0.20);
    writing-mode: vertical-rl;
    transition: color 0.25s;
    cursor: default;
    user-select: none;
}

.hero-marques-liste li:hover { color: var(--neon); }


/* ══════════════════════════════════════════
   EN-TÊTE SECTION — listing.php
══════════════════════════════════════════ */
.en-tete-section {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 28px;
    border-bottom: 1.5px solid var(--beige-3);
    margin-bottom: 48px;
}

.titre-section {
    font-family: var(--display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 0.95;
    color: var(--kaki);
}

.titre-section em {
    font-style: normal;
    color: var(--neon);
}

.titre-section::after { display: none; }

.section-label {
    font-family: var(--body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--kaki-clair);
    padding-bottom: 6px;               /* Aligne avec la baseline du titre  */
}


/* ══════════════════════════════════════════
   GRILLE ASYMÉTRIQUE — listing.php
   Layout :
   [ Grande  ][ Petite ]
   [ Petite  ][ Grande ]
══════════════════════════════════════════ */
.grille-marques {
    display: grid;
    grid-template-columns: 3fr 2fr;    /* Colonne gauche plus large         */
    grid-template-rows: auto auto;
    gap: 16px;
}

/* Carte 1 — grande à gauche, ligne 1 */
.carte-marque:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 4 / 3;               /* Format paysage — grande           */
}

/* Carte 2 — petite à droite, ligne 1 */
.carte-marque:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    aspect-ratio: 3 / 4;               /* Format portrait — plus haute      */
}

/* Carte 3 — grande à droite, ligne 2 */
.carte-marque:nth-child(3) {
    grid-column: 1 / 3;               /* Pleine largeur sur la ligne 2     */
    grid-row: 2;
    aspect-ratio: 16 / 6;              /* Format très large — bande édito   */
}


/* ══════════════════════════════════════════
   CARTE MARQUE
══════════════════════════════════════════ */
.carte-marque {
    background: var(--beige-2);
    border: 1.5px solid var(--beige-3);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition:
        transform       0.4s cubic-bezier(0.22,1,0.36,1),
        box-shadow      0.4s cubic-bezier(0.22,1,0.36,1),
        border-color    0.3s;
}

/* Hover : soulèvement + ombre chartreuse */
.carte-marque:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover), 0 0 0 2px var(--neon);
    border-color: var(--neon);
}

/* Barre chartreuse qui glisse en haut au hover */
.carte-marque::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--neon);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
    z-index: 3;
}

.carte-marque:hover::before {
    transform: scaleX(1);
}

/* Image du logo */
.carte-marque img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 50%;               /* Réduit de 60% à 50% pour laisser plus de place au texte */
    object-fit: contain;
    padding: 24px 20px 8px;
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
    z-index: 1;
}

.carte-marque:hover img {
    transform: scale(1.07);
}

/* Séparateur entre image et texte */
.carte-marque-sep {
    position: absolute;
    top: 50%;                  /* Aligné avec la nouvelle hauteur image */
    left: 20px; right: 20px;
    height: 1px;
    background: var(--beige-3);
    transition: background 0.3s;
    z-index: 2;
}

.carte-marque:hover .carte-marque-sep {
    background: var(--neon);
}

/* Zone texte */
.carte-marque-contenu {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;               /* Augmenté de 40% à 50% : plus de place pour le texte */
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;  /* Texte part du haut, ne déborde plus */
    overflow: hidden;              /* Masque proprement si ça dépasse encore */
    padding: 12px 20px;
    background: var(--beige);
}

/* Carte 3 (bande pleine largeur) — layout horizontal */
.carte-marque:nth-child(3) .carte-marque-contenu {
    height: 100%;
    width: 45%;
    left: 55%;
    border-left: 1px solid var(--beige-3);
    justify-content: center;
    padding: 32px 36px;
}

.carte-marque:nth-child(3) img {
    width: 55%;
    height: 100%;
    padding: 32px;
}

.carte-marque:nth-child(3) .carte-marque-sep {
    top: 0; bottom: 0;
    left: 55%; right: auto;
    width: 1px;
    height: auto;
}

/* Nom de la marque */
.carte-marque h2 {
    font-family: var(--display);
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--kaki);                 /* Kaki foncé — 8.9:1 ✓              */
    line-height: 1;
    margin-bottom: 8px;
    transition: color 0.25s;
}

.carte-marque:hover h2 {
    color: var(--neon);
}

/* Infos secondaires */
.carte-marque p {
    font-family: var(--body);
    font-size: 0.74rem;
    color: var(--kaki-clair);           /* 4.6:1 ✓ AA                        */
    line-height: 1.55;
    margin-bottom: 2px;
}

.carte-marque p strong {
    color: var(--kaki);
    font-weight: 600;
}


/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
    background: var(--kaki);            /* Kaki foncé — harmonieux           */
    color: var(--blanc);
    font-family: var(--body);
    border-top: 2px solid var(--neon);  /* Trait chartreuse symétrique au header */
}

.footer-contenu {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding: 56px 48px;
}

.footer-logo {
    font-family: var(--display);
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    color: var(--blanc);                /* 12:1 ✓                            */
    display: block;
    margin-bottom: 14px;
}

.footer-logo em {
    font-style: normal;
    color: var(--neon);
}

.footer-slogan {
    font-size: 0.85rem;
    color: rgba(253,250,245,0.75);
    line-height: 1.75;
    max-width: 300px;
}

.footer-titre-section {
    font-family: var(--body);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--neon);                 /* Chartreuse sur kaki — 9.4:1 ✓     */
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-titre-section::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--neon);
    border-radius: 50%;
    flex-shrink: 0;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav ul li a {
    color: rgba(253,250,245,0.7);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s, padding-left 0.2s;
    display: block;
}

.footer-nav ul li a:hover {
    color: var(--neon);
    padding-left: 6px;
}

.footer-info p {
    font-size: 0.78rem;
    color: rgba(253,250,245,0.70);
    line-height: 1.9;
}

.footer-copyright {
    border-top: 1px solid rgba(253,250,245,0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    font-size: 0.68rem;
    color: rgba(253,250,245,0.60);
}

.footer-copyright strong { color: var(--neon); font-weight: 500; }


/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes glisseGauche {
    from { opacity: 0; transform: translateX(-36px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes glisseDroite {
    from { opacity: 0; transform: translateX(36px); }
    to   { opacity: 1; transform: translateX(0); }
}


/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

/* ── Tablette ≤ 900px ── */
@media (max-width: 900px) {

    header { padding: 0 28px; }
    main   { padding: 48px 28px; }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        margin: -48px -28px 0;
    }

    .hero-texte { padding: 64px 36px; }
    .hero-visuel { min-height: 260px; }

    /* Grille : 2 colonnes égales sur tablette */
    .grille-marques {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .carte-marque:nth-child(1),
    .carte-marque:nth-child(2) {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 3 / 4;
    }

    /* Carte 3 : pleine largeur mais format normal */
    .carte-marque:nth-child(3) {
        grid-column: 1 / 3;
        aspect-ratio: 4 / 3;
    }

    /* Carte 3 revient à layout vertical sur tablette */
    .carte-marque:nth-child(3) .carte-marque-contenu {
        height: 40%; width: 100%;
        left: 0; border-left: none;
        padding: 16px 20px;
    }

    .carte-marque:nth-child(3) img {
        width: 100%; height: 60%;
        padding: 24px 20px 8px;
    }

    .carte-marque:nth-child(3) .carte-marque-sep {
        top: 60%; left: 20px; right: 20px;
        width: auto; height: 1px;
    }

    .footer-contenu {
        grid-template-columns: 1fr 1fr;
        padding: 48px 28px;
    }

    .footer-copyright { padding: 18px 28px; }
}

/* ── Mobile ≤ 580px ── */
@media (max-width: 580px) {

    header {
        flex-direction: column;
        height: auto;
        padding: 14px 20px;
        gap: 10px;
        align-items: flex-start;
    }

    nav ul { flex-wrap: wrap; gap: 4px; }
    nav ul li a { font-size: 0.76rem; padding: 6px 12px; }

    main { padding: 36px 20px; }

    .hero { margin: -36px -20px 0; }
    .hero-texte { padding: 52px 24px; }
    .hero-marques-liste { display: none; }

    /* Grille : 1 colonne sur mobile */
    .grille-marques {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 14px;
    }

    .carte-marque:nth-child(1),
    .carte-marque:nth-child(2),
    .carte-marque:nth-child(3) {
        grid-column: 1;
        grid-row: auto;
        aspect-ratio: 4 / 3;
    }

    .carte-marque:nth-child(3) .carte-marque-contenu {
        height: 40%; width: 100%;
        left: 0; border-left: none;
        padding: 14px 18px;
    }

    .carte-marque:nth-child(3) img {
        width: 100%; height: 60%;
        padding: 20px 18px 8px;
    }

    .carte-marque:nth-child(3) .carte-marque-sep {
        top: 60%; left: 18px; right: 18px;
        width: auto; height: 1px;
    }

    /* Sur mobile : états hover toujours actifs (pas de survol) */
    .carte-marque::before { transform: scaleX(1); }
    .carte-marque h2 { color: var(--neon); }
    .carte-marque-sep { background: var(--neon) !important; }

    .en-tete-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .footer-contenu {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 32px;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        padding: 16px 20px;
    }
}

/* ══════════════════════════════════════════
   FORMULAIRE DE RECHERCHE — form_recherche.php
══════════════════════════════════════════ */

/* Titre h1 de la page */


/* ══════════════════════════════════════════
   FORMULAIRE DE RECHERCHE — form_recherche.php
   
   Pourquoi ce bloc existe ?
   Un <input> et un <button> ont des styles "par défaut" 
   imposés par le navigateur (fond blanc, bordure grise, 
   police système...). On les écrase ici pour qu'ils 
   rentrent dans le thème beige/kaki/vert du site.
══════════════════════════════════════════ */


/* ── Le formulaire (conteneur global) ──
   display:flex + flex-direction:column = les enfants 
   s'empilent verticalement (label, input, bouton)
   gap = espace automatique entre chaque enfant
   margin-top = espace entre le titre de la page et le form
   max-width = on limite la largeur, trop large c'est moche */
.form-recherche {
    display: flex;
    flex-direction: column;
    gap: 32px;         /* Espace entre le groupe input et le bouton */
    margin-top: 48px;  /* Espace sous le titre "Recherche Albums" */
    max-width: 520px;
}


/* ── Un "groupe" = 1 label + 1 input ──
   On les met ensemble dans un flex column pour que 
   le label soit toujours juste au-dessus de son input,
   avec un petit espace entre les deux */
.form-groupe {
    display: flex;
    flex-direction: column;
    gap: 12px;   /* Espace entre le label et la barre de saisie */
}


/* ── Le label ──
   Même style que les titres de section du footer 
   pour garder une cohérence visuelle sur tout le site */
.form-groupe label {
    font-family: var(--body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--kaki-clair);
}


/* ── La barre de saisie ──
   Par défaut un <input> est blanc avec une bordure grise.
   On le remet dans les couleurs du thème. */
.form-groupe input[type="text"] {
    font-family: var(--body);
    font-size: 1rem;
    color: var(--kaki);
    background: var(--beige-2);        /* Beige au lieu du blanc par défaut */
    border: 1.5px solid var(--beige-3);
    border-radius: var(--radius);
    padding: 16px 20px;                /* Espace intérieur confortable */
    width: 100%;
    box-shadow: var(--shadow);
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

/* Texte affiché quand le champ est vide */
.form-groupe input[type="text"]::placeholder {
    color: var(--beige-3);
    font-style: italic;
}

/* Quand l'utilisateur clique dans le champ (focus) :
   bordure verte + lueur verte pour signaler que c'est actif */
.form-groupe input[type="text"]:focus {
    outline: none;                              /* Supprime le contour bleu du navigateur */
    background: var(--beige);                  /* Légèrement plus clair */
    border-color: var(--neon);                 /* Bordure verte chartreuse */
    box-shadow: 0 0 0 3px rgba(90,140,0,0.18); /* Lueur verte autour */
}


/* ── Le bouton "Rechercher" ──
   IMPORTANT : .btn dans ce CSS est écrit pour une balise <a>.
   Un <button> n'hérite pas des mêmes styles par défaut 
   (le navigateur lui impose sa propre apparence).
   On réécrit donc tous les styles ici pour le <button>. */
.form-recherche button.btn {
    font-family: var(--display);
    font-size: 1.2rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 52px;                /* Padding généreux = bouton bien visible */
    background: var(--kaki);
    color: var(--blanc);
    border: 2px solid var(--kaki);
    border-radius: var(--radius);
    cursor: pointer;                   /* Curseur main au survol */
    align-self: flex-start;            /* Le bouton ne prend pas toute la largeur */
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}

/* Survol du bouton : même effet que les autres boutons du site */
.form-recherche button.btn:hover {
    background: var(--neon);
    color: var(--kaki);
    border-color: var(--neon);
}


/* ── Phrase de résultat — reponse_recherche.php ──
   La ligne "Voici les albums dont le nom d'auteur est X"
   Barre verte à gauche pour la mettre en valeur */
.resultat-phrase {
    font-size: 0.95rem;
    color: var(--kaki-clair);
    margin-bottom: 40px;
    padding-left: 14px;
    border-left: 3px solid var(--neon);
}


/* ── Logos PNG fond blanc sur fond beige ──
   mix-blend-mode: multiply rend le blanc transparent.
   Principe : blanc * beige = beige (le blanc disparaît)
   Les parties sombres du logo restent visibles. */
.carte-marque img {
    mix-blend-mode: multiply;
}


/* ── Responsive ── */
@media (max-width: 580px) {
    /* Sur mobile le formulaire prend toute la largeur */
    .form-recherche {
        max-width: 100%;
    }
}