/* ===== RESET ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ===== HTML / BODY ===== */
html, body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--color-text);
    padding-top: var(--header-height);
}

/* ===== UTIL ===== */
.no-scroll {
    overflow: hidden;
}

/* ===== IMAGES ===== */
img {
    max-width: 100%;
    display: block;
}

/* ===== LINKS ===== */
a {
    text-decoration: none;
    color: inherit;
}

/* ===== TITRES ===== */
h1, h2, h3, h4 {
    font-weight: normal;
    color: #cd991c;
    margin-bottom: 1rem;
}

/* ===== PARAGRAPHES ===== */
p {
    font-size: var(--fs-lg);
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ===== SUBTITLE (réutilisable partout) ===== */
.subtitle {
    color: var(--color-primary);
    font-size: var(--fs-md);
    letter-spacing: 2px;
    display: block;
    margin-bottom: var(--space-sm);
    position: relative;
}

.subtitle::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: var(--color-primary);
    margin-top: 6px;
}

/* ===== BUTTON RESET ===== */
button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== INPUT ===== */
input {
    font-family: inherit;
    outline: none;
}

section {
    width: 100%;
}
/* Identité visuelle officielle Everly’s Chocolat. */
h1, h2, h3, h4, .gold-text {
    margin-bottom: 1rem;
    background: linear-gradient(90deg,#7a4a07 0%,#b97a10 12%,#f7d36a 28%,#fff3c4 40%,#d9a62a 55%,#b97a10 70%,#f7d36a 85%,#7a4a07 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #b97a10;
}
h1 a, h2 a, h3 a, h4 a { color: inherit; }
button, input, select, textarea, [data-lucide], svg { -webkit-text-fill-color: initial; }
:focus-visible { outline: 3px solid #f7d36a; outline-offset: 3px; }
img { max-width: 100%; height: auto; }
body { overflow-x: hidden; }
.screen-reader-text { position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }
.screen-reader-text:focus { clip:auto!important;width:auto;height:auto;margin:1rem;padding:.75rem;z-index:99999;background:#fff;color:#111; }
