/* ============================================
   MESHITIME — style.css
   Thème : Espace profond × Or culinaire
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Josefin+Sans:wght@300;400;600&display=swap');

/* ---- VARIABLES ---- */
:root {
    --gold:        #C9A84C;
    --gold-light:  #E8C97A;
    --gold-dim:    rgba(201, 168, 76, 0.25);
    --deep:        #07070F;
    --space:       #0D0D1E;
    --surface:     rgba(255, 255, 255, 0.04);
    --text:        #F0ECE0;
    --text-muted:  rgba(240, 236, 224, 0.45);
    --border:      rgba(201, 168, 76, 0.22);
    --radius:      12px;
    --radius-sm:   6px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Josefin Sans', sans-serif;
    background-color: var(--deep);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    /* Fond étoilé statique en dégradé */
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(30,40,100,0.18) 0%, transparent 50%);
}

/* ---- HEADER ---- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 5%;
    background: rgba(7, 7, 15, 0.92);
    border-bottom: 0.5px solid var(--border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 9999;
    overflow: visible;
}
.menu-toggle {
    display: none; /* Caché sur PC */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;   /* Taille fixe */
    height: 21px;  /* Taille fixe */
    cursor: pointer;
    z-index: 10001 !important; /* Au-dessus de tout */
    position: relative;
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #c5a02d !important; /* On force la couleur dorée */
    border-radius: 10px;
    transition: 0.3s;
}


@media (max-width: 480px) {
    .recipe-grid {
        grid-template-columns: 1fr; /* Une seule carte par ligne */
        gap: 20px;
        padding: 20px;
    }

    .recipe-main-image {
        height: 200px; /* On réduit un peu la hauteur des images */
    }
}
@media (max-width: 480px) {
    .recipe-grid {
        grid-template-columns: 1fr; /* Une seule carte par ligne */
        gap: 20px;
        padding: 20px;
    }

    .recipe-main-image {
        height: 200px; /* On réduit un peu la hauteur des images */
    }
}
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr; /* On empile les sections */
        text-align: center; /* On centre tout pour l'esthétique mobile */
        gap: 30px;
    }

    .social-wrapper {
        justify-content: center; /* Centre les icônes Insta/TikTok */
    }

    .brand-name {
        font-size: 1.5rem;
    }
}
/* Logo image (rond, avec halo doré) */
.logo-img {
    height: 72px;
    width: 72px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    box-shadow: 0 0 18px rgba(201, 168, 76, 0.25);
    object-fit: cover;
    transition: box-shadow 0.3s;
}
.logo-img:hover {
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.45);
}

/* Titre "Meshi Time" */
.site-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, #b38728 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0;
}

/* Navigation */
nav {
    display: flex;
    gap: 2.2rem;
}
nav a {
    font-family: 'Josefin Sans', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(240, 236, 224, 0.6);
    text-decoration: none;
    transition: color 0.25s;
    position: relative;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.25s;
}
nav a:hover {
    color: var(--gold);
}
nav a:hover::after {
    width: 100%;
}

/* --- Adaptation Mobile (Téléphone) --- */
@media (max-width: 768px) {
    /* 1. On cache les icônes sociales du HEADER (uniquement celles-là) */
    header .social-icons {
        display: none !important;
    }

    /* 2. On affiche le bouton Burger */
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
    }

    /* 3. On paramètre la navigation mobile */
    .nav-mobile {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px; /* Aligné sous ton header */
        left: 0;
        width: 100%;
        background-color: #07070F; /* Fond noir solide */
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease-in-out;
        z-index: 9998;
        border-bottom: 0px solid var(--gold);
    }

    /* 4. Quand le menu est ouvert */
    .nav-mobile.active {
        max-height: 300px;
        padding: 20px 0;
        border-bottom: 2px solid var(--gold);
    }

    .nav-mobile a {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        color: white !important;
        font-size: 1.1rem;
        text-decoration: none;
        display: block;
    }
}
/* ---- SUR ORDINATEUR (Grand écran) ---- */
.nav-social-mobile {
    display: none; /* On cache totalement le bloc sur PC */
}

/* ---- SUR TÉLÉPHONE (Media Query) ---- */
@media (max-width: 768px) {
    
    .nav-mobile {
        /* On s'assure que le menu peut s'agrandir pour tout voir */
        display: flex;
        flex-direction: column;
        /* Augmente la max-height si le menu semble coupé */
        max-height: 0; 
        overflow: hidden;
        transition: all 0.4s ease-in-out;
    }

    .nav-mobile.active {
        max-height: 450px; /* On augmente ici pour laisser la place aux icônes */
    }

    /* On affiche et on style la ligne d'icônes */
    .nav-social-mobile {
        display: flex !important; /* On force l'apparition */
        justify-content: center;
        gap: 20px;
        padding: 20px 0;
        margin-top: 10px;
        width: 100%;
    }

    .nav-social-mobile img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 1px solid var(--gold);
    }
}

/* Icônes sociales header */
.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}
.social-icons img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 0.5px solid var(--border);
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    object-fit: cover;
}
.social-icons img:hover {
    border-color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.3);
}

