/* MILKSHAKE FACTORY — style Crousty One / franchise food */

:root {
  --pink: #c2077f;
  --pink-mid: #d4748a;
  --pink-soft: #e8a5a8;
  --pink-bg: #f2d1d7;
  --pink-pale: #fff2f2;
  --gold: #c9a44c;
  --dark: #161616;
  --white: #fff;
  --grey: #777;
  --font: 'Poppins', sans-serif;
  --display: 'Archivo Black', sans-serif;
  --r: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); background: var(--pink-pale); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- PLACEHOLDERS --- */
.ph-prod, .ph-card, .ph-big, .ph-band, .ph-insta, .hero-ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  color: var(--pink-mid); font-weight: 700; font-size: 12px;
  text-align: center; text-transform: uppercase; letter-spacing: .04em; line-height: 1.8;
}
.ph-prod, .ph-card { background: var(--pink-bg); }
.ph-big { background: var(--pink-bg); min-height: 500px; }
.ph-band { background: var(--pink-bg); min-height: 100%; }
.ph-insta { background: var(--pink-bg); aspect-ratio: 1; }
.hero-ph { background: var(--pink-bg); }
.ph-prod small, .ph-card small, .ph-big small { font-weight: 400; font-size: 10px; opacity: .5; }

/* --- BUTTONS --- */
.btn-nav {
  background: linear-gradient(90deg, var(--pink), var(--pink-mid));
  color: var(--white);
  font-weight: 700; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 10px 28px; border-radius: 30px;
  box-shadow: 0 4px 16px rgba(194,7,127,.3);
  transition: all .25s;
}
.btn-nav:hover { box-shadow: 0 6px 24px rgba(194,7,127,.45); transform: translateY(-1px); }

.btn-hero {
  display: inline-block;
  background: linear-gradient(90deg, var(--pink), var(--pink-mid));
  color: var(--white);
  font-weight: 800; font-size: 14px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 18px 48px; border-radius: 30px;
  box-shadow: 0 6px 24px rgba(194,7,127,.35);
  transition: all .25s;
}
.btn-hero:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 40px rgba(194,7,127,.45); }

.btn-main {
  display: inline-block;
  background: linear-gradient(90deg, var(--pink), var(--pink-mid));
  color: var(--white);
  font-weight: 700; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 12px 32px; border-radius: 30px;
  box-shadow: 0 4px 16px rgba(194,7,127,.25);
  transition: all .25s;
}
.btn-main:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(194,7,127,.4); }

.btn-sm {
  display: inline-block;
  background: linear-gradient(90deg, var(--pink), var(--pink-mid));
  color: var(--white);
  font-weight: 700; font-size: 11px;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 8px 22px; border-radius: 30px;
  transition: all .2s;
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--pink);
  color: var(--pink);
  font-weight: 700; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 10px 28px; border-radius: 30px;
  transition: all .2s;
}
.btn-outline:hover { background: var(--pink); color: var(--white); }

/* --- NAV --- */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: linear-gradient(270deg, var(--pink-mid), var(--pink));
  box-shadow: 0 4px 20px rgba(194,7,127,.3);
  transition: all .3s;
}
.nav-wrap {
  max-width: 1300px; margin: 0 auto;
  padding: 0 5vw;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--display);
  font-size: 16px; color: var(--white);
  letter-spacing: .03em;
}
.nav-mid { display: flex; gap: 32px; }
.nav-mid a {
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.8);
  letter-spacing: .04em; text-transform: uppercase;
  transition: color .2s;
}
.nav-mid a:hover { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-socials { display: flex; gap: 10px; }
.nav-socials a { color: rgba(255,255,255,.6); transition: color .2s; }
.nav-socials a:hover { color: var(--white); }
.nav-socials svg { width: 18px; height: 18px; }
.burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px;
}
.burger span {
  display: block; width: 100%; height: 2px;
  background: var(--white); border-radius: 2px;
}
.burger span + span { margin-top: 7px; }

/* --- HERO --- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
  padding-bottom: 120px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg .hero-ph { min-height: 100vh; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(194,7,127,.4) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(22,22,22,.5) 0%, rgba(22,22,22,.7) 100%);
}
.hero-center {
  position: relative; z-index: 2;
  text-align: center;
  padding: 120px 5vw 40px;
}
.hero-tag {
  font-size: 13px; font-weight: 600; color: var(--pink-soft);
  letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 100px);
  color: var(--white);
  line-height: .95;
  text-shadow: 0 6px 30px rgba(0,0,0,.4);
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 18px; font-weight: 500; color: rgba(255,255,255,.7);
  margin-bottom: 32px;
}

/* Produits qui chevauchent le hero et la section suivante */
.hero-products {
  position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 90%; max-width: 900px;
}
.hero-prod {
  display: block;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  transition: transform .3s, box-shadow .3s;
}
.hero-prod:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}
.hero-prod-img {
  aspect-ratio: 3/4; overflow: hidden;
  background: var(--pink-pale);
  display: flex; align-items: center; justify-content: center;
}
.hero-prod-img img {
  width: 80%; height: auto; max-height: 85%;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.12));
}
.hero-prod-label {
  display: block; padding: 14px 16px;
  font-weight: 800; font-size: 14px;
  text-align: center; text-transform: uppercase;
  letter-spacing: .04em;
  background: var(--white);
}

