:root {
  --brand: #2f72ff;           /* bleu rassurant */
  --brand-600: #2156c8;
  --bg: #f7fbff;              /* clair et lumineux */
  --text: #0b1b2b;
  --muted: #5b6b7b;
  --card: #dfdfdf;
  --shadow: 0 10px 30px rgba(5, 36, 73, 0.08);
}

/* RESET */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}


/* =========================
   Header & Navigation (style Céline Erriquez)
========================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.85);     /* fond clair et translucide */
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e7eef7;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(5, 36, 73, 0.05);
}


/* Effet subtil au survol */
.logo-img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(47, 114, 255, 0.25);
}

/* ========== BRAND (logo + texte) ========== */
.brand {
  display: flex;
  align-items: center;
  gap: 1rem;                          /* espace un peu plus large */
  text-decoration: none;
  color: inherit;
  transform-origin: left center;
}

/* Logo image carré et harmonieux */
.logo-img {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(47, 114, 255, 0.15);
  background: transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.logo-img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(47, 114, 255, 0.25);
}

/* Texte du logo */
.brand-text {
  font-weight: 700;
  line-height: 1.15;
  font-size: 1.25rem;                 /* taille principale plus lisible */
  max-width: 220px; /* évite que le texte du logo pousse trop la nav */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-text small {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.95rem;                 /* un peu plus grand aussi */
}


/* Ajustement global du header */
.header-inner {
  display: grid;
  /* colonne centrale devient vraiment flexible pour éviter le débordement */
  grid-template-columns: auto minmax(0, 1fr) auto;  /* [brand] | [nav flexible] | [contact] */
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

/* Nav centrée */
.main-nav {
  justify-self: center;
  /* Permet à la zone centrale de rétrécir si l'espace est limité */
  min-width: 0;
}

/* Bouton contact collé à droite */
.contact-btn {
  justify-self: end;
}

/* Responsive */
@media (max-width: 768px) {
  .logo-img {
    height: 50px;
    width: 50px;
    border-radius: 10px;
  }

  .brand-text small {
    font-size: 0.8rem;
  }
}


/* Ajustement responsive */
@media (max-width: 768px) {
  .logo-img {
    height: 50px;
    width: 50px;
    border-radius: 10px;
  }
}


/* Base nav */
 nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  /* Evite l'apparition de flèches/contrôles de scroll : autorise le wrapping des items */
  flex-wrap: wrap;
  overflow-x: visible;
 }

nav li a {
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s, background 0.3s;
  padding: 0.4rem 0.7rem;
  border-radius: 10px;
}
nav li a:hover {
  background: #eaf2ff;
  color: var(--brand);
}

/* Nav centrée (optionnelle) */
.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}



/* Burger (mobile) */
.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.burger span {
  height: 3px;
  width: 25px;
  background: var(--text);
  border-radius: 2px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .burger {
    display: flex;
    margin-left: 10px; /* espace entre le bouton contact et le burger */
  }

  header {
    flex-wrap: wrap;
    gap: 10px;
    padding: 0.8rem 1.2rem;
  }

  nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border-top: 1px solid #e7eef7;
    box-shadow: 0 5px 20px rgba(47, 114, 255, 0.05);
    border-radius: 0 0 12px 12px;
  }

  nav.open {
    display: flex;
  }

  /* Simplifie la nav principale en mobile : centrer les éléments et agrandir les cibles */
  .main-nav {
    width: 100%;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
    padding: 0.5rem 1rem;
  }

  .main-nav ul li a {
    display: block;
    width: 100%;
    padding: 0.8rem 0.75rem;
    border-radius: 10px;
  }

  /* Bouton contact replace to right but keep accessible */
  .contact-btn {
    order: 3;
    margin-left: auto;
  }

  /* Nav toggle / burger alignement */
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Ensure visible focus states for keyboard users */
  nav a:focus, .cta-btn-header:focus, .contact-btn:focus {
    outline: 3px solid rgba(47,114,255,0.14);
    outline-offset: 2px;
  }

  nav ul {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0;
  }

  nav li a {
    color: var(--text);
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }
}




