/* ===== Sörenberg — feuille de style ===== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --bleu-nuit: #1c2a3a;
  --bleu-glacier: #33587a;
  --creme: #f6f2ea;
  --blanc: #ffffff;
  --orange-chaleur: #d97b3f;
  --gris-texte: #4b5563;
  --ombre: 0 10px 30px rgba(28,42,58,0.15);
  --rayon: 14px;
}

*{box-sizing:border-box;margin:0;padding:0;}

html{scroll-behavior:smooth;}

body{
  font-family:'Inter', sans-serif;
  color:var(--bleu-nuit);
  background:var(--creme);
  line-height:1.6;
}

h1,h2,h3,h4{
  font-family:'Fraunces', serif;
  font-weight:600;
  line-height:1.15;
  color:var(--bleu-nuit);
}

a{color:inherit;text-decoration:none;}

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

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 24px;
}

/* ===== HEADER ===== */
header.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(246,242,234,0.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(28,42,58,0.08);
}

.header-inner{
  max-width:1100px;
  margin:0 auto;
  padding:14px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo img{
  height:44px;
  width:auto;
}

nav.main-nav ul{
  list-style:none;
  display:flex;
  gap:32px;
}

nav.main-nav a{
  font-weight:600;
  font-size:0.95rem;
  letter-spacing:0.02em;
  padding:6px 2px;
  border-bottom:2px solid transparent;
  transition:border-color .2s ease, color .2s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active{
  color:var(--orange-chaleur);
  border-color:var(--orange-chaleur);
}

.menu-toggle{
  display:none;
  background:none;
  border:none;
  font-family:'Inter',sans-serif;
  font-weight:600;
  font-size:1rem;
  cursor:pointer;
  color:var(--bleu-nuit);
}

/* ===== HERO ===== */
.hero{
  position:relative;
  min-height:64vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background-size:cover;
  background-position:center;
  color:var(--blanc);
  text-align:center;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(28,42,58,0.35) 0%, rgba(28,42,58,0.65) 100%);
}

.hero-content{
  position:relative;
  z-index:2;
  padding:56px 24px;
  max-width:1100px;
  margin:0 auto;
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.hero-logo{
  height:110px;
  width:auto;
  margin-bottom:20px;
  filter:drop-shadow(0 6px 18px rgba(0,0,0,0.35));
}

.page-hero .hero-logo{
  height:84px;
  margin-bottom:16px;
}

.hero-eyebrow{
  font-style:italic;
  font-family:'Fraunces', serif;
  font-size:1.15rem;
  margin-bottom:8px;
  opacity:0.95;
}

.hero-title{
  font-size:clamp(2.8rem, 7vw, 5rem);
  color:var(--blanc);
  margin-bottom:6px;
}

.hero-sub{
  font-family:'Fraunces', serif;
  font-weight:500;
  font-size:1.3rem;
  opacity:0.95;
}

.page-hero{
  min-height:36vh;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.contact-hero{
  min-height:52vh;
  background-position:center 30%;
}

.page-hero .hero-content{
  text-align:center;
}

.page-hero .hero-title{
  font-size:clamp(2.2rem, 5vw, 3.2rem);
}

/* ===== SECTIONS ===== */
section{
  padding:72px 0;
}

.section-title{
  font-size:clamp(1.9rem, 4vw, 2.6rem);
  text-align:center;
  margin-bottom:8px;
}

.section-sub{
  text-align:center;
  color:var(--gris-texte);
  max-width:640px;
  margin:0 auto 48px;
  font-size:1.05rem;
}

.alt-bg{
  background:var(--blanc);
}

/* Video */
.video-wrap{
  max-width:800px;
  margin:0 auto;
  border-radius:var(--rayon);
  overflow:hidden;
  box-shadow:var(--ombre);
  aspect-ratio:16/9;
}
.video-wrap iframe{
  width:100%;
  height:100%;
  border:0;
}

/* Feature rows (image alternating) */
.feature-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
  margin-bottom:64px;
}

.feature-row:last-child{margin-bottom:0;}

.feature-row.reverse .feature-img{order:2;}
.feature-row.reverse .feature-text{order:1;}

.feature-img img{
  border-radius:var(--rayon);
  box-shadow:var(--ombre);
  width:100%;
  height:340px;
  object-fit:cover;
}

.feature-text h3{
  font-size:1.6rem;
  margin-bottom:12px;
}

.feature-text p{
  color:var(--gris-texte);
  font-size:1.05rem;
}

.feature-row-speaker{
  grid-template-columns:260px 1fr;
  align-items:start;
  gap:40px;
}

.feature-row-speaker .feature-img img{
  height:260px;
  border-radius:var(--rayon);
}

/* Activity cards */
.activity-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}

.activity-card{
  background:var(--blanc);
  border-radius:var(--rayon);
  overflow:hidden;
  box-shadow:var(--ombre);
  transition:transform .25s ease;
}

.activity-card:hover{
  transform:translateY(-6px);
}

.activity-card img{
  height:190px;
  width:100%;
  object-fit:cover;
}

.activity-card-body{
  padding:20px 22px 26px;
}

.activity-card-body h4{
  font-size:1.15rem;
  margin-bottom:8px;
  color:var(--orange-chaleur);
}

.activity-card-body p{
  color:var(--gris-texte);
  font-size:0.95rem;
}

/* CTA banner (photo pleine largeur, titre, boutons, adresse) */
.cta-banner{
  position:relative;
  min-height:60vh;
  display:flex;
  align-items:center;
  background:var(--bleu-nuit) url('images/deco-jeux.jpeg') center/cover no-repeat;
  color:var(--blanc);
  text-align:center;
  overflow:hidden;
}

.cta-banner::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(28,42,58,0.25) 0%, rgba(28,42,58,0.55) 100%);
}