/* ---- HERO ---- */
.hero {
    position: relative;
    z-index: 1001;
    padding: 80px 5% 70px;
    text-align: center;
    overflow: visible;
    border-bottom: 0.5px solid var(--border);
}

/* Halo lumineux derrière le hero */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text) 30%, var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: .8rem;
}

.hero p {
    font-size: .95rem;
    color: var(--text-muted);
    letter-spacing: .05em;
    margin-bottom: 2rem;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    padding: 5px 18px;
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 40px;
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: #E8C97A;
    margin-bottom: 20px;
}

.btn-hero {
    display: inline-block;
    padding: 14px 36px;
    background: #C9A84C;
    color: #0D0D1E;
    font-family: 'Josefin Sans', 'Segoe UI', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s;
}

.btn-hero:hover {
    background: #E8C97A;
    transform: translateY(-2px);
}

/* ---- BARRE DE RECHERCHE ---- */
.search-bar {
    width: 60%;
    max-width: 580px;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 0.5px solid var(--border);
    border-radius: 40px;
    color: var(--text);
    font-family: 'Josefin Sans', sans-serif;
    font-size: .9rem;
    letter-spacing: .05em;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.search-bar::placeholder {
    color: rgba(240, 236, 224, 0.3);
}
.search-bar:focus {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.12);
}
.search-container {
    position: relative; /* Indispensable pour que le z-index de l'enfant fonctionne */
    z-index: 1000;
}

/* Liste de suggestions */
.suggestions-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 580px;
    background: #12121F;
    border: 0.5px solid var(--border);
    border-radius: var(--radius);
    z-index: 9999;
    max-height: 220px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 0.5px solid rgba(201, 168, 76, 0.1);
    color: var(--text-muted);
    text-align: left;
    font-size: .88rem;
    letter-spacing: .04em;
    transition: background 0.15s, color 0.15s;
}
.suggestion-item:last-child {
    border-bottom: none;
}
.suggestion-item:hover {
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold);
}

/* ---- TITRE DE SECTION ---- */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    padding: 0 5% 16px;
    margin: 40px 0 0;
    display: inline-block;
    border-bottom: 2px solid var(--gold);
    letter-spacing: .02em;
}

/* ---- GRILLE DE RECETTES ---- */
.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
    padding: 30px 2% 60px;
}

/* Lien englobant la carte */
.recipe-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.recipe-card-link:visited {
    color: inherit;
}

/* Carte recette */
.recipe-card {
    background: var(--surface);
    border: 0.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.recipe-card-link:hover .recipe-card {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201,168,76,0.08);
    border-color: var(--gold);
}

/* Image de la recette */
.recipe-main-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s;
}
.recipe-card-link:hover .recipe-main-image {
    transform: scale(1.03);
}

/* Infos sous l'image */
.recipe-info {
    padding: 16px 18px;
}
.recipe-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.3;
}
.recipe-info p {
    font-size: .78rem;
    color: var(--text-muted);
    letter-spacing: .06em;
}

/* ---- FOOTER ---- */
.main-footer {
    background-color: #080808;
    padding: 80px 0 30px 0;
    border-top: 2px solid #c59b13; /* Ligne dorée plus marquée en haut */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; /* Donne plus de place au slogan */
    gap: 40px;
    padding: 0 40px;
}

/* Style de la marque */
.brand-name {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}
.brand-tagline { color: #888; font-style: italic; }

/* Titres des colonnes */
.footer-nav h3, .footer-social h3 {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

/* Liens de navigation */
.footer-nav ul { list-style: none; padding: 0; }
.footer-nav ul li { margin-bottom: 12px; }
.footer-nav a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1rem;
}
.footer-nav a:hover { color: var(--gold); padding-left: 8px; }


@media (max-width: 768px) {
    /* On force le conteneur du footer à s'empiler verticalement */
    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    /* On utilise 'order' pour décider de la position */
    .footer-brand {
        order: 1; /* Le nom du site en premier */
    }

    .footer-nav {
        order: 2; /* Les liens (Accueil, etc.) en deuxième */
    }

    .footer-social {
        order: 3; /* Les icônes réseaux sociaux EN DERNIER tout en bas */
        width: 100%;
        padding-top: 20px;
        border-top: 1px solid rgba(201, 168, 76, 0.2); /* Petite ligne de séparation */
    }

    .social-wrapper {
        justify-content: center; /* On centre les icônes sur l'écran mobile */
    }
}

/* Icones Sociales (Le rendu moderne) */
.social-wrapper {
    display: flex;
    gap: 15px;
}


.social-link {
    width: 60px; /* On agrandit le cercle */
    height: 60px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.social-link img {
    width: 50px; /* On agrandit le logo à l'intérieur */
    height: 50px;
    object-fit: contain;
    /* ON SUPPRIME LE FILTRE INVERT POUR GARDER LES COULEURS ORIGINALES */
    filter: none; 
    transition: transform 0.3s ease;
}

/* Effet au survol */
.social-link:hover {
    background-color: rgba(212, 175, 55, 0.1); /* Fond doré très léger au survol */
    border-color: var(--gold);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.social-link:hover img {
    transform: scale(1.1); /* Petit zoom sur le logo lui-même */
}

/* Copyright */
.footer-copyright {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #555;
    font-size: 0.85rem;
}


/* ---- MESSAGE "AUCUNE RECETTE" ---- */
.recipe-grid p {
    color: var(--text-muted);
    font-size: .9rem;
    letter-spacing: .05em;
    padding: 20px 0;
    grid-column: 1 / -1;
}

/* ---- SCROLLBAR personnalisée ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Container principal centré */
.recipe-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    color: white; /* Puisque ton fond est sombre */
}

.recipe-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--gold); /* Ton doré Meshi Time */
}

