/* =========================
   NANA — Style (vivant, moderne)
   Couleurs client:
   - Primary: #0c3c42
   - Secondary: #ea561f
   - Logo: #b7dfe4
========================= */

:root{
  --primary:#0c3c42;
  --secondary:#ea561f;
  --logo:#b7dfe4;

  --bg:#071f22;
  --panel: rgba(183,223,228,.08);
  --panel2: rgba(183,223,228,.12);
  --text:#eaf6f7;
  --muted: rgba(234,246,247,.75);

  --radius: 22px;
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --border: 1px solid rgba(183,223,228,.18);
}

/* Reset */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: var(--bg);
  overflow-x:hidden;
}

/* Animated background */
.bg{
  position:fixed;
  inset:-20%;
  background:
    radial-gradient(600px 600px at 20% 20%, rgba(234,86,31,.22), transparent 60%),
    radial-gradient(700px 700px at 80% 30%, rgba(183,223,228,.18), transparent 60%),
    radial-gradient(900px 900px at 50% 90%, rgba(12,60,66,.55), transparent 60%),
    linear-gradient(135deg, #061b1d, #071f22 60%, #061b1d);
  filter: saturate(1.1);
  animation: floatBg 14s ease-in-out infinite;
  z-index:-2;
}
@keyframes floatBg{
  0%,100%{ transform: translate3d(0,0,0) scale(1); }
  50%{ transform: translate3d(-1.5%,1%,0) scale(1.02); }
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 6%;
  background: rgba(7,31,34,.65);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(183,223,228,.12);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--text);
}
.brand-mark{
  display:inline-grid;
  place-items:center;
  width:44px;
  height:44px;
  border-radius: 14px;
  background: rgba(183,223,228,.12);
  border: var(--border);
  color: var(--logo);
  font-weight: 800;
  line-height: .8;
  text-transform: lowercase;
}
.brand-text strong{display:block; letter-spacing:.08em}
.brand-text em{display:block; color:var(--muted); font-style:normal; font-size:.92rem}


a{
  color: var(--logo);
  text-decoration: none;
  text-underline-offset: 3px;
}

a:hover{
  color: var(--text);
  text-decoration: underline;
}

a:visited{
  color: rgba(183,223,228,.92); /* proche du logo, pas violet moche */
}

a:focus-visible{
  outline: 2px solid rgba(234,86,31,.9);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Exceptions : ne pas souligner les boutons */
.btn, .btn:hover, .btn:visited{
  text-decoration: none;
  color: var(--text);
}

/* Exceptions : liens du menu gardent leur style */
.nav a, .nav a:hover, .nav a:visited{
  text-decoration: none;
}


/* Nav */
.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  color:var(--muted);
  text-decoration:none;
  font-weight:650;
  letter-spacing:.02em;
  padding:10px 10px;
  border-radius: 12px;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.nav a:hover{
  color:var(--text);
  background: rgba(183,223,228,.10);
  transform: translateY(-1px);
}
.nav-cta{
  background: rgba(234,86,31,.14);
  color: var(--text) !important;
  border: 1px solid rgba(234,86,31,.35);
}

/* Burger (mobile) */
.burger{
  display:none;
  width:46px;
  height:46px;
  border-radius: 14px;
  border: var(--border);
  background: rgba(183,223,228,.10);
  cursor:pointer;
}
.burger span{
  display:block;
  width:22px;
  height:2px;
  background: var(--text);
  margin:5px auto;
  border-radius: 99px;
  transition: transform .2s ease, opacity .2s ease;
}

/* Ticker */
.ticker{
  overflow:hidden;
  border-bottom: 1px solid rgba(183,223,228,.10);
  background: rgba(7,31,34,.45);
}
.ticker-track{
  display:flex;
  gap:36px;
  white-space:nowrap;
  padding:10px 0;
  animation: ticker 18s linear infinite;
  color: rgba(234,246,247,.85);
  font-weight:700;
  letter-spacing:.08em;
  text-transform: uppercase;
  font-size: .82rem;
}
@keyframes ticker{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-33.333%); }
}

