@charset "UTF-8";

/* =======================
   RESET & TYPOGRAPHIE
======================= */
html, html * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
    margin: 0 auto;
    background: #f9f6f1;
    color: #000;
    font-size: 16px;
    line-height: 1.5;
}

/* IMAGES RESPONSIVES */
img {
    width: 100%;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* =========================
   HEADER
========================= */
.style-logo {
    width: 72px;
}

.brand-text .site-title {
    font-size: 18px;
    font-weight: 600;
}

.brand-text .site-subtitle {
    font-size: 12px;
    font-weight: 400;
}

.navbar {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .navbar-brand {
        display: flex;
        align-items: center;
    }
    .style-logo {
        width: 108px;
    }
    .brand-text {
        display: flex;
        flex-direction: column;
        margin-left: 15px;
    }
    .brand-text .site-title {
        font-size: 32px;
        font-weight: 600;
    }
    .brand-text .site-subtitle {
        font-size: 18px;
        font-weight: 400;
    }
}

/* =========================
   HERO / SLIDESHOW
========================= */
.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    height: 90vh;
  }
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item {
  height: 60vh;
}

@media (min-width: 768px) {
  .hero .carousel,
  .hero .carousel-inner,
  .hero .carousel-item {
    height: 90vh;
  }
}

.hero .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Voile sombre */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
 background: linear-gradient(
      rgba(0,0,0,0.25),
      rgba(0,0,0,0.10)
  );
  z-index: 1;
}

/* =========================
   HERO TEXT
========================= */
.hero-overlay {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  color: #fff;
  max-width: 90%;
  width: 100%;
  padding: 10px 15px;
  /* Ne pas mettre opacity:1 ici, laisser l'animation */
}

/* H1 hero */
.hero-overlay h1 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 6px 18px rgba(0,0,0,0.6);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  line-height: 1.15;
  text-align: center;
  font-size: 24px;
  opacity: 0;                 /* départ transparent */
  transform: translateY(20px); /* départ plus bas */
  animation: heroFadeUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

/* Sous-texte */
.hero-overlay p {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
  opacity: 0;                  /* départ transparent */
  transform: translateY(20px); /* départ plus bas */
  animation: heroFadeUp 1s ease-out forwards;
  animation-delay: 0.9s;       /* apparait après le titre */
}

/* Desktop */
@media (min-width: 768px) {
  .hero-overlay {
    max-width: 1300px;
    padding: 20px 40px;
  }
  .hero-overlay h1 {
    font-size: 42px;
    letter-spacing: 0.10em;
  }
  .hero-overlay p {
    font-size: 18px;
  }
}
/* =========================
   ANIMATIONS
========================= */
@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================
   MAIN CONTENT
========================= */
main {
  padding: 40px 20px;
}

main p,
main li {
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  max-width: 720px;
  margin: 0 auto 18px;
}

main h2 {
    font-size: 22px;
    text-align: center;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1.15;
    margin: 0 0 20px 0;
}

main h3 {
    font-size: 18px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1.35;
}

/* Desktop */
@media (min-width: 768px) {
  main p,
  main li { font-size: 16px; }
    main h2 { font-size: 32px; letter-spacing: 0.14em; }
    main h3 { font-size: 20px; }
}

/* =======================
   FEATURES LIST
======================= */
.features {
  display: grid;
  grid-template-columns: 1fr; /* mobile */
  gap: 12px;
  margin: 25px 0 35px;
  text-align: center;
}

.feature-item {
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 12px 10px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .feature-item {
    border-top: none;
    border-left: 1px solid rgba(0,0,0,0.1);
    padding: 0 20px;
  }
  .feature-item:first-child { border-left: none; }
}

/* =========================
   BOUTONS
========================= */
.btn-premium {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 20px;
  border: 2px solid #2d4a54;
  background-color: #f9f6f1;
  color: #2d4a54;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.btn-premium:hover {
  background-color: #2d4a54;
  color: #f9f6f1;
  border-color: #2d4a54;
  transform: translateY(-2px);
}

/* =========================
   FOOTER
========================= */
footer {
  background-color: #2d4a54;
  color: #f9f6f1;
  letter-spacing: 0.05em;
  padding: 25px 20px;
  text-align: center;
}

.footer-text {
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

footer p,
footer a { font-weight: 400; }

footer a {
  color: #f9f6f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover { color: #c0b8a0; }

footer .social-icons img {
  width: 32px;
  margin: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

footer .social-icons img:hover {
  transform: scale(1.1);
  opacity: 0.85;
}

.footer-legal {
  margin-top: 10px;
  font-size: 10px;
  opacity: 0.6;
  letter-spacing: 0.03em;
}

/* Desktop / tablette */
@media (min-width: 768px) {
  footer { padding: 20px 30px; }
  .footer-text { font-size: 12px; }
  footer .social-icons img { width: 40px; margin: 5px; }
}

/* Mobile : colonnes empilées */
@media (max-width: 767.98px) {
  footer .row { flex-direction: column; }
  footer .row > div {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 15px;
    text-align: center;
  }
}

/* =========================
   PAGE PHILOSOPHIE
========================= */

/* Sections de contenu */
.philo-article {
  padding: 25px 15px;
  max-width: 900px;
  margin: 25px auto 35px;
}
.philo-article h2 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.06em;
  margin-top: 0;
  margin-bottom: 12px;
  text-align: center;
}
.philo-article p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}
/* Liste spéciale (plats traditionnels) */
.philo-article ul {
  margin-left: 20px;
  padding-left: 0;
  list-style-type: disc;
}

.philo-article ul li {
  margin-bottom: 5px;
  font-size: 15px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .philo-article {
    margin: 40px auto 55px;
  }

  .philo-article h2 {
    font-size: 30px;
    margin-bottom: 14px;
  }

  .philo-article p {
    font-size: 16px;
  }
}


/* Images intégrées */
.philo-article img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 8px;
}