/* Image arrondie avec ombre */
.recipe-hero-img {
    width: 100%;
    height: 450px;
    object-position: center;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-bottom: 40px;
}


/* Layout en deux colonnes */
.recipe-content {
    display: grid;
    grid-template-columns: 1fr 2fr; /* 1/3 pour ingrédients, 2/3 pour étapes */
    gap: 50px;
}

/* Sidebar des ingrédients */
.ingredients-sidebar {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    height: fit-content;
    border-left: 4px solid var(--gold);
}

.ingredients-sidebar ul {
    list-style: none;
    padding: 0;
}

.ingredients-sidebar li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.quantite-selecteur {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-family: 'Josefin Sans', sans-serif;
}
.quantite-selecteur button {
    background: var(--gold);
    color: var(--deep);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform 0.2s;
}
.quantite-selecteur button:hover { transform: scale(1.1); }
#nb-personnes { font-weight: bold; color: var(--gold-light); font-size: 1.2rem; }


/* Style des étapes avec photos futures */
.step-item {
    margin-bottom: 30px;
}

.step-number {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 10px;
}
/* On réduit la taille des images d'étapes */
/* L'image d'étape n'a pas de bordure si elle n'existe pas via le JS */
.step-img {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    cursor: zoom-in; /* Curseur loupe */
    transition: 0.3s;
}

/* Fenêtre d'agrandissement (Overlay) */
.overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.overlay img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* Optionnel : Agrandir légèrement au survol pour mieux voir le détail */
.step-img:hover {
    transform: scale(1.05);
    cursor: zoom-in;
}

/* Espacement entre les étapes */
.step-item {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.2); /* Ligne dorée discrète */
}

.step-img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin-top: 15px;
    display: block;
}

.step-item {
    display: flex;
    flex-wrap: wrap; /* Permet de revenir à la ligne sur mobile */
    gap: 20px;
    align-items: flex-start;
}

.step-text-container {
    flex: 1; /* Prend tout l'espace restant */
    min-width: 250px;
}

.step-img {
    margin-top: 0; /* On enlève la marge du haut puisqu'elles sont côte à côte */
}

.suggestions-bas {
    margin-top: 80px; /* Espace après les étapes */
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.suggestions-bas .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--gold);
}

/* On s'assure que la grille de suggestion est bien alignée */
#grid-suggestions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-social-container {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
    color: white;
}

.social-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.social-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 30px;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-card i {
    font-size: 4rem;
    margin-bottom: 10px;
}

.social-card h3 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--gold);
}

.social-card p {
    color: #bbb;
    margin: 0;
}

.follow-tag {
    margin-top: 10px;
    padding: 8px 25px;
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 25px;
    color: var(--gold);
    font-weight: bold;
    transition: 0.3s;
}

/* Effets au survol par couleur de réseau */
.social-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.08);
}

.instagram:hover { border-color: #E1306C; box-shadow: 0 10px 30px rgba(225, 48, 108, 0.2); }
.instagram:hover i { color: #E1306C; }

.tiktok:hover { border-color: #00f2ea; box-shadow: 0 10px 30px rgba(0, 242, 234, 0.2); }
.tiktok:hover i { color: #00f2ea; }

.facebook:hover { border-color: #1877F2; box-shadow: 0 10px 30px rgba(24, 119, 242, 0.2); }
.facebook:hover i { color: #1877F2; }

.social-card:hover .follow-tag {
    background: var(--gold);
    color: black;
}

/* ---- SECTION RECETTES PHARES ---- */
.featured-section {
    padding: 48px 2% 0;
}

.featured-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
}

.section-label {
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 4px;
    display: block;
}

/* On réécrit section-title pour la page d'accueil */
.featured-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    margin: 0;
    padding: 0 0 8px;
    border-bottom: 2px solid #C9A84C;
    display: inline-block;
    background: linear-gradient(135deg, var(--text) 30%, var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 0;
}

.see-all-link {
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #C9A84C;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(201,168,76,0.35);
    padding-bottom: 2px;
    transition: color .2s;
    white-space: nowrap;
    margin-bottom: 10px;
}

.see-all-link:hover {
    color: #b38728;
}

/* ---- BOUTON "EXPLORER TOUTES LES RECETTES" ---- */
.featured-cta {
    text-align: center;
    padding: 40px 0 56px;
}
