/* Page-owned styles for Notre Cuisine */

.notre-cuisine-main {
  overflow: hidden;
}

/* Shared section rhythm */
.notre-cuisine-main .section {
  padding-block: var(--space-7);
}

@media (min-width: 768px) {
  .notre-cuisine-main .section {
    padding-block: var(--space-9);
  }
}

/* Hero */
.nc-hero {
  background-color: var(--color-background);
}

.nc-hero__container {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  align-items: center;
}

.nc-hero__text {
  width: 100%;
  max-width: 800px;
  text-align: center;
  margin-inline: auto;
}

.nc-hero__text h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  line-height: 1.2;
  margin-block-end: var(--space-4);
}

.nc-hero__lead {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-block-end: 0;
}

.nc-hero__figure {
  width: 100%;
  max-width: 800px;
  margin: 0;
}

.nc-hero__figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.nc-hero__figure figcaption {
  margin-block-start: var(--space-2);
  text-align: center;
}

@media (min-width: 768px) {
  .nc-hero__container {
    flex-direction: row;
    align-items: center;
    gap: var(--space-7);
  }

  .nc-hero__text {
    flex: 0 0 60%;
    max-width: 60%;
    text-align: left;
    margin-inline: 0;
  }

  .nc-hero__figure {
    flex: 0 0 40%;
    max-width: 40%;
  }
}

@media (max-width: 767px) {
  .nc-hero__container {
    gap: var(--space-5);
  }

  .nc-hero__text {
    max-width: 100%;
  }

  .nc-hero__figure {
    max-width: 100%;
  }
}

/* Philosophie */
.nc-philosophie {
  background-color: var(--color-surface);
}

.nc-philosophie__container {
  display: flex;
  justify-content: center;
}

.nc-philosophie__content {
  width: 100%;
  max-width: 800px;
}

.nc-philosophie__content h2 {
  margin-block-end: var(--space-5);
}

.nc-philosophie__content h3 {
  margin-block-end: var(--space-3);
}

.nc-copy {
  margin-block-end: var(--space-4);
}

.nc-copy--left {
  max-width: 700px;
  margin-inline: 0;
  text-align: left;
}

.nc-copy--center {
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
}

.nc-quote {
  margin-block: var(--space-5);
  padding: var(--space-5);
  background-color: var(--color-highlight);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-medium) var(--radius-medium) 0;
  font-style: italic;
}

.nc-quote p {
  margin-block-end: 0;
}

.nc-list {
  margin-block-end: var(--space-5);
  padding-inline-start: var(--space-5);
}

.nc-list > li {
  margin-block-end: var(--space-2);
  position: relative;
  padding-inline-start: var(--space-4);
}

.nc-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

.nc-list > li:last-child {
  margin-block-end: 0;
}

/* Ingrédients */
.nc-ingredients {
  background-color: var(--color-background);
}

.nc-ingredients__container {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.nc-ingredients__text {
  width: 100%;
}

.nc-ingredients__text h2 {
  margin-block-end: var(--space-5);
}

.nc-ingredients__text h3 {
  margin-block-end: var(--space-3);
}

.nc-ingredients__figure {
  width: 100%;
  margin: 0;
}

.nc-ingredients__figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.nc-ingredients__figure figcaption {
  margin-block-start: var(--space-2);
}

@media (min-width: 768px) {
  .nc-ingredients__container {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-7);
  }

  .nc-ingredients__text {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .nc-ingredients__figure {
    flex: 0 0 40%;
    max-width: 40%;
  }
}

@media (max-width: 767px) {
  .nc-ingredients__container {
    gap: var(--space-5);
  }

  .nc-ingredients__text,
  .nc-ingredients__figure {
    max-width: 100%;
  }
}

/* Techniques */
.nc-techniques {
  background-color: var(--color-surface);
}

.nc-techniques__container {
  display: flex;
  justify-content: center;
}

.nc-techniques__content {
  width: 100%;
  max-width: 800px;
}

.nc-techniques__content h2 {
  margin-block-end: var(--space-5);
}

.nc-techniques__content h3 {
  margin-block-end: var(--space-3);
}

/* Casino */
.nc-casino {
  background-color: var(--color-background);
}

.nc-casino__container {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.nc-casino__text {
  width: 100%;
}

.nc-casino__text h2 {
  margin-block-end: var(--space-5);
}

.nc-casino__text h3 {
  margin-block-end: var(--space-3);
}

.nc-casino__figure {
  width: 100%;
  margin: 0;
}

.nc-casino__figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.nc-casino__figure figcaption {
  margin-block-start: var(--space-2);
}

@media (min-width: 768px) {
  .nc-casino__container {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-7);
  }

  .nc-casino__text {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .nc-casino__figure {
    flex: 0 0 40%;
    max-width: 40%;
  }
}

@media (max-width: 767px) {
  .nc-casino__container {
    gap: var(--space-5);
  }

  .nc-casino__text,
  .nc-casino__figure {
    max-width: 100%;
  }
}

/* Témoignage */
.nc-temoignage {
  background-color: var(--color-surface);
}

.nc-temoignage__container {
  display: flex;
  justify-content: center;
}

.nc-temoignage__quote {
  width: 100%;
  max-width: 600px;
  margin: 0;
  padding: var(--space-6);
  background-color: var(--color-highlight);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-medium) var(--radius-medium) 0;
  font-style: italic;
  text-align: center;
}

.nc-temoignage__quote p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-block-end: var(--space-4);
}

.nc-temoignage__quote cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-on-light);
}

/* CTA */
.nc-cta {
  background-color: var(--color-background);
}

.nc-cta__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  text-align: center;
}

.nc-cta__container h2 {
  margin-block-end: 0;
}

.nc-cta__container .nc-copy {
  margin-block-end: 0;
}

.nc-cta__container .btn {
  min-width: 220px;
}

@media (max-width: 767px) {
  .nc-cta__container {
    gap: var(--space-4);
  }
}