/* BUTTONS */
.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.btn:hover,
.btn:focus {
  background: var(--brand-600);
}

.btn.ghost {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--brand);
}

.btn.ghost:hover {
  background: #eaf2ff;
}

.link {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.link:hover {
  text-decoration: underline;
}

/* CTA header (ex: bouton Contact) */
.cta-btn-header {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand), #4d82ec);
  color: #fff;
  text-decoration: none;
  padding: 0.55rem 1.4rem;
  border: none;
  border-radius: 22px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(47, 114, 255, 0.18);
  transition: all 0.25s ease;
  margin-top: 0;
}

.cta-btn-header:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(47, 114, 255, 0.28);
  background: linear-gradient(135deg, #4d82ec, var(--brand));
}

/* Effet au clic */
.cta-btn-header:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(47, 114, 255, 0.22);
}

/* HERO */
.hero {
  padding: clamp(2rem, 4vw, 4rem) 0;
  background: radial-gradient(1200px 600px at 80% -10%, #dfeeff 0%, rgba(223,238,255,0) 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
}

.hero-copy h1 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.1;
}

.hero-copy p {
  color: var(--muted);
  max-width: 52ch;
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 450px;                        /* hauteur du visuel */
  border-radius: 24px;                  /* arrondis doux */
  overflow: hidden;
  background: linear-gradient(180deg, #eaf2ff, #ffffff);
  isolation: isolate;                   /* permet les effets sans casser le layout */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-visual:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(47, 114, 255, 0.22);
}

/* L’image interne */
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;                    /* recadre sans distorsion */
  object-position: center;              /* centre le focus */
  border-radius: inherit;               /* suit les coins arrondis */
  transition: transform 0.5s ease, filter 0.5s ease;
}

/* Effet subtil au survol */
.hero-visual:hover img {
  transform: scale(1.04);
  filter: brightness(1.05) saturate(1.1);
}

/* Petite lueur de fond “pro” */
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* CTA dans le hero : espacement entre boutons */
.hero-cta {
  display: inline-flex;
  gap: 1rem;               /* espace horizontal par défaut */
  align-items: center;
  flex-wrap: wrap;         /* permet l'empilement propre en mobile */
}

@media (max-width: 480px) {
  .hero-cta {
    gap: 0.75rem;          /* léger ajustement sur très petit écran */
    width: 100%;
    justify-content: flex-start;
  }
  .hero-cta > a { width: auto; }
}


/* SECTIONS */
.section {
  padding: clamp(2.5rem, 4vw, 4rem) 0;
}

/* Réduire encore l'espace immédiatement après le hero */
.hero + .section {
  padding-top: clamp(0.5rem, 1.6vw, 1rem);
}

.section.alt {
  background: #f2f7ff;
}