/* Hero */
.hero{
  position:relative;
  padding: 70px 6% 40px;
}
.hero-inner{
  max-width:1100px;
  margin:0 auto;
}
.hero-kickers{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
}
.tag{
  padding:8px 12px;
  border-radius: 999px;
  border: var(--border);
  background: rgba(183,223,228,.10);
  color: var(--text);
  font-weight:700;
  letter-spacing:.02em;
  font-size:.9rem;
}
.tag-soft{ color: var(--logo); }
.tag-hot{
  background: rgba(234,86,31,.18);
  border: 1px solid rgba(234,86,31,.35);
}

.hero h1{
  margin:0 0 14px;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.accent{
  color: var(--logo);
  text-shadow: 0 0 28px rgba(183,223,228,.25);
}
.lead{
  margin:0 0 22px;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
}
.lead a{ color: var(--logo); text-decoration: none; border-bottom: 1px solid rgba(183,223,228,.35); }

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom: 28px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.02em;
  border: 1px solid rgba(183,223,228,.22);
  background: rgba(183,223,228,.08);
  color: var(--text);
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.btn:hover{ transform: translateY(-2px); background: rgba(183,223,228,.12); }
.btn.primary{
  background: rgba(234,86,31,.92);
  border-color: rgba(234,86,31,1);
  box-shadow: 0 14px 40px rgba(234,86,31,.18);
}
.btn.primary:hover{ transform: translateY(-2px) scale(1.01); }
.btn.ghost{
  background: rgba(183,223,228,.06);
}

.hero-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top: 8px;
}
.mini-card{
  border-radius: var(--radius);
  border: var(--border);
  background: rgba(183,223,228,.08);
  padding: 16px 16px;
  box-shadow: 0 10px 32px rgba(0,0,0,.18);
  transform: translateY(6px);
}
.mini-card h3{
  margin:0 0 6px;
  font-size: 1.05rem;
}
.mini-card p{
  margin:0;
  color: var(--muted);
}

/* Stickers */
.hero-stickers .sticker{
  position:absolute;
  display:grid;
  place-items:center;
  width:56px; height:56px;
  border-radius: 18px;
  background: rgba(183,223,228,.10);
  border: var(--border);
  box-shadow: var(--shadow);
  animation: bob 3.6s ease-in-out infinite;
  user-select:none;
}
.hero-stickers .s1{ right: 9%; top: 105px; animation-delay: .0s; }
.hero-stickers .s2{ right: 18%; top: 240px; animation-delay: .4s; }
.hero-stickers .s3{ right: 12%; top: 380px; animation-delay: .8s; }

@keyframes bob{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

/* Sections */
.section{
  padding: 68px 6%;
}
.section-alt{
  background: rgba(183,223,228,.04);
  border-top: 1px solid rgba(183,223,228,.10);
  border-bottom: 1px solid rgba(183,223,228,.10);
}
.section-head{
  max-width: 980px;
  margin: 0 auto 22px;
  text-align:left;
}
.section-head h2{
  margin:0 0 8px;
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  letter-spacing: -0.02em;
}
.section-head p{
  margin:0;
  color: var(--muted);
  max-width: 70ch;
}

/* Layout blocks */
.grid-2{
  max-width: 1100px;
  margin: 18px auto 0;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
}

.panel{
  border-radius: var(--radius);
  border: var(--border);
  background: rgba(183,223,228,.08);
  padding: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,.20);
}
.panel h3{ margin:0 0 8px; }
.panel p{ margin:0; color: var(--muted); }

.panel-hot{
  background:
    radial-gradient(600px 400px at 20% 20%, rgba(234,86,31,.22), transparent 60%),
    rgba(183,223,228,.08);
  border: 1px solid rgba(234,86,31,.28);
}
.panel-soft{
  background:
    radial-gradient(600px 400px at 20% 20%, rgba(183,223,228,.18), transparent 60%),
    rgba(183,223,228,.08);
}

.list{
  list-style:none;
  padding:0;
  margin:12px 0 0;
  display:grid;
  gap:10px;
  color: var(--muted);
}
.list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.dot{
  width:10px; height:10px;
  border-radius:999px;
  margin-top: 6px;
  background: rgba(234,86,31,.9);
  box-shadow: 0 0 0 6px rgba(234,86,31,.12);
}

