
/* =========================================================
   QUEEN EVENT PLANNER — DESIGN SYSTEM
   ========================================================= */
:root{
  --gold:#D4AF37;
  --gold-soft:#c39d2e;
  --black:#0A0A0A;
  --charcoal:#151414;
  --white:#FFFFFF;
  --gray:#F8F8F8;
  --line: rgba(212,175,55,.35);

  --f-display:'Cinzel', serif;
  --f-sub:'Cormorant Garamond', serif;
  --f-body:'Poppins', sans-serif;

  --section-x: 80px;
  --section-y: 110px;
}

@media (max-width: 1024px){
  :root{ --section-x: 40px; --section-y: 70px; }
}
@media (max-width: 767px){
  :root{ --section-x: 22px; --section-y: 50px; }
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family:var(--f-body);
  color:var(--black);
  background:var(--white);
  font-weight:300;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; }

h1,h2,h3,h4{ font-family:var(--f-display); font-weight:600; letter-spacing:.5px; line-height:1.15; }
.eyebrow{
  font-family:var(--f-sub); font-style:italic; font-weight:500;
  font-size:clamp(16px,2vw,20px); color:var(--gold-soft);
  display:flex; align-items:center; gap:14px; margin-bottom:14px;
}
.eyebrow::before{ content:""; width:36px; height:1px; background:var(--gold); display:inline-block; }

.section{ padding:var(--section-y) var(--section-x); }
.section-head{ max-width:640px; margin-bottom:60px; }
.section-head h2{ font-size:clamp(30px,4vw,42px); margin-bottom:16px; }
.section-head p{ font-family:var(--f-sub); font-size:19px; font-style:italic; color:#4a4a4a; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head.center .eyebrow{ justify-content:center; }
.section-head.center .eyebrow::before{ display:none; }

.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--f-body); font-size:13px; font-weight:600;
  letter-spacing:1.6px; text-transform:uppercase;
  padding:16px 34px; transition:.35s ease; white-space:nowrap;
}
.btn-gold{ background:var(--black); color:var(--white); border:1px solid var(--black); }
.btn-gold:hover{ background:var(--gold); border-color:var(--gold); color:var(--black); }
.btn-outline{ background:transparent; color:var(--white); border:1px solid var(--gold); }
.btn-outline:hover{ background:var(--gold); color:var(--black); }
.btn-dark-outline{ background:transparent; color:var(--black); border:1px solid var(--black); }
.btn-dark-outline:hover{ background:var(--black); color:var(--white); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position:absolute; top:0; left:0; width:100%; z-index:1000;
  display:flex; align-items:center; justify-content:space-between;
  padding:28px var(--section-x);
  background:transparent;
  transition:background .4s ease, padding .4s ease, box-shadow .4s ease;
}
.site-header.scrolled{
  position:fixed; background:rgba(10,10,10,.92);
  backdrop-filter:blur(6px); padding:16px var(--section-x);
  box-shadow:0 8px 30px rgba(0,0,0,.25);
}
.logo img{
    height:70px;
    width:auto;
}
.main-nav ul{ display:flex; gap:42px; }
.main-nav a{
  font-size:13px; letter-spacing:1.4px; text-transform:uppercase;
  color:var(--white); position:relative; padding-bottom:4px;
}
.main-nav a::after{
  content:""; position:absolute; left:0; bottom:0; height:1px; width:0;
  background:var(--gold); transition:width .3s ease;
}
.main-nav a:hover::after{ width:100%; }
.header-cta{ display:flex; align-items:center; gap:28px; }
.burger{ display:none; width:26px; height:18px; position:relative; }
.burger span{ position:absolute; left:0; width:100%; height:1.5px; background:var(--white); transition:.3s; }
.burger span:nth-child(1){ top:0; } .burger span:nth-child(2){ top:8px; } .burger span:nth-child(3){ top:16px; }
.burger.active span:nth-child(1){ transform:translateY(8px) rotate(45deg); }
.burger.active span:nth-child(2){ opacity:0; }
.burger.active span:nth-child(3){ transform:translateY(-8px) rotate(-45deg); }

.mobile-nav{
  position:fixed; inset:0; background:var(--black); z-index:999;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:30px;
  transform:translateY(-100%); transition:transform .45s ease; 
}
.mobile-nav.open{ transform:translateY(0); }
.mobile-nav a{ font-family:var(--f-display); font-size:24px; color:var(--white); letter-spacing:1px; }
.mobile-nav a:hover{ color:var(--gold); }

