/* ==========================================
   RESPONSIVE - TABLETTE (600px+)
   ========================================== */

@media (min-width: 600px) {
  body,
  html {
    padding: 15px;
  }

  .header-subtitle {
    font-size: 0.35em;
    letter-spacing: 1px;
  }

  .header-logo img {
    height: 100px;
  }

  .header-carte {
    width: 100px;
    height: 145px;
  }

  .header-carte-titre {
    font-size: 14px;
  }

  /* Hero */
  .hero {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-left {
    max-width: 500px;
  }

  .hero-top {
    flex-direction: row;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .text-wrapper {
    flex: 1;
  }

  .bio-text p {
    font-size: 1rem;
  }

  .hero-social {
    margin-top: 30px;
  }

  /* Services grid */
  .grid-services {
    grid-template-columns: repeat(2, 210px);
    grid-template-rows: repeat(2, 360px);
    grid-auto-flow: row;
    justify-content: center;
    overflow-x: visible;
    max-width: 480px;
    gap: 30px;
    scrollbar-width: none;
  }

  .grid-services::-webkit-scrollbar {
    display: none;
  }

  .carte-container {
    scroll-snap-align: none;
    grid-row: auto;
    grid-column: auto;
  }

  /* 3ème carte centrée sur la 2ème rangée */
  .carte-container:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
  }

  /* Mise en garde */
  .mise-en-garde {
    margin-top: 60px;
    padding: 0 20px;
  }

  .mise-en-garde p {
    font-size: 1rem;
  }

  /* Baguettes */
  .baguette-bg,
  .baguette-bg-right {
    background-size: 35%;
  }

  /* Cookies */
  .cookie-banner-content {
    flex-direction: row;
  }
}

@media (max-width: 600px) {
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }
}