/* Cards */
.cards{
  max-width: 1100px;
  margin: 18px auto 0;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card{
  border-radius: var(--radius);
  border: var(--border);
  background: rgba(183,223,228,.08);
  padding: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.20);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  will-change: transform;
}
.card:hover{
  transform: translateY(-6px) rotate(-0.2deg);
  border-color: rgba(234,86,31,.35);
  background: rgba(183,223,228,.10);
}
.card h3{ margin:0 0 6px; }
.card p{ margin:0 0 10px; color: var(--muted); }
.meta{
  display:inline-block;
  padding:8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(183,223,228,.18);
  color: rgba(234,246,247,.85);
  font-size: .85rem;
}

.cta-row{
  max-width: 1100px;
  margin: 18px auto 0;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* Chips */
.chips{ display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
.chip{
  padding:8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(183,223,228,.18);
  color: rgba(234,246,247,.9);
  background: rgba(7,31,34,.35);
  font-weight: 750;
}

/* Instagram block */
.insta-wrap{
  max-width: 1100px;
  margin: 18px auto 0;
  border-radius: var(--radius);
  border: 1px solid rgba(234,86,31,.30);
  background:
    radial-gradient(700px 500px at 20% 20%, rgba(234,86,31,.18), transparent 60%),
    rgba(183,223,228,.08);
  box-shadow: 0 12px 40px rgba(0,0,0,.20);
  padding: 14px;
}
.insta-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 8px 6px 12px;
  border-bottom: 1px solid rgba(183,223,228,.12);
}
.insta-head span{ color: var(--muted); margin-left:6px; }
.insta-embed{
  margin-top:12px;
  border-radius: 18px;
  overflow:hidden;
  background: rgba(7,31,34,.35);
  border: 1px solid rgba(183,223,228,.12);
  padding: 10px;
}

/* Map */
.map-panel h3{ margin-bottom: 10px; }
.map-frame{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(183,223,228,.12);
  background: rgba(7,31,34,.35);
}
.map-frame iframe{
  width:100%;
  height: 320px;
  border:0;
}

/* Footer */
.footer{
  padding: 26px 6% 40px;
  color: rgba(234,246,247,.75);
  border-top: 1px solid rgba(183,223,228,.10);
}
.footer a{
  color: var(--logo);
  text-decoration:none;
  border-bottom: 1px solid rgba(183,223,228,.35);
}

.small{ font-size: .92rem; color: rgba(234,246,247,.68); }
.contact-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px; }

/* Scroll reveal */
[data-reveal]{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.revealed{
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.insta-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 12px;
}

.insta-item{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(183,223,228,.12);
  background: rgba(7,31,34,.35);
  padding: 10px;
}
/* Instagram : 1 post centré et large */
.insta-one{
  max-width: 980px;          /* largeur max (augmente à 1100 si tu veux encore plus large) */
  margin: 14px auto 0;       /* centre */
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(234,86,31,.30);
  background: rgba(7,31,34,.35);
  padding: 12px;
}

/* Force l'embed à prendre toute la largeur du conteneur */
.insta-one .instagram-media{
  margin: 0 !important;
  width: 100% !important;
  max-width: none !important;
}
/* Logo dans la navbar */
.logo-img{
  height: 60px;        /* ajuste si besoin */
  width: auto;
  display: block;
  transition: transform .2s ease;
}

.logo-img:hover{
  transform: scale(1.05);
}

/* Important : l'embed Instagram injecte un iframe. On force à prendre la largeur */
.insta-item .instagram-media{
  margin: 0 !important;
  width: 100% !important;
  max-width: none !important;
}

/* Mobile : 1 colonne */
@media (max-width: 900px){
  .insta-grid{ grid-template-columns: 1fr; }
}

/* Responsive */
@media (max-width: 980px){
  .hero-cards{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .hero-stickers{ display:none; }
}

@media (max-width: 760px){
  .burger{ display:block; }
  .nav{
    position:fixed;
    inset: 72px 12px auto 12px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    padding: 12px;
    border-radius: 18px;
    border: var(--border);
    background: rgba(7,31,34,.85);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
  }
  .nav a{ padding: 12px 12px; }
  .nav.open{ display:flex; }
  .cards{ grid-template-columns: 1fr; }
}