/* =========================================================
   HERO — SLIDER
   ========================================================= */
.hero{ position:relative; height:900px; max-height:100vh; overflow:hidden; background:var(--black); }
@media (max-width:1024px){ .hero{ height:700px; } }
@media (max-width:767px){ .hero{ height:620px; } }

.hero-slide{
  position:absolute; inset:0; opacity:0; transition:opacity 1.1s ease;
  background-size:cover; background-position:center;
}
.hero-slide.active{ opacity:1; }
.hero-slide::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.35) 45%, rgba(10,10,10,.8) 100%);
}
.slide-1{
    background:url('../images/hero/hero-1.jpeg')
    center/cover no-repeat;
}

.slide-2{
    background:url('../images/hero/hero-2.jpeg')
    center/cover no-repeat;
}

.slide-3{
    background:url('../images/hero/hero-3.jpeg')
    center/cover no-repeat;
}
/* CSS-painted decorative scenes standing in for photography */
/*.slide-1{ background:radial-gradient(circle at 30% 30%, #2a2520, #0A0A0A 70%); }
.slide-2{ background:radial-gradient(circle at 70% 40%, #25201a, #0A0A0A 70%); }
.slide-3{ background:radial-gradient(circle at 50% 70%, #221d18, #0A0A0A 70%); }
**/
.hero-content{
  position:relative; z-index:5; height:100%;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding:0 100px; color:var(--white);
}
@media(max-width:768px){

    .main-nav{
        display:none;
    }

    .header-cta .btn{
        display:none;
    }

    .hero-content h1{
        font-size:2rem;
        line-height:1.2;
    }

    .about-stats{
        flex-direction:column;
        gap:20px;
    }

    .contact-grid{
        flex-direction:column;
    }

    .footer-grid{
        flex-direction:column;
    }
}
@media (max-width:767px){ .hero-content{ padding:0 30px; } }
.hero-content .eyebrow{ color:var(--gold); justify-content:center; }
.hero-content .eyebrow::before{ display:none; }
.hero-content h1{
  font-size:clamp(34px,6vw,70px); color:var(--white); max-width:920px; margin-bottom:24px;
}
.hero-content p{ font-family:var(--f-sub); font-style:italic; font-size:clamp(16px,2vw,20px); color:#ddd; max-width:560px; margin-bottom:38px; }

.hero-social{
  position:absolute; left:40px; top:50%; transform:translateY(-50%); z-index:6;
  display:flex; flex-direction:column; align-items:center; gap:20px;
}
.hero-social a{ width:18px; height:18px; color:var(--white); transition:.3s; }
.hero-social a:hover{ color:var(--gold); }
.hero-social .thread{ width:1px; height:70px; background:linear-gradient(var(--gold), transparent); }
@media (max-width:1024px){ .hero-social{ display:none; } }

.hero-nav{
  position:absolute; right:40px; top:50%; transform:translateY(-50%); z-index:6;
  display:flex; flex-direction:column; gap:22px;
}
.hero-nav button{
  font-family:var(--f-display); font-size:13px; color:rgba(255,255,255,.45);
  display:flex; flex-direction:column; align-items:center; gap:8px; transition:.3s;
}
.hero-nav button::after{ content:""; width:1px; height:26px; background:rgba(255,255,255,.25); }
.hero-nav button.active{ color:var(--gold); }
.hero-nav button.active::after{ background:var(--gold); }
@media (max-width:1024px){ .hero-nav{ right:20px; } }
@media (max-width:767px){
  .hero-nav{ right:auto; left:50%; top:auto; bottom:22px; transform:translateX(-50%); flex-direction:row; gap:16px; }
  .hero-nav button::after{ display:none; }
}

/* =========================================================
   SERVICES
   ========================================================= */
.services{ background:var(--white); }
.services-grid{
  display:flex; flex-wrap:wrap; gap:30px; justify-content:center;
}
.service-card{
  flex:1 1 calc(33.333% - 20px); min-width:280px;
  background:var(--white); border:1px solid var(--line);
  padding:48px 36px; text-align:left;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  transition:transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.service-card:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow:0 24px 44px rgba(212,175,55,.22);
  border-color:var(--gold);
}
.service-icon{ width:42px; height:42px; color:var(--gold); margin-bottom:24px; }
.service-card h3{ font-size:21px; margin-bottom:12px; }
.service-card p{ font-size:14.5px; color:#555; }
@media (max-width:1024px){ .service-card{ flex:1 1 calc(50% - 15px); } }
@media (max-width:600px){ .service-card{ flex:1 1 100%; } }

/* =========================================================
   ABOUT
   ========================================================= */
.about{ background:var(--gray); }
.about-grid{ display:flex; align-items:center; gap:70px; }
@media (max-width:1024px){ .about-grid{ flex-direction:column; } }
.about-media{ flex:1 1 45%; position:relative; }
.about-frame{
  aspect-ratio:4/5; width:100%;
  background:linear-gradient(135deg,#222 0%, #0A0A0A 60%);
  position:relative;
}
.about-frame{
    aspect-ratio:4/5;
    overflow:hidden;
    position:relative;
}

.about-frame img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.about-frame::before, .about-frame::after{
  content:""; position:absolute; width:90px; height:90px; border:1px solid var(--gold);
}
.about-frame::before{ top:-16px; left:-16px; border-right:none; border-bottom:none; }
.about-frame::after{ bottom:-16px; right:-16px; border-left:none; border-top:none; }
.about-content{ flex:1 1 55%; }
.about-content h2{ font-size:clamp(28px,4vw,40px); margin-bottom:20px; }
.about-content p{ color:#444; margin-bottom:18px; max-width:520px; }
.about-stats{ display:flex; gap:46px; margin:34px 0 38px; }
.stat b{ font-family:var(--f-display); font-size:30px; color:var(--gold-soft); display:block; }
.stat span{ font-size:12.5px; letter-spacing:1px; text-transform:uppercase; color:#777; }

/* =========================================================
   PORTFOLIO / RÉALISATIONS
   ========================================================= */

.portfolio{
  background:var(--white);
}


/* =========================
   FILTRES
   ========================= */

.filters{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
  margin-bottom:46px;
}

.filter-btn{
  font-size:12.5px;
  letter-spacing:1.4px;
  text-transform:uppercase;
  padding:10px 4px;
  color:#777;
  border-bottom:1px solid transparent;
  transition:.3s;
}

.filter-btn:hover{
  color:var(--black);
}

.filter-btn.active{
  color:var(--black);
  border-color:var(--gold);
}


/* =========================
   GRILLE
   ========================= */

.gallery-grid{
  display:flex;
  flex-wrap:wrap;
  gap:22px;
}


/* =========================
   CARTE RÉALISATION
   ========================= */

.gallery-item{
  flex:1 1 calc(33.333% - 15px);
  min-width:260px;
  aspect-ratio:4/5;
  position:relative;
  overflow:hidden;
  cursor:pointer;
}


/* =========================
   IMAGE DYNAMIQUE
   ========================= */

.gallery-item .ph{
  position:absolute;
  inset:0;

  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;

  transition:transform .6s ease;
}


/* =========================
   EFFET AU SURVOL
   ========================= */

.gallery-item:hover .ph{
  transform:scale(1.08);
}


/* =========================
   OVERLAY
   ========================= */

.gallery-item .g-overlay{
  position:absolute;
  inset:0;

  background:rgba(10,10,10,.45);

  opacity:0;

  display:flex;
  align-items:center;
  justify-content:center;

  flex-direction:column;
  gap:6px;

  transition:opacity .4s ease;

  color:var(--white);
  text-align:center;

  padding:20px;
}


/* Afficher l'overlay au survol */

.gallery-item:hover .g-overlay{
  opacity:1;
}


/* =========================
   TITRE
   ========================= */

.g-overlay strong{
  font-family:var(--f-display);
  font-size:16px;
  letter-spacing:1px;
}


/* =========================
   LIEU
   ========================= */

.g-overlay span{
  font-family:var(--f-sub);
  font-style:italic;
  font-size:13.5px;
  color:var(--gold);
}


/* =========================
   ÉLÉMENT MASQUÉ PAR FILTRE
   ========================= */

.gallery-item.hide{
  display:none;
}


/* =========================
   MESSAGE VIDE / ERREUR
   ========================= */

.portfolio-empty,
.portfolio-error{
  width:100%;
  text-align:center;
  padding:40px 20px;

  font-family:var(--f-sub);
  font-style:italic;
  font-size:18px;

  color:#777;
}


/* =========================
   TABLETTE
   ========================= */

@media (max-width:1024px){

  .gallery-item{
    flex:1 1 calc(50% - 11px);
  }

}


/* =========================
   MOBILE
   ========================= */

@media (max-width:600px){

  .gallery-item{
    flex:1 1 100%;
  }

}

/* =========================================================
   ÉQUIPE
   ========================================================= */
.team{ background:var(--gray); }
.team-grid{ display:flex; flex-wrap:wrap; gap:30px; justify-content:center; }
.team-card{ flex:1 1 calc(25% - 23px); min-width:220px; text-align:center; }
.team-photo{
  position:relative; aspect-ratio:1/1; border-radius:50%; overflow:hidden; margin-bottom:22px;
  background:linear-gradient(150deg,#222,#0A0A0A); border:1px solid var(--line);
}
.team-social{
  position:absolute; inset:0; background:rgba(10,10,10,.55); opacity:0;
  display:flex; align-items:center; justify-content:center; gap:14px; transition:.35s;
}
.team-photo:hover .team-social{ opacity:1; }
.team-social a{ width:16px; height:16px; color:var(--gold); }
.team-card h4{ font-size:18px; margin-bottom:4px; }
.team-card span{ font-size:12px; letter-spacing:1.2px; text-transform:uppercase; color:#888; }
@media (max-width:1024px){ .team-card{ flex:1 1 calc(50% - 15px); } }

/* =========================================================
   TÉMOIGNAGES
   ========================================================= */
.testimonials{ background:var(--black); color:var(--white); text-align:center; }
.testimonials .section-head h2{ color:var(--white); }
.testi-track{ position:relative; max-width:760px; margin:0 auto; min-height:230px; }
.testi-slide{
  position:absolute; inset:0; opacity:0; transform:translateY(12px);
  transition:opacity .6s ease, transform .6s ease; display:flex; flex-direction:column; align-items:center; gap:20px;
}
.testi-slide.active{ opacity:1; transform:translateY(0); position:relative; }
.testi-quote-mark{ font-family:var(--f-display); font-size:46px; color:var(--gold); line-height:1; }
.testi-slide p{ font-family:var(--f-sub); font-style:italic; font-size:clamp(18px,2.4vw,24px); color:#eee; max-width:600px; }
.testi-avatar{ width:56px; height:56px; border-radius:50%; background:linear-gradient(150deg,#333,#111); border:1px solid var(--gold); }
.testi-name{ font-family:var(--f-display); font-size:14px; letter-spacing:1px; }
.testi-role{ font-size:12px; color:#999; }
.testi-dots{ display:flex; gap:10px; justify-content:center; margin-top:34px; }
.testi-dots button{ width:8px; height:8px; border-radius:50%; background:#444; transition:.3s; }
.testi-dots button.active{ background:var(--gold); width:22px; border-radius:5px; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact{ background:var(--white); }
.contact-grid{ display:flex; gap:70px; }
@media (max-width:1024px){ .contact-grid{ flex-direction:column; } }
.contact-form{ flex:1 1 50%; }
.contact-form .row{ display:flex; gap:20px; }
@media (max-width:600px){ .contact-form .row{ flex-direction:column; } }
.field{ margin-bottom:26px; flex:1; }
.field label{ display:block; font-size:12px; letter-spacing:1px; text-transform:uppercase; color:#777; margin-bottom:8px; }
.field input, .field select, .field textarea{
  width:100%; border:none; border-bottom:1px solid #ddd; padding:10px 2px;
  font-family:var(--f-body); font-size:15px; background:transparent; transition:.3s;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--gold); }
.field textarea{ resize:vertical; min-height:90px; }

#formMessage{
  margin-top:22px;
  padding:14px 18px;
  border-left:2px solid var(--gold);
  background:var(--gray);
  color:#555;
  font-family:var(--f-body);
  font-size:13.5px;
  line-height:1.6;
}

.contact-aside{ flex:1 1 50%; display:flex; flex-direction:column; gap:24px; }
.map-box{
  flex:1; min-height:320px; background:
    repeating-linear-gradient(45deg, var(--gray), var(--gray) 10px, #f0eee9 10px, #f0eee9 20px);
  border:1px solid var(--line); display:flex; align-items:center; justify-content:center;
  text-align:center; padding:20px; color:#999; font-size:13px;
}
.contact-info{ display:flex; flex-direction:column; gap:10px; font-size:14.5px; color:#444; }
.contact-info strong{ color:var(--black); }

.whatsapp-btn{
  position:fixed; bottom:28px; right:28px; z-index:500;
  width:58px; height:58px; border-radius:50%; background:#0A0A0A; border:1px solid var(--gold);
  display:flex; align-items:center; justify-content:center; box-shadow:0 10px 26px rgba(0,0,0,.3);
  transition:.3s;
}
.whatsapp-btn:hover{ background:var(--gold); }
.whatsapp-btn svg{ width:26px; height:26px; color:var(--gold); }
.whatsapp-btn:hover svg{ color:var(--black); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background:var(--black); color:#ccc; padding:90px var(--section-x) 0; }
.footer-grid{
  display:flex; flex-wrap:wrap; gap:50px; padding-bottom:50px;
  border-bottom:1px solid rgba(212,175,55,.2);
}
.footer-col{ flex:1 1 220px; }
.footer-logo{ font-family:var(--f-display); font-size:22px; color:var(--white); letter-spacing:2px; margin-bottom:16px; }
.footer-logo span{ color:var(--gold); }
.footer-col p{ font-size:13.5px; color:#999; max-width:280px; }
.footer-col h5{ font-family:var(--f-body); font-size:13px; letter-spacing:1.4px; text-transform:uppercase; color:var(--white); font-weight:500; margin-bottom:20px; }
.footer-col ul li{ margin-bottom:12px; }
.footer-col a{ font-size:14px; color:#aaa; transition:.3s; }
.footer-col a:hover{ color:var(--gold); }
.footer-social{ display:flex; gap:14px; margin-top:18px; }
.footer-social a{ width:34px; height:34px; border:1px solid rgba(212,175,55,.4); border-radius:50%; display:flex; align-items:center; justify-content:center; }
.footer-social svg{ width:14px; height:14px; color:var(--gold); }
.footer-social a:hover{ background:var(--gold); }
.footer-social a:hover svg{ color:var(--black); }
.sub-footer{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  padding:24px 0; font-size:12.5px; color:#777;
}
.sub-footer a{ color:#999; margin-left:18px; }
.sub-footer a:hover{ color:var(--gold); }

/* reveal-on-scroll */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }
@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; animation:none !important; }
}

/* =========================================================
   ALBUM DES RÉALISATIONS — LIGHTBOX
   ========================================================= */

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: none;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.94);
    padding: 30px;
}

.gallery-lightbox.active {
    display: flex;
}

.gallery-lightbox-image {
    max-width: 90vw;
    max-height: 85vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow: 0 20px 60px rgba(0,0,0,.6);
}

/* Bouton fermer */

.gallery-lightbox-close {
    position: absolute;

    top: 20px;
    right: 25px;

    z-index: 3;

    width: 45px;
    height: 45px;

    border: 1px solid rgba(255,255,255,.4);
    border-radius: 50%;

    background: rgba(0,0,0,.4);

    color: white;

    font-size: 30px;
    line-height: 40px;

    cursor: pointer;
}

/* Boutons précédent / suivant */

.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    z-index: 3;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    background: rgba(0,0,0,.45);

    border: 1px solid rgba(255,255,255,.4);

    color: white;

    font-size: 32px;

    cursor: pointer;
}

.gallery-lightbox-prev {
    left: 25px;
}

.gallery-lightbox-next {
    right: 25px;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover,
.gallery-lightbox-close:hover {
    background: var(--gold);
    color: var(--black);
}

/* Compteur */

.gallery-lightbox-counter {
    position: absolute;

    bottom: 20px;
    left: 50%;

    transform: translateX(-50%);

    color: white;

    font-family: var(--f-body);

    font-size: 13px;

    letter-spacing: 1px;
}

/* Mobile */

@media (max-width: 600px) {

    .gallery-lightbox {
        padding: 15px;
    }

    .gallery-lightbox-image {
        max-width: 94vw;
        max-height: 80vh;
    }

    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 42px;
        height: 42px;

        font-size: 25px;
    }

    .gallery-lightbox-prev {
        left: 10px;
    }

    .gallery-lightbox-next {
        right: 10px;
    }

    .gallery-lightbox-close {
        top: 10px;
        right: 10px;
    }
}