/* --- CARTE --- */
.carte {
  padding: 120px 5vw 80px;
  max-width: 1300px; margin: 0 auto;
}
.carte-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap; gap: 16px;
}
.carte h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 48px);
}
.carte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.carte-item {
  display: block; border-radius: var(--r);
  overflow: hidden; position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  transition: transform .3s, box-shadow .3s;
}
.carte-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.carte-img {
  aspect-ratio: 4/5; overflow: hidden;
  background: var(--pink-pale);
  display: flex; align-items: center; justify-content: center;
}
.carte-img img {
  width: 85%; height: auto; max-height: 85%;
  object-fit: contain;
  transition: transform .4s;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.15));
}
.carte-item:hover .carte-img img { transform: scale(1.08); }
.carte-over {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(22,22,22,.75) 0%, transparent 100%);
  display: flex; align-items: flex-end; justify-content: space-between;
}
.carte-over h3 {
  font-family: var(--display);
  font-size: 20px; color: var(--white);
}

/* --- BANDEAU CMD --- */
.bandeau {
  position: relative;
  padding: 120px 5vw;
  text-align: center;
  overflow: hidden;
}
.bandeau-bg {
  position: absolute; inset: 0; z-index: 0;
}
.bandeau-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, var(--pink), var(--pink-mid));
  opacity: .9;
}
.bandeau-content {
  position: relative; z-index: 2;
}
.bandeau h2 {
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 72px);
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0,0,0,.2);
  margin-bottom: 12px;
}
.bandeau p {
  font-size: 16px; color: rgba(255,255,255,.8);
  margin-bottom: 32px;
}

/* --- CONCEPT --- */
.concept {
  padding: 100px 5vw;
  max-width: 1300px; margin: 0 auto;
}
.concept-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.concept-img {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(194,7,127,.15);
  transform: rotate(-1.5deg);
}
.concept-img img { width: 100%; display: block; }
.concept-txt h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.1; margin-bottom: 20px;
}
.concept-txt p {
  font-size: 15px; color: var(--grey);
  line-height: 1.8; margin-bottom: 14px;
}
.concept-txt .btn-main { margin-top: 12px; }

/* --- INSTA --- */
.insta {
  padding: 60px 5vw 0;
  max-width: 1300px; margin: 0 auto;
}
.insta-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.insta-header h3 {
  font-family: var(--display);
  font-size: 22px;
}
.insta-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  border-radius: var(--r); overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.insta-grid a {
  position: relative; overflow: hidden; display: block;
}
.insta-grid a::after {
  content: "Suivez-nous sur Instagram";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(22, 22, 22, .6);
  color: #fff; font-family: var(--display); font-size: clamp(10px, 1.2vw, 16px);
  text-align: center; letter-spacing: .03em;
  opacity: 0; transition: opacity .3s ease;
}
.insta-grid a:hover::after { opacity: 1; }
.insta-grid a:hover img { filter: grayscale(1); transform: scale(1.08); }
.insta-grid img {
  width: 100%; aspect-ratio: 1; object-fit: cover; display: block;
  transition: filter .4s ease, transform .4s ease;
}

/* --- RESTOS --- */
.restos {
  padding: 100px 5vw;
  max-width: 1300px; margin: 0 auto;
}
.restos-header { margin-bottom: 48px; }
.restos h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
}
.restos-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.resto {
  border-radius: var(--r); overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  transition: transform .3s, box-shadow .3s;
}
.resto:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.15);
}
.resto-img { aspect-ratio: 16/9; overflow: hidden; border-radius: var(--r) var(--r) 0 0; position: relative; }
.resto-img img, .resto-img iframe { width: 100%; height: 100%; object-fit: cover; }
.resto-img-soon .coming-soon-overlay {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 60%; height: auto; object-fit: contain;
  pointer-events: none; z-index: 2;
}
.resto-body { padding: 28px; }
.badge {
  display: inline-block;
  font-size: 11px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px;
  margin-bottom: 12px;
}
.badge.open { background: #d4edda; color: #276838; }
.badge.soon { background: #fff3cd; color: #856404; }
.resto-body h3 {
  font-family: var(--display);
  font-size: 24px; margin-bottom: 8px;
}
.resto-body p { font-size: 14px; color: var(--grey); line-height: 1.6; margin-bottom: 4px; }
.resto-btns { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }

/* --- FRANCHISE --- */
.franchise {
  position: relative;
  padding: 160px 5vw;
  text-align: center;
  overflow: hidden;
}
.franchise-bg {
  position: absolute; inset: 0; z-index: 0;
}
.franchise-bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.franchise-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(22,22,22,.75), rgba(194,7,127,.5));
}
.franchise-content {
  position: relative; z-index: 2;
  max-width: 700px; margin: 0 auto;
}
.franchise h2 {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 60px);
  color: var(--white);
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0,0,0,.3);
  margin-bottom: 16px;
}
.franchise p {
  font-size: 16px; color: rgba(255,255,255,.8);
  margin-bottom: 24px; line-height: 1.7;
}
.franchise ul {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px 28px; margin-bottom: 36px;
}
.franchise li {
  color: var(--white); font-size: 14px; font-weight: 600;
  padding-left: 18px; position: relative;
}
.franchise li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 10px rgba(201,164,76,.5);
}

