@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.4;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

@font-face {
  font-family: "Luxia";
  src: url("../font/Luxia.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
body.admin {
  margin: 0;
  background: #1b1511;
  color: #f6efe8;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

.admin a {
  color: inherit;
  text-decoration: none;
}

.admin-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #241c17;
  border-bottom: 1px solid #43342a;
}

.topbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
}

.topbar__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}

.topbar__mark {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #fe5f5b;
  color: #1b1511;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Luxia", serif;
  font-weight: 700;
  font-size: 15px;
}

.topbar__brand-text {
  font-family: "Luxia", serif;
  font-size: 18px;
  letter-spacing: 0.3px;
}
.topbar__brand-text em {
  font-style: normal;
  color: #ab9686;
}

.topbar__nav {
  display: flex;
  gap: 24px;
}

.topbar__link {
  color: #ab9686;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.topbar__link:hover {
  color: #f6efe8;
}

.topbar__link.is-active {
  color: #f6efe8;
  border-bottom-color: #fe5f5b;
}

.topbar__user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar__user-name {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ab9686;
}

.topbar__logout {
  font-size: 13px;
  font-weight: 600;
  color: #b0241c;
}

.topbar__toggle {
  display: none;
  background: none;
  border: none;
  color: #f6efe8;
  font-size: 22px;
}

.topbar__mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px 24px 24px;
  border-top: 1px solid #43342a;
}

.topbar__mobile-nav.is-open {
  display: flex;
}

.topbar__mobile-link {
  padding: 16px 0;
  font-family: "Luxia", serif;
  font-size: 18px;
  color: #f6efe8;
  border-bottom: 1px solid #43342a;
}

.topbar__mobile-link.is-active {
  color: #fe5f5b;
}

.topbar__mobile-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  font-size: 13px;
  color: #ab9686;
}

.topbar__mobile-user a {
  color: #b0241c;
  font-weight: 600;
}

.admin-content {
  flex: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  box-sizing: border-box;
}

@media screen and (max-width: 991px) {
  .topbar__nav,
  .topbar__user {
    display: none;
  }
  .topbar__toggle {
    display: block;
  }
  .admin-content {
    padding: 24px;
  }
}
body {
  background: #1b1511;
  color: #f6efe8;
  font-family: "Roboto", sans-serif;
}

/* ============ HEADER / NAV ============ */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  background: none;
}

.header .desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.ul-1 {
  padding: 24px 0;
  font-family: "Luxia", serif;
  font-size: 15px;
}

.ul-1 li a {
  color: #f6efe8;
  text-decoration: none;
  letter-spacing: 4px;
  transition: color 0.15s;
}

.ul-1 li a:hover {
  color: #fe5f5b;
}

.ul-2 {
  display: flex;
  align-items: center;
  padding: 24px 0;
  font-size: 14px;
}

.ul-2 li {
  margin-left: 24px;
}

.ul-2 li a {
  color: #ab9686;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.15s;
}

.ul-2 li a:hover,
.ul-2 li a.is-active {
  color: #fe5f5b;
}

.connect {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #fe5f5b;
  border-radius: 999px;
  color: #fe5f5b !important;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s;
}

.connect:hover {
  background: #fe5f5b;
  color: #1b1511 !important;
}

nav ul li {
  display: inline-block;
  list-style: none;
}

.nav-burger {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 84px;
  padding: 0 24px;
  background: none;
}

.nav-burger h1 {
  font-family: "Luxia", serif;
  font-size: 17px;
  letter-spacing: 2px;
}

.nav-burger h1 a {
  color: #f6efe8;
  text-decoration: none;
}

.burger-menu {
  position: relative;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 600;
}

.burger {
  position: absolute;
  background: #f6efe8;
  width: 100%;
  height: 2px;
  top: 50%;
  margin-top: -1px;
  transition: background-color 0.2s;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  background: #f6efe8;
  width: 100%;
  height: 2px;
  left: 0;
  transition: transform 0.2s, top 0.2s;
}

.burger::before {
  top: -9px;
}

.burger::after {
  top: 9px;
}

.burger-menu.menu-on .burger {
  background: transparent;
}

