/*
Theme Name: Goosto
Theme URI: https://goosto.be
Author: Saâd Kettani
Author URI: https://goosto.be
Description: Thème personnalisé pour le projet GOOSTO — gastronomie, producteurs, artisans, ateliers, restaurants.
Version: 1.0
Text Domain: goosto
*/

/* ============================
   RESET
   ============================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    font-family: "Inter", sans-serif;
    background-color: white;
    color: #4A3F35;
}

:target {
    scroll-margin-top: 32px; /* adapte selon la hauteur de ton header */
}

/* ============================
   TYPOGRAPHIE
   ============================ */

/*h1, h2, h3, h4, h5, h6 {
    font-family: "Times New Roman", serif;
    color: #000;
}*/

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ============================
   LIENS
   ============================ */

/*a {
    color: yellow;
    text-decoration: none;
    transition: opacity .2s ease;
}

a:hover {
    opacity: .7;
}
*/
ul, ol {
    margin-left: 20px;
}

/* ============================
   BOUTONS GOOSTO
   ============================ */

.goosto-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #E87133;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

.goosto-button:hover {
    opacity: .85;
}

/* ============================
   BARRE GOOSTO
   ============================ */

.goosto-bar {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
    width: calc(100% - 40px);
    margin: 0 20px;
    position: relative;
}

.goosto-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px;
    background: #F9F6F1;
    border-radius: 8px;
    text-decoration: none;
    color: #4A3F35;
    font-weight: 700;
    font-size: 12px;
    min-height: 60px;
}

.goosto-icon {
    width: 39px;
    height: 39px;
    object-fit: contain;
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 768px) {

    .goosto-bar {
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        margin: 0;
    }

    .goosto-item {
        justify-content: center;
        text-align: center;
    }
}