.cta-banner .container{
  position:relative;
  z-index:1;
}

.cta-banner h2{
  color:var(--blanc);
  font-size:clamp(2rem, 4.5vw, 3rem);
  margin-bottom:28px;
}

.cta-address{
  margin-top:28px;
  font-size:1.05rem;
}

.cta-address strong{
  color:var(--blanc);
}

.btn{
  display:inline-block;
  background:var(--orange-chaleur);
  color:var(--blanc);
  padding:14px 34px;
  border-radius:50px;
  font-weight:600;
  letter-spacing:0.02em;
  transition:background .2s ease, transform .2s ease;
}

.btn:hover{
  background:#c56a30;
  transform:translateY(-2px);
}

.btn-white{
  background:var(--blanc);
  color:var(--bleu-nuit);
}

.btn-white:hover{
  background:var(--creme);
}

.btn-outline{
  display:inline-block;
  margin-top:24px;
  padding:14px 34px;
  border-radius:50px;
  font-weight:600;
  letter-spacing:0.02em;
  background:transparent;
  border:1.5px solid rgba(255,255,255,0.7);
  color:var(--blanc);
  transition:background .2s ease, border-color .2s ease;
}

.btn-outline:hover{
  background:rgba(255,255,255,0.12);
  border-color:var(--blanc);
}

/* ===== Pricing page ===== */
.price-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
  margin-bottom:48px;
}

.price-grid-stack{
  grid-template-columns:1fr;
  max-width:340px;
  margin-left:auto;
  margin-right:auto;
}

.price-card{
  background:var(--blanc);
  border-radius:var(--rayon);
  box-shadow:var(--ombre);
  padding:32px 28px;
  text-align:center;
  border-top:4px solid var(--orange-chaleur);
}

.price-card h3{
  font-size:1.1rem;
  color:var(--gris-texte);
  font-family:'Inter',sans-serif;
  font-weight:600;
  margin-bottom:4px;
}

.price-card .price-note{
  font-size:0.9rem;
  color:var(--gris-texte);
  margin-bottom:14px;
}

.price-card .price-amount{
  font-family:'Fraunces', serif;
  font-size:2.4rem;
  color:var(--bleu-nuit);
}

.price-detail{
  background:var(--blanc);
  border-radius:var(--rayon);
  padding:28px 32px;
  margin-bottom:24px;
  box-shadow:var(--ombre);
}

.price-detail p{
  color:var(--gris-texte);
  margin-bottom:14px;
}

.price-detail p:last-child{margin-bottom:0;}

.age-block{
  text-align:center;
  margin:56px 0;
}

.age-block h3{
  font-family:'Inter',sans-serif;
  font-size:1rem;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:var(--gris-texte);
  margin-bottom:8px;
}

.age-block p{
  font-family:'Fraunces', serif;
  font-size:1.6rem;
}

.bonus-box{
  background:var(--blanc);
  border-radius:var(--rayon);
  box-shadow:var(--ombre);
  padding:32px;
  text-align:center;
}

.bonus-box p{
  color:var(--gris-texte);
  margin-top:10px;
  font-size:0.95rem;
}