.section h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.section-intro {
  color: var(--muted);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.bullets {
  padding-left: 1.1rem;
}

.bullets li {
  margin: 0.35rem 0;
}

/* ===== PORTRAIT CARD ===== */
.portrait-card {
  margin-top: 120px;
  background: var(--card);
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(47, 114, 255, 0.12);
  padding: 1.2rem;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portrait-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(47, 114, 255, 0.18);
}

/* ===== Image container ===== */
.portrait {
  position: relative;
  width: 100%;
  height: 100%;                        /* hauteur équilibrée */
  border-radius: 18px;
  overflow: hidden;                     /* masque l'image si elle dépasse */
  background: linear-gradient(180deg, #eaf2ff, #ffffff);
  box-shadow: inset 0 0 0 1px rgba(47, 114, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== Image interne ===== */
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;                    /* remplissage sans déformation */
  object-position: center;              /* centrée visuellement */
  border-radius: inherit;               /* suit les bords arrondis */
  transition: transform 0.6s ease;      /* seulement le zoom */
}

.portrait-card:hover img {
  transform: scale(1.05);               /* zoom doux, sans changement de couleur */
}


/* ===== Légende ===== */
.caption {
  color: var(--muted);
  margin-top: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.4;
}


/* ===== CARDS (grille) ===== */
.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* ===== Carte (structure) ===== */
.card.unavailable {
  position: relative;
  filter: grayscale(100%);
  pointer-events: none;
  opacity: 0.6;
}

.card.unavailable::before {
  content: "Boutique à venir";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1.2rem;
  text-align: center;
}

.card{
  display: flex;
  flex-direction: column;  /* empile le contenu */
  height: 100%;            /* uniforme dans la grille */
  background: var(--card);
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

/* Sous-titre, listes, etc. */
.card .subtitle{
  color: var(--muted);
  margin-top: -0.25rem;
}

.features{
  padding-left: 1.1rem;
  color: #304255;
}

/* Prix collé au bas du contenu (pousse ce qui suit) */
.price{
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: auto;        /* 🔥 fait descendre le prix */
  margin-bottom: 0.5rem;   /* petit espace avant les boutons */
}

/* Boutons en bas de la carte */
.card-actions{
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 0;           /* pas besoin d’auto ici */
}

/* Médias produit */
.product-media{
  height: 176px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eaf1ff, #ffffff);
  box-shadow: inset 0 0 0 1px rgba(47,114,255,0.06);
  margin-bottom: 0.8rem;
}

.product .tags{
  height: 176px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, #eaf1ff, #ffffff),
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(47,114,255,0.12) 12px 24px);
  box-shadow: inset 0 0 0 1px rgba(47,114,255,0.08);
}

/* Petites étiquettes “chips” si besoin */
.tag {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--brand-600);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(47,114,255,0.08);
  margin-right: 0.4rem;
}
/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery img {
  border-radius: 14px;
  box-shadow: var(--shadow);
}

/* CONTACT CENTRÉ */
#contact {
  min-height: auto;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f2f7ff 0%, #ffffff 100%);
  padding: clamp(2.5rem, 4vw, 4rem) 2rem;
}

#contact .grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  width: 100%;
}

#contact .contact-aside {
  display: none;
}

#contact .contact-form {
  background: var(--card);
  padding: 2rem 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  max-width: 520px;
  width: min(520px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

#contact .contact-form label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
}

#contact .contact-form input,
#contact .contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1.5px solid #dbe6f7;
  border-radius: 12px;
  font: inherit;
  margin-top: 0.3rem;
}

/* ===== Bouton du formulaire de contact ===== */
#contact .contact-form button {
  align-self: center;
  margin-top: 0.8rem;
  background: linear-gradient(135deg, var(--brand), #4d82ec);
  color: #fff;
  text-decoration: none;
  padding: 0.65rem 1.8rem;
  border: none;
  border-radius: 24px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(47, 114, 255, 0.2);
  transition: all 0.25s ease;
}

/* Effet au survol */
#contact .contact-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(47, 114, 255, 0.3);
  background: linear-gradient(135deg, #4d82ec, var(--brand));
}

/* Effet au clic */
#contact .contact-form button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(47, 114, 255, 0.25);
}

