 /* ====== IMPORT GOOGLE FONTS ====== */
    @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

    /* ====== RESET & BASE ====== */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Lato', sans-serif;
      line-height: 1.8;
      color: #2c2c2c;
      background-color: #f5f1e8;
    }

    h1, h2, h3 {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      color: #1a1a1a;
    }

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

    img {
      max-width: 100%;
      display: block;
      transition: transform 0.4s ease;
    }

    img:hover {
      transform: scale(1.02);
    }

    /* Animation au scroll */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    section {
      animation: fadeInUp 0.8s ease-out;
    }

    /* ====== HEADER / HERO ====== */
    header {
      height: 80vh;
      background: url('images/Foie-gras-maison_waifu2x_photo_noise1_scale.webp') center/cover no-repeat;
      background-attachment: fixed;
      background-size: cover;       /* remplit le conteneur */
      background-position: center;  /* centre l’image */
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: crisp-edges;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
    }

    /* Fix pour mobile - background-attachment: fixed ne fonctionne pas bien sur iOS */
    @supports (-webkit-touch-callout: none) {
      header {
        background-attachment: scroll;
      }
    }

    @media (max-width: 767px) {
      header {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        height: 70vh; /* Hauteur réduite pour moins zoomer l'image */
        min-height: 400px;
      }
      
      .hero-content h1 {
        font-size: 2.2rem;
      }
      
      .hero-content p {
        font-size: 1.1rem;
      }
    }

    header::before {
      content: '';
      position: absolute;
      top:0; left:0; right:0; bottom:0;
    }

    .hero-content {
      position: relative;
      color: #fff;
      max-width: 90%;
      z-index: 1;
      animation: fadeInUp 1s ease-out;
    }

    .hero-content h1 {
      font-size: 4rem;
      margin-bottom: 1rem;
      font-weight: 700;
      letter-spacing: 2px;
      color: #d4a76a;
      text-shadow: 
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        2px 4px 8px rgba(0,0,0,0.5);
    }

    .hero-content p {
      font-size: 1.4rem;
      margin-bottom: 2.5rem;
      font-weight: 300;
      letter-spacing: 1px;
      text-shadow: 
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        2px 2px 4px rgba(0,0,0,0.5);
      -webkit-text-stroke: 0.5px #000;
    }

    .cta-btn {
      background: linear-gradient(135deg, #d4a76a 0%, #b8935e 100%);
      color: #fff;
      padding: 1rem 3rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      letter-spacing: 1px;
      box-shadow: 0 8px 20px rgba(180, 147, 94, 0.4);
      transition: all 0.4s ease;
      display: inline-block;
    }

    .cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(180, 147, 94, 0.6);
      background: linear-gradient(135deg, #e0b878 0%, #c9a36d 100%);
    }

    /* ====== SECTIONS ====== */
    section {
      padding: 5rem 2rem;
      background-color: #fdfcf9;
    }

    section:nth-child(even) {
      background-color: #f8f6f2;
    }

    section h2 {
      font-size: 3rem;
      text-align: center;
      margin-bottom: 3rem;
      color: #8b623a;
      font-weight: 600;
      letter-spacing: 1px;
      position: relative;
      display: inline-block;
      left: 50%;
      transform: translateX(-50%);
    }

    section h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: linear-gradient(90deg, #d4a76a, #b8935e);
      border-radius: 2px;
    }

    /* Produit */
    .produit {
      display: flex;
      flex-direction: column;
      gap: 3rem;
      max-width: 1200px;
      margin: 0 auto;
      align-items: center;
    }

    .produit img {
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(139, 98, 58, 0.15);
      width: 100%;
      max-width: 600px;
      transition: all 0.4s ease;
    }

    .produit img:hover {
      box-shadow: 0 15px 50px rgba(139, 98, 58, 0.25);
      transform: translateY(-5px) scale(1.02);
    }

    .produit-description {
      max-width: 600px;
    }

    .produit-description p {
      font-size: 1.1rem;
      line-height: 1.9;
      color: #4a4a4a;
      margin-bottom: 1.5rem;
    }

    .produit-description ul {
      list-style: none;
      margin-top: 1.5rem;
    }

    .produit-description li {
      padding: 0.7rem 0;
      padding-left: 2rem;
      position: relative;
      font-size: 1.05rem;
      color: #4a4a4a;
    }

    .produit-description li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #d4a76a;
      font-weight: bold;
      font-size: 1.3rem;
    }

    /* Savoir-faire */
    .savoir-faire {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
      align-items: center;
    }

    .savoir-faire .items {
      display: flex;
      flex-direction: column;
      gap: 3rem;
      width: 100%;
    }

    .savoir-faire .item {
      text-align: center;
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 2.5rem 2rem;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 8px 35px rgba(139, 98, 58, 0.15);
      transition: all 0.4s ease;
    }

    .savoir-faire .item:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 50px rgba(139, 98, 58, 0.25);
    }

    .savoir-faire .item img {
      width: 120px;
      height: 120px;
      margin: 0 auto 1.5rem;
      border-radius: 50%;
      padding: 1rem;
      background: linear-gradient(135deg, #fdfcf9, #f8f6f2);
      box-shadow: 0 6px 20px rgba(139, 98, 58, 0.18);
    }

    .savoir-faire .item h3 {
      color: #8b623a;
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .savoir-faire .item p {
      color: #5a5a5a;
      font-size: 1.05rem;
      line-height: 1.8;
    }

    /* Contact */
    #contact .contact-intro {
      text-align: center;
      margin-bottom: 2rem;
      font-weight: 600;
      color: #050505;
      font-size: 1.1rem;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
      max-width: 900px;
      margin: 0 auto;
      padding: 2rem;
    }

    .contact-item {
      background: linear-gradient(135deg, #fff 0%, #fdfcf9 100%);
      padding: 3rem 2rem;
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 10px 40px rgba(139, 98, 58, 0.18);
      border: 1px solid rgba(212, 167, 106, 0.1);
      transition: all 0.4s ease;
    }

    .contact-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 18px 55px rgba(139, 98, 58, 0.28);
      border-color: rgba(212, 167, 106, 0.3);
    }

    .contact-icon {
      font-size: 3.5rem;
      display: block;
      margin-bottom: 1.5rem;
      filter: grayscale(30%);
      transition: all 0.3s ease;
    }

    .contact-item:hover .contact-icon {
      filter: grayscale(0%);
      transform: scale(1.1);
    }

    .contact-item h3 {
      margin-bottom: 1rem;
      color: #8b623a;
      font-size: 1.6rem;
    }

    .contact-item a {
      color: #b8935e;
      font-size: 1.1rem;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-block;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 100%;
    }

    .contact-item a:hover {
      color: #d4a76a;
      transform: scale(1.05);
    }

    /* Footer */
    footer {
      background: linear-gradient(135deg, #3a2b1f 0%, #5a4636 100%);
      color: #f8f6f2;
      text-align: center;
      padding: 3rem 1rem;
      font-size: 1rem;
      border-top: 3px solid #d4a76a;
    }

    footer p {
      margin: 0.5rem 0;
    }

    footer a {
      color: #d4a76a;
      margin: 0 0.5rem;
      transition: all 0.3s ease;
      font-weight: 500;
    }

    footer a:hover {
      color: #e0b878;
      text-decoration: underline;
    }

    /* ====== RESPONSIVE ====== */
    @media(min-width: 768px) {
      .produit {
        flex-direction: row;
        justify-content: center;
        gap: 4rem;
      }

      .savoir-faire .items {
        flex-direction: row;
      }

      .contact-info {
        flex-direction: row;
      }

      .contact-item {
        flex: 1;
      }
        header {
    background-position: top;  /* recentre le header pour mobiles */
  }
    }