/* Boutons spécifiques page philo */
.btn-philo {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 20px;
  border: 2px solid #2d4a54;
  background-color: #f9f6f1;
  color: #2d4a54;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.btn-philo:hover {
  background-color: #2d4a54;
  color: #f9f6f1;
  border-color: #2d4a54;
  transform: translateY(-2px);
}
.film { 
  margin-bottom: 30px;
  padding: 10px 0;
}
.menu-page h2 {
  margin-top: 40px;
}

.menu-page h3 {
  margin-top: 30px;
  text-align: center;
}
.menu-page ul {
  margin-bottom: 25px;
}
/* =========================
   MENU PAGE H4
========================= */
.menu-page h4 {
    font-family: "Playfair Display", serif;
    font-weight: 500;
    font-size: 16px;        /* un peu plus petit que h3 */
    letter-spacing: 0.08em; /* légèrement espacé, cohérent avec h2/h3 */
    line-height: 1.5;
    margin: 15px 0 10px;    /* espace avant/après pour aérer le texte */
    text-align: left;       /* on laisse aligné à gauche, pas centré */
	padding-left: 10px
}


/* Desktop */
@media (min-width: 768px) {
    .menu-page h4 {
        font-size: 18px;    /* augmente légèrement pour desktop */
    }
}
/* Breadcrumb fine line + petite typo */
.breadcrumb-container {
  padding: 8px 0 4px 0;
  border-bottom: 1px solid rgba(0,0,0,.08); /* hairline */
}

.breadcrumb {
  margin: 0;
  padding: 0;
  background: none;
}

/* Petite typo + ultra léger */
.breadcrumb a,
.breadcrumb-item,
.breadcrumb-item span {
  color: rgba(90,90,90,.65);
  font-size: 0.78rem;
  letter-spacing: .02em;
  font-weight: 300;
}

/* Séparateur très fin */
.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: rgba(120,120,120,.55);
  padding: 0 .30rem;
}

/* Survol discret */
.breadcrumb a:hover {
  color: rgba(60,60,60,.85);
  text-decoration: none;
  border-bottom: 1px dotted rgba(60,60,60,.4);
}

/* Page active */
.breadcrumb-item.active {
  color: rgba(60,60,60,.75);
}

.recipe-card__link {
    text-decoration: none; /* supprime le soulignement */
    color: inherit;        /* hérite de la couleur du texte parent (noir par défaut) */
}

.recipe-card__link:hover {
    color: #2d4a54;        /* couleur au survol, ou comme tu veux */
}
/* =========================
   BOUTON RETOUR EN HAUT — VERSION PREMIUM
========================= */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 28px;

  width: 46px;
  height: 46px;
  border-radius: 50%;

  background: rgba(249,246,241,0.85);   /* beige + léger transparent */
  border: 2px solid rgba(45,74,84,0.85); /* bleu signature */
  color: #2d4a54;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;
  text-decoration: none;
  font-weight: 300;

  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
  backdrop-filter: blur(6px); /* effet glass premium */

  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity .35s ease, transform .35s ease,
              background .3s ease, color .3s ease,
              box-shadow .3s ease;
}

/* affichage */
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* hover */
.back-to-top:hover {
  background: #2d4a54;
  color: #f9f6f1;
  box-shadow: 0 16px 32px rgba(0,0,0,0.35);
}

/* Mobile optimisation */
@media (max-width: 768px) {
  .back-to-top {
    width: 42px;
    height: 42px;
    bottom: 82px;
    right: 20px;
    font-size: 22px;
  }
}
html {
  scroll-behavior: smooth;
}
/* =========================
   FICHES RECETTES
========================= */
 .recipe-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 720px;
  margin: 30px auto 20px;
}

.recipe-nav a {
  font-family: "Playfair Display", serif;
  font-size: 14px;
  letter-spacing: .06em;
  text-decoration: none;
  color: rgba(0,0,0,.75);

  border: 1px solid rgba(0,0,0,.25);
  padding: 8px 14px;
  border-radius: 6px;

  transition: all .25s ease;
}

.recipe-nav a:hover {
  color: #2d4a54;
  border-color: #2d4a54;
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .recipe-nav a {
    font-size: 15px;
    padding: 10px 18px;
  }
}