/* --- FOOTER --- */
footer {
  background: linear-gradient(270deg, var(--pink-mid), var(--pink));
  padding: 48px 5vw 24px;
}
.footer-wrap {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.footer-logo {
  font-family: var(--display);
  font-size: 16px; color: var(--white);
}
.footer-sub { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 4px; }
.footer-col a {
  display: block; color: rgba(255,255,255,.6);
  font-size: 13px; font-weight: 500; padding: 3px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1300px; margin: 0 auto;
  padding-top: 20px;
}
.footer-bottom p { color: rgba(255,255,255,.3); font-size: 12px; }

/* --- RESPONSIVE --- */
@media (max-width: 1000px) {
  .hero-products { grid-template-columns: repeat(3, 1fr); gap: 16px; width: 95%; }
  .carte-grid { grid-template-columns: repeat(2, 1fr); }
  .concept-wrap { grid-template-columns: 1fr; }
  .concept-img { transform: none; max-width: 600px; }
  .restos-grid { grid-template-columns: 1fr; }
  .footer-wrap { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  /* Hero = vidéo seule en 16:9, contenu texte en dessous */
  .hero {
    min-height: auto; padding-bottom: 0;
    flex-direction: column; align-items: stretch;
  }
  .hero-bg {
    position: relative; aspect-ratio: 16/9; flex-shrink: 0; overflow: hidden;
  }
  .hero-bg video { width: 100%; height: 100%; object-fit: contain; background: var(--dark); }
  .hero-overlay { display: none; }
  .hero-center {
    position: relative; z-index: 2;
    padding: 28px 5vw 20px;
    text-align: center;
    background: var(--pink-pale);
  }
  .hero h1 { font-size: 28px; margin-bottom: 10px; color: var(--dark); text-shadow: none; }
  .hero-tag { color: var(--pink); margin-bottom: 8px; font-size: 10px; }
  .hero-sub { font-size: 13px; margin-bottom: 16px; color: var(--grey); }
  .btn-hero { padding: 14px 32px; font-size: 12px; }
  .hero-products {
    position: relative; bottom: auto; left: auto; transform: none;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px; padding: 16px 5vw 24px;
    background: var(--pink-pale);
  }
  .hero-prod { box-shadow: 0 4px 16px rgba(0,0,0,.12); }
  .hero-prod-img { aspect-ratio: 1; }
  .hero-prod-label { font-size: 9px; padding: 8px 4px; }
  .carte { padding-top: 40px; }
  .carte-header { margin-bottom: 24px; }
  .carte h2 { font-size: 24px; }
  .carte-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .carte-over { padding: 14px; }
  .carte-over h3 { font-size: 14px; }
  .carte-over .btn-sm { font-size: 9px; padding: 6px 14px; }
  .bandeau { padding: 60px 5vw; }
  .bandeau h2 { font-size: 28px; }
  .bandeau p { font-size: 13px; margin-bottom: 20px; }
  .concept { padding: 60px 5vw; }
  .concept-wrap { gap: 32px; }
  .concept-txt h2 { font-size: 24px; }
  .concept-txt p { font-size: 14px; }
  .insta { padding: 40px 5vw 0; }
  .insta-header h3 { font-size: 16px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .restos { padding: 60px 5vw; }
  .restos h2 { font-size: 28px; }
  .restos-header { margin-bottom: 28px; }
  .resto-body { padding: 20px; }
  .resto-body h3 { font-size: 20px; }
  .franchise { padding: 80px 5vw; }
  .franchise h2 { font-size: 28px; }
  .franchise p { font-size: 14px; }
  .franchise li { font-size: 12px; }
  .footer-wrap { grid-template-columns: 1fr; gap: 20px; }
  footer { padding: 32px 5vw 16px; }
  .nav-mid, .nav-socials { display: none; }
  .burger { display: block; }
  .nav-mid.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; width: 100%;
    background: var(--pink);
    padding: 20px 5vw; gap: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,.2);
  }
  .nav-mid.open a { color: var(--white); font-size: 15px; }
}
