/* ============================================
   BELLE POUR SON MARIAGE - Home Page
   Tablet Overrides (min-width: 768px)
   ============================================ */

@media (min-width: 768px) {

  :root {
    --section-py: var(--space-3xl);
    --section-px: var(--space-lg);
  }

  /* --- Navigation --- */
  .nav__links {
    display: flex;
  }

  .nav__cta {
    display: inline-flex;
  }

  .nav__burger {
    display: none;
  }

  /* --- Hero --- */
  .hero {
    align-items: center;
    padding-bottom: 0;
  }

  .hero__content {
    padding-bottom: var(--space-3xl);
  }

  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }

  /* --- Collection --- */
  .collection__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .collection__card:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
  }

  /* --- About --- */
  .about__inner {
    flex-direction: row;
    align-items: stretch;
    gap: var(--space-2xl);
  }

  .about__image {
    flex: 1;
    aspect-ratio: auto;
    min-height: 500px;
  }

  .about__content {
    flex: 1;
    padding: var(--space-xl) 0;
  }

  /* --- Testimonials --- */
  .testimonial-card {
    flex: 0 0 48%;
  }

  /* --- Process --- */
  .process__steps {
    max-width: 700px;
  }

  /* --- Conditions Banner --- */
  .conditions-banner__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  /* --- CTA Final --- */
  .cta-final {
    padding: var(--space-4xl) var(--section-px);
  }

  .cta-final__actions {
    flex-direction: row;
    justify-content: center;
  }

  /* --- Footer --- */
  .footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
  }

  .footer__links {
    flex-direction: row;
    gap: var(--space-md);
  }
}