/* FOOTER */
.site-footer {
  padding: 2rem 0 1rem;
  background: linear-gradient(180deg, #0a1829 0%, #0c1e36 100%);
  color: #dfeaff;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(223, 234, 255, 0.15);
}

.footer-brand h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

.footer-brand p {
  margin: 0;
  color: #a0b4d0;
  font-size: 0.85rem;
}

.footer-social h4 {
  margin: 0 0 0.75rem 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #dfeaff;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
}

.social-icons a:hover {
  background: var(--brand);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(47, 114, 255, 0.3);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.25rem;
  font-size: 0.85rem;
  color: #8a9eb8;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}

.footer-legal a {
  color: #8a9eb8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

/* RESPONSIVE FOOTER */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}


/* =========================
   Fallbacks pour ancrage (au cas où JS ne s'exécute pas en production)
   On expose une variable --header-offset que JS peut mettre à jour si besoin.
   Sinon on donne une valeur raisonnable par défaut.
========================= */
:root {
  /* valeur par défaut estimée pour la hauteur du header (desktop) */
  --header-offset: 72px;
}

/* Applique une marge de défilement aux titres de sections (titres h2) */
section h2, .section h2 {
  scroll-margin-top: var(--header-offset);
}

/* Cible quand une ancre est activée (fallback si JS absent) */
:target {
  scroll-margin-top: calc(var(--header-offset) + 8px);
}

/* Plus spécifique : si le target est un h2, on s'assure d'avoir la marge aussi */
:is(h1,h2,h3,h4,h5):target {
  scroll-margin-top: calc(var(--header-offset) + 8px);
}

@media (max-width: 680px) {
  .cards,
  .gallery {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: fixed;
    inset: 60px 0 auto 0;
    background: #ffffff;
    border-bottom: 1px solid #e7eef7;
    display: none;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 0.75rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  .contact-btn {
    margin-left: 0;
  }

  /* Rapproche la carte portrait du bloc de texte en mobile tablette/phone */
  .portrait-card {
    margin-top: 24px; /* réduit depuis 120px */
  }
}





/* =========================RESPONSIVENESSE========================= */
/*
   EXTRA SMALL DEVICES (MOBILE)
/* Extra small devices (smartphones) */
@media (max-width: 480px) {
  /* Header plus compact */
  header {
    padding: 0.6rem 1rem;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 0.5rem;
    padding: 0.35rem 0;
  }

  .brand-text { display: none; } /* économise de l'espace, montre juste le logo */

  /* Burger et nav */
  .nav-toggle { margin: 0.5rem 0; }

  /* Hero empilé et visuel réduit */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-visual {
    height: 260px;
    border-radius: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  /* Grilles en 1 colonne, cartes plus lisibles */
  .cards, .gallery {
    grid-template-columns: 1fr;
  }

  .portrait { height: 600px; }
  .product-media, .product .tags { height: 140px; }
  .portrait img { object-position: top; }

  /* Formulaire centrée et responsive */
  #contact .contact-form {
    padding: 1.2rem 1rem;
    width: 100%;
    box-shadow: none;
    border-radius: 12px;
  }

  /* Footer empilé */
  .footer-content { flex-direction: column; align-items: center; }

  /* Augmente la taille des cibles tactiles */
  .cta-btn-header, .contact-btn, #contact .contact-form button, .tag {
    padding: 0.7rem 1rem;
  }

  /* MOBILE: espace vertical entre boutons empilés (ex: .card-actions)
     On ajuste uniquement pour petites résolutions afin de ne pas impacter
     la version desktop. */
  .card-actions {
    gap: 0.9rem;      /* espace horizontal/vertical entre items */
    row-gap: 0.9rem;  /* assure un espace vertical quand les éléments se wrap */
  }

  /* Réduire la hauteur de la carte portrait sur mobile et afficher la
     partie supérieure de l'image (cadrage sur la moitié haute). */
  .portrait { height: 100%; }
  .portrait img { object-position: top; }

  /* Rapproche encore un peu la carte portrait sur très petits écrans */
  .portrait-card {
    margin-top: 16px; /* plus serré sur petits écrans */
  }

  /* Quand les boutons sont réellement empilés, les rendre plus lisibles
     (plein largeur sur très petit écran) */
  .card-actions > a,
  .card-actions > button,
  .card-actions > .btn,
  .card-actions > .link {
    min-width: 0;    /* évite que de larges boutons forcent le wrapping bizarre */
  }

  /* Optionnel : sur très petits écrans, rendre les boutons full-width
     pour faciliter la lecture et le clic. Ajustez si vous préférez
     garder des boutons inline. */
  @media (max-width: 400px) {
    .card-actions > a,
    .card-actions > button,
    .card-actions > .btn,
    .card-actions > .link {
      display: block;
      width: 100%;
    }
  }

  /* Ajuste scroll-margin-top pour mobile si besoin */
  :where(h1, h2, h3, h4, h5), :target {
    scroll-margin-top: 120px;
  }
}