.map-embed{
  width:100%;
  height:360px;
  border:0;
  border-radius:var(--rayon);
  margin-top:48px;
  box-shadow:var(--ombre);
}

.reg-note{
  text-align:center;
  background:#fdf1e7;
  border:1px solid #f0d3b4;
  color:#8a4a12;
  padding:16px 24px;
  border-radius:var(--rayon);
  max-width:560px;
  margin:0 auto 40px;
  font-weight:600;
}
.small-note,
.small-note p{
  font-size:0.8rem;
  color:var(--gris-texte);
  opacity:0.85;
}
.link-accent{
  color:var(--orange-chaleur);
  font-weight:700;
  border-bottom:2px solid var(--orange-chaleur);
}

/* ===== Gallery page ===== */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.gallery-grid img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:var(--rayon);
  box-shadow:var(--ombre);
  cursor:pointer;
  transition:transform .25s ease;
}

.gallery-grid img:hover{
  transform:scale(1.03);
}

.gallery-note{
  text-align:center;
  color:var(--gris-texte);
  margin-top:40px;
  font-size:0.95rem;
}

/* ===== Contact page ===== */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:start;
}

.contact-card{
  background:var(--blanc);
  border-radius:var(--rayon);
  box-shadow:var(--ombre);
  padding:36px;
}

.contact-card h3{
  font-size:1.5rem;
  margin-bottom:18px;
}

.contact-line{
  display:flex;
  gap:12px;
  margin-bottom:14px;
  color:var(--gris-texte);
}

.contact-line strong{
  color:var(--bleu-nuit);
  min-width:110px;
  display:inline-block;
}

.contact-col{
  display:inline-block;
  min-width:170px;
}

.insta-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:18px;
  padding:10px 18px;
  background:var(--creme);
  border-radius:50px;
  font-weight:600;
}

.insta-badge img{
  height:24px;
  width:24px;
  border-radius:6px;
}

.partner-box{
  margin-top:56px;
  text-align:center;
  padding:40px 24px;
  background:var(--blanc);
  border-radius:var(--rayon);
  box-shadow:var(--ombre);
}

.partner-box p{
  color:var(--gris-texte);
  max-width:640px;
  margin:0 auto 16px;
}

/* ===== FOOTER ===== */
footer.site-footer{
  background:var(--bleu-nuit);
  color:rgba(255,255,255,0.75);
  text-align:center;
  padding:32px 24px;
  font-size:0.9rem;
}

footer.site-footer a{
  color:rgba(255,255,255,0.9);
  text-decoration:underline;
}

/* ===== Responsive ===== */
@media (max-width: 820px){
  nav.main-nav{
    position:fixed;
    top:84px;
    left:0;
    right:0;
    background:var(--creme);
    flex-direction:column;
    padding:24px;
    box-shadow:var(--ombre);
    display:none;
  }
  nav.main-nav.open{display:flex;}
  nav.main-nav ul{
    flex-direction:column;
    gap:18px;
    text-align:center;
    width:100%;
  }
  .menu-toggle{display:block;}
  .feature-row, .feature-row.reverse{
    grid-template-columns:1fr;
  }
  .feature-row.reverse .feature-img,
  .feature-row.reverse .feature-text{order:initial;}
  .activity-grid{grid-template-columns:repeat(2, 1fr);}
  .price-grid{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr;}
  .gallery-grid{grid-template-columns:repeat(2, 1fr);}
}

@media (max-width: 520px){
  .activity-grid{grid-template-columns:1fr;}
  .gallery-grid{grid-template-columns:1fr;}
  .header-inner{padding:12px 16px;}
  .logo img{height:44px;}
}

/* ===== Lightbox (agrandissement des photos) ===== */
.lightbox{
  display:none;
  position:fixed;
  inset:0;
  z-index:1000;
  background:rgba(28,42,58,0.92);
  align-items:center;
  justify-content:center;
  padding:40px;
  cursor:zoom-out;
}

.lightbox.open{
  display:flex;
}

.lightbox img{
  max-width:100%;
  max-height:100%;
  border-radius:8px;
  box-shadow:0 20px 60px rgba(0,0,0,0.5);
  cursor:default;
}

.lightbox-close{
  position:absolute;
  top:24px;
  right:32px;
  color:var(--blanc);
  font-size:2.4rem;
  line-height:1;
  cursor:pointer;
  font-family:'Inter',sans-serif;
  opacity:0.85;
}

.lightbox-close:hover{
  opacity:1;
}