.burger-menu.menu-on .burger::before {
  top: 0;
  transform: rotate(45deg);
}

.burger-menu.menu-on .burger::after {
  top: 0;
  transform: rotate(-45deg);
}

.burger .menu-liste {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #1b1511;
  padding-top: 100px;
  overflow-y: auto;
  z-index: 550;
}

.burger ul li {
  display: block;
  padding: 0 24px;
}

.burger ul li a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid #43342a;
  color: #f6efe8;
  font-family: "Luxia", serif;
  font-size: 20px;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.burger ul li a:hover,
.burger ul li a.is-active {
  color: #fe5f5b;
}

.burger ul li.connect {
  padding: 24px;
  border: none;
}

.burger ul li.connect a {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid #fe5f5b;
  border-radius: 999px;
  color: #fe5f5b;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
}

/* ============ BANDEAU DE PAGE GÉNÉRIQUE (recettes / actualités) ============ */
.page-banner {
  padding: 160px 24px 60px;
  text-align: center;
  background: #241c17;
  border-bottom: 1px solid #43342a;
}

.page-banner h1 {
  font-family: "Luxia", serif;
  font-size: 40px;
  margin-bottom: 8px;
}

.page-banner p {
  color: #ab9686;
  max-width: 480px;
  margin: 0 auto;
}

.public-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
}

/* ============ FOOTER ============ */
.site-footer {
  background: #241c17;
  border-top: 1px solid #43342a;
  padding: 60px 24px 24px;
}

.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #43342a;
  margin-bottom: 24px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.site-footer__links a {
  color: #ab9686;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.15s;
}

.site-footer__links a:hover {
  color: #f6efe8;
}

