@font-face {
    font-family: "Outfit";
    src: url("/static/fonts/Outfit-VariableFont_wght.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

html, body {
    font-family: "Outfit", sans-serif;
    height: 100%;
    margin: 0;
}

body.layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-main {
    flex: 1 0 auto;
}

.container {
    max-width: 4000px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.button {
    display: inline-block;
    padding: 8px 14px;
    text-decoration: none;
    font-size: 0.72rem;
    line-height: 1;
    cursor: pointer;
}

.button--outline {
    color: #111111;
    border: 1px solid #111111;
    background: transparent;
}

.button--outline:hover {
    background: #111111;
    color: #ffffff;
}

/* =========================
   Bandeaux
   ========================= */
.band {
    background: var(--band-bg, #ffffff);
    color: var(--band-text, #111111);
    padding: 48px 0;
}

.band__inner {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content:center;
}

.band__content {
    max-width: 720px;
    text-align center;
}

.band__title {
    margin: 0 0 16px 0;
    font-size: 2rem;
    line-height: 1.2;
}

.band__text {
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.band__actions {
    margin-top: 20px;
}

.band--image {
    background-image: var(--band-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.band__inner--split {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Image */
.band__media {
    width: 50%;
}

.band__media img {
    width: 100%;
    height: auto;
    display: block;
}

.band__features {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 24px;
    flex-wrap: nowrap;
}

.band__features--columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-column {
    background: transparent;
    box-shadow: none;
    padding: 0;
    color: var(--band-text, inherit);
}

.feature-column__title {
    margin-bottom: 0.5rem;
}

.feature-column__text {
    margin: 0;
}

.feature-card {
  flex: 0 1 220px;      /* largeur cible */
    max-width: 220px;     /* borne haute */
    width: 100%;
    aspect-ratio: 1 / 1;  /* carré */
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 18px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.feature-card__title {
    margin: 0 0 10px 0;
    font-size: 1rem;
    color: #111;
}

.feature-card__text {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #333;
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-tools__cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.header-tools__cart * {
    text-decoration: none;
}

.cart-icon {
    font-size: 1.2rem;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #c0392b;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 999px;
    font-weight: 600;
}

/* =========================
   Pages simples
   ========================= */

.page-section {
    padding: 56px 0;
}


.container--narrow {
    max-width: 760px;
}

.page-header {
    margin-bottom: 32px;
}

.page-header h1 {
    margin: 0 0 16px;
}

.page-intro {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #444;
}

.text-content {
    font-size: 1rem;
    line-height: 1.65;
}

.text-content h2 {
    margin: 2.2rem 0 0.8rem;
    font-size: 1.25rem;
    line-height: 1.3;
}

.text-content h3 {
    margin: 1.8rem 0 0.7rem;
    font-size: 1.1rem;
    line-height: 1.3;
}

.text-content p {
    margin: 0 0 1.1rem;
}

.text-content ul,
.text-content ol {
    margin: 0 0 1.2rem 1.4rem;
    padding: 0;
}

.text-content li {
    margin-bottom: 0.45rem;
}


/* =========================
   Fondateurs
   ========================= */

.founders-section {
    margin: 3rem 0;
}

.founder-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1.5rem;
    align-items: start;
    margin: 2rem 0;
}

.founder-card__image {
    width: 180px;
    height: 230px;
    object-fit: cover;
    display: block;
}

.founder-card__body h3 {
    margin-top: 0;
}

.founder-card__role {
    font-weight: 600;
}

.page-actions {
    margin-top: 2rem;
}

@media (max-width: 700px) {
    .founder-card {
        grid-template-columns: 1fr;
    }

    .founder-card__image {
        width: 100%;
        height: auto;
        max-height: 420px;
    }
}