.site-footer__newsletter {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-footer__newsletter label {
  font-family: "Luxia", serif;
  font-size: 15px;
}

.site-footer__newsletter input {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #43342a;
  background: #1b1511;
  color: #f6efe8;
  min-width: 200px;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer__copy {
  color: #ab9686;
  font-size: 12px;
}

.site-footer__social {
  display: flex;
  gap: 16px;
}

.site-footer__social img {
  width: 18px;
  height: 18px;
  opacity: 0.65;
  transition: opacity 0.15s;
}

.site-footer__social a:hover img {
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .header .desktop {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .page-banner {
    padding-top: 130px;
  }
}
.category-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--category-color, #fe5f5b);
  color: #1b1511;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  background: #2e241d;
  color: #f6efe8;
  transition: filter 0.15s, background-color 0.15s;
}

.btn:hover {
  filter: brightness(1.2);
}

.btn--primary {
  background: #fe5f5b;
  color: #1b1511;
}

.btn--danger {
  background: transparent;
  border-color: #b0241c;
  color: #b0241c;
}

.btn--danger:hover {
  background: #b0241c;
  color: #fff;
  filter: none;
}

.btn--ghost {
  background: transparent;
  border-color: #43342a;
}

.btn--icon {
  padding: 8px;
  width: 36px;
  height: 36px;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
}

.form-card {
  background: #241c17;
  border: 1px solid #43342a;
  border-radius: 12px;
  padding: 24px;
  max-width: 640px;
}

.form__field {
  margin-bottom: 16px;
}

.form__field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #ab9686;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__field input[type=text],
.form__field textarea,
.form__field select {
  width: 100%;
  padding: 10px 8px;
  background: #1b1511;
  border: 1px solid #43342a;
  border-radius: 6px;
  color: #f6efe8;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  outline: none;
  border-color: #fe5f5b;
}

.form__field textarea {
  min-height: 120px;
  resize: vertical;
}

.form__hint {
  font-size: 13px;
  color: #ab9686;
}

.form__actions {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}
.page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.page-head h1 {
  font-family: "Luxia", serif;
  font-size: 26px;
  font-weight: 700;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.search-box {
  display: flex;
  gap: 8px;
}

.search-box input[type=search],
.search-box input[type=text] {
  padding: 8px 8px;
  background: #241c17;
  border: 1px solid #43342a;
  border-radius: 6px;
  color: #f6efe8;
  font-size: 14px;
  min-width: 220px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid #43342a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ab9686;
}

.filter-chip.is-active {
  background: #fe5f5b;
  border-color: #fe5f5b;
  color: #1b1511;
}

.alert {
  padding: 16px;
  border-radius: 6px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
}

.alert--success {
  background: rgba(79, 157, 105, 0.15);
  color: #7fd9a0;
  border: 1px solid rgba(79, 157, 105, 0.4);
}

.alert--error {
  background: rgba(176, 36, 28, 0.15);
  color: #ff8f88;
  border: 1px solid rgba(176, 36, 28, 0.4);
}

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1b1511;
  padding: 24px;
}

.login-card {
  width: 100%;
  max-width: 380px;
  background: #241c17;
  border: 1px solid #43342a;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}

.login-card__mark {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  background: #fe5f5b;
  color: #1b1511;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Luxia", serif;
  font-weight: 700;
  font-size: 22px;
  margin: 0 auto 16px;
}

.login-card h1 {
  font-family: "Luxia", serif;
  font-size: 22px;
  margin-bottom: 4px;
}

.login-card__subtitle {
  color: #ab9686;
  font-size: 13px;
  margin-bottom: 24px;
}

.login-card .form__field {
  text-align: left;
}

.login-card .btn {
  width: 100%;
  margin-top: 8px;
}

.stat-band {
  background: #241c17;
  border: 1px solid #43342a;
  border-radius: 12px;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.stat-band__total {
  flex-shrink: 0;
}

.stat-band__value {
  font-family: "Luxia", serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: #fe5f5b;
}

.stat-band__label {
  margin-top: 4px;
  color: #ab9686;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-band__divider {
  width: 1px;
  align-self: stretch;
  background: #43342a;
}

.stat-band__breakdown {
  flex: 1;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-band__category {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-band__category-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--category-color, #fe5f5b);
  flex-shrink: 0;
}

.stat-band__category-count {
  font-weight: 700;
  color: #f6efe8;
}

.stat-band__category-label {
  color: #ab9686;
  font-size: 13px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-head h2 {
  font-family: "Luxia", serif;
  font-size: 20px;
}

.section-head a {
  font-size: 13px;
  font-weight: 600;
  color: #fe5f5b;
}

@media screen and (max-width: 767px) {
  .stat-band {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .stat-band__divider {
    width: 100%;
    height: 1px;
  }
}
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.recipe-card {
  background: #241c17;
  border: 1px solid #43342a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.15s, border-color 0.15s;
}

.recipe-card:hover {
  transform: translateY(-3px);
  border-color: #fe5f5b;
}

.recipe-card__media {
  position: relative;
  aspect-ratio: 4/3;
  background: #1b1511;
}

.recipe-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recipe-card .category-badge {
  position: absolute;
  top: 8px;
  left: 8px;
}

.recipe-card__body {
  padding: 16px;
}

.recipe-card__body h3 {
  font-family: "Luxia", serif;
  font-size: 17px;
  margin-bottom: 4px;
}

.recipe-card__count {
  color: #ab9686;
  font-size: 13px;
  margin-bottom: 16px;
}

.recipe-card__actions {
  display: flex;
  gap: 8px;
}

.recipe-grid-empty {
  padding: 40px;
  text-align: center;
  color: #ab9686;
  background: #241c17;
  border: 1px solid #43342a;
  border-radius: 12px;
}

.recipe-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.recipe-strip__item {
  flex: 0 0 auto;
  width: 140px;
  background: #241c17;
  border: 1px solid #43342a;
  border-radius: 12px;
  overflow: hidden;
}

.recipe-strip__item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.recipe-strip__item span {
  display: block;
  padding: 8px;
  font-size: 13px;
  font-weight: 600;
}

.form__field textarea#ingredients {
  font-family: ui-monospace, "SF Mono", "Courier New", monospace;
  font-size: 13px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url("../img/blue.jpg") center/cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 21, 17, 0.5) 0%, rgba(27, 21, 17, 0.92) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  padding: 160px 24px 40px;
  text-align: center;
}

.hero__content h1 {
  font-family: "Luxia", serif;
  font-size: 48px;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero__content p {
  color: #ab9686;
  font-size: 18px;
  margin-bottom: 24px;
}

.hero__badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero__badges img {
  height: 48px;
}

.btn-cta {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 999px;
  background: #fe5f5b;
  color: #1b1511;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: filter 0.15s;
}

.btn-cta:hover {
  filter: brightness(1.1);
}

@media screen and (max-width: 767px) {
  .hero {
    background-image: url("../img/blue2.jpg");
  }
  .hero__content h1 {
    font-size: 34px;
    letter-spacing: 3px;
  }
}
/* ============ TUILES CATÉGORIES ============ */
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.tile {
  position: relative;
  display: block;
  height: 420px;
  overflow: hidden;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.tile:hover img {
  transform: scale(1.06);
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 21, 17, 0) 40%, rgba(27, 21, 17, 0.85) 100%);
}

.tile__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  z-index: 2;
  text-align: center;
  font-family: "Luxia", serif;
  font-size: 20px;
  color: #f6efe8;
  letter-spacing: 1px;
}

@media screen and (max-width: 991px) {
  .tiles {
    grid-template-columns: 1fr;
  }
  .tile {
    height: 260px;
  }
}
/* ============ TÉMOIGNAGE + PRÉSENTATION ============ */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.showcase__quote {
  text-align: center;
  padding: 24px;
  background: #241c17;
  border: 1px solid #43342a;
  border-radius: 12px;
}

.showcase__quote img {
  width: 22px;
  opacity: 0.6;
}

.showcase__quote p {
  font-family: "Luxia", serif;
  font-size: 18px;
  line-height: 1.8;
  margin: 16px 0;
}

.showcase__quote small {
  color: #ab9686;
  font-style: italic;
}

.showcase__info img {
  width: 60px;
  margin-bottom: 16px;
  opacity: 0.85;
}

.showcase__info h2 {
  font-family: "Luxia", serif;
  font-size: 26px;
  margin-bottom: 16px;
}

.showcase__info p {
  color: #ab9686;
  line-height: 2;
}

@media screen and (max-width: 991px) {
  .showcase {
    grid-template-columns: 1fr;
  }
}
/* ============ "RIEN DE PLUS SIMPLE" ============ */
.steps {
  text-align: center;
  background: #241c17;
  border-top: 1px solid #43342a;
  border-bottom: 1px solid #43342a;
}

.steps > h2 {
  font-family: "Luxia", serif;
  font-size: 28px;
  margin-bottom: 40px;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.steps__step {
  padding: 24px;
  background: #1b1511;
  border: 1px solid #43342a;
  border-radius: 12px;
}

.steps__step img {
  width: 52px;
  margin-bottom: 16px;
  opacity: 0.9;
  filter: invert(1);
}

.steps__step p {
  color: #ab9686;
  font-size: 14px;
  line-height: 1.6;
}

@media screen and (max-width: 991px) {
  .steps__grid {
    grid-template-columns: 1fr;
  }
}
/* ============ COMMUNAUTÉ ============ */
.community {
  text-align: center;
  padding: 60px 24px;
}

.community h2 {
  font-family: "Luxia", serif;
  font-size: 26px;
  margin-bottom: 16px;
}

.community p {
  color: #ab9686;
  max-width: 560px;
  margin: 0 auto 24px;
}

.community__badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.community__badges img {
  height: 48px;
}

.recipe-card .ingredients-list {
  color: #ab9686;
  font-size: 13px;
  line-height: 1.6;
  list-style: disc inside;
  margin-top: 4px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.article-card {
  background: #241c17;
  border: 1px solid #43342a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.15s, border-color 0.15s;
}

.article-card:hover {
  transform: translateY(-3px);
  border-color: #fe5f5b;
}

.article-card__media {
  aspect-ratio: 16/9;
  background: #1b1511;
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-card__body {
  padding: 24px;
}

.article-card__date {
  display: block;
  color: #fe5f5b;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.article-card__body h3 {
  font-family: "Luxia", serif;
  font-size: 19px;
  margin-bottom: 8px;
}

.article-card__excerpt {
  color: #ab9686;
  font-size: 14px;
  line-height: 1.6;
}
