/* layout.css */
/* Structure globale */

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}

/* Container générique moderne (on gardera aussi .container tant qu'il y a du Bootstrap) */
.container {
    max-width: 1280px;
    margin: 0 auto;
}
.pk-container {
  max-width: 1280px;
  margin: 0 auto;

}

/* Bloquer le scroll quand la nav mobile est ouverte */
body.pk-nav-open {
  overflow: hidden;
}

/* Désactivation complète du Ken Burns sur mobile
   (évite que s2.avif devienne LCP) */
@media (max-width: 767px) {

  /* 1. Conteneurs typiques du slideshow / Ken Burns */
  #slideshow,
  .kenburns,
  .kenburns-wrapper,
  .kenburns-slide {
    display: none !important;
  }
}

.orange {
  color: #dd9933;
}

.around-title {
    text-align: center;
}

/* ======================= */
/* HEADER                  */
/* ======================= */

/* Sticky header (global override) */
#header.header-section{
  position: sticky;
  top: 0;
  z-index: 9999;
}

body.page-portfolio #header.header-section,
body.page-contact  #header.header-section,
body.page-shooting #header.header-section{
  position: sticky !important;
  top: 0;
  z-index: 9999;
}


.sticky-navigation {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #000;
  border-bottom: 1px solid #303030;
}

.pk-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
}

/* LOGO */
.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  display: block;
  height: 52px;
  width: auto;
}

/* ======================= */
/* NAVIGATION GLOBALE     */
/* ======================= */

/* Container nav */
.pk-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Liste principale */
.pk-nav-list,
.pk-nav > ul.nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0rem;
}

/* Items */
.pk-nav-list > li,
.pk-nav > ul.nav > li {
  position: relative;
}

/* Liens top-level */
.pk-nav-list > li > a,
.pk-nav > ul.nav > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding-block: 0.75rem;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Bebas Neue", system-ui, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  font-weight: 200;
  transition:
    color 0.18s ease,
    opacity 0.18s ease;
}

/* Upperline animé par lien */
.pk-nav-list > li > a::before,
.pk-nav > ul.nav > li > a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 70%;
  height: 2px;
  background: var(--color-accent, #dd9933);
  border-radius: 999px;
  transition: transform 0.18s ease-out;
}

/* Hover / focus / actif */
.pk-nav-list > li > a:hover,
.pk-nav > ul.nav > li > a:hover,
.pk-nav-list > li:hover > a,
.pk-nav > ul.nav > li:hover > a,
.pk-nav-list > li:focus-within > a,
.pk-nav > ul.nav > li:focus-within > a {
  color: #dd9933;
}

.pk-nav-list > li:hover > a::before,
.pk-nav > ul.nav > li:hover > a::before,
.pk-nav-list > li:focus-within > a::before,
.pk-nav > ul.nav > li:focus-within > a::before {
  transform: translateX(-50%) scaleX(1);
}

/* Icône home dans la nav */
.pk-nav .pk-icon {
  width: 22px;
  height: 22px;
  fill: #fff;
}

/* Langues */
.pk-nav .lank {
  display: flex;
  list-style: none;
  margin: 0 0 0 1.5rem;
  padding: 0;
  gap: 0.75rem;
}

.pk-nav .lank a {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  opacity: 0.8;
}

.pk-nav .lank a:hover {
  opacity: 1;
  color: #dd9933;
}

.langnl {
  padding: 4px;
  border: 1px solid #404040;
  width: 2.3rem;
  display: inline-flex;
  justify-content: center;
  background-color: rgba(32, 32, 32);
}

/* Le UL du menu */
.pk-nav ul.nav {
  position: relative;
}

/* Liens : pas de bordure qui change la hauteur */
.pk-nav ul.nav > li > a {
  position: relative;
  display: inline-block;
  padding: 0.75rem 1.2rem;
  border: 0;
  text-decoration: none;
  transition: color 200ms ease;
}

/* On évite les bordures parasites */
.pk-nav ul.nav > li > a,
.pk-nav ul.nav > li > a:hover,
.pk-nav ul.nav > li.active > a {
  border-top: none;
  border-bottom: none;
}

/* Laser upperline par lien, via ::before */
.pk-nav ul.nav > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;                     /* en haut du lien */
  width: 100%;
  height: 2px;
  background: #dd9933;
  transform: scaleX(0);       /* invisible au repos */
  transform-origin: left;     /* part du côté gauche */
  transition: transform 260ms ease;
}

/* Hover + active : le laser se déploie */
.pk-nav ul.nav > li > a:hover::before,
.pk-nav ul.nav > li.active > a::before {
  transform: scaleX(1);
}

/* Optionnel : couleur texte au hover/actif */
.pk-nav ul.nav > li > a:hover,
.pk-nav ul.nav > li.active > a {
  color: #dd9933;
}

/* ======================= */
/* BURGER                  */
/* ======================= */

.pk-burger {
  border: 0;
  background: transparent;
  padding: 0;
  margin-left: 16px;
  margin-right: 0;
  width: 30px;
  height: 22px;
  display: none;            /* visible seulement en mobile */
  flex-shrink: 0;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 40;
}

.pk-burger-bar {
  display: block;
  height: 4px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 160ms ease, opacity 160ms ease;
}

/* Burger → CROIX quand le menu est ouvert */
body.pk-nav-open #navToggle .pk-burger-bar:nth-child(1) {
  transform-origin: left center;
  transform: rotate(35deg) translateY(-1px);
}

body.pk-nav-open #navToggle .pk-burger-bar:nth-child(2) {
  opacity: 0;
}

body.pk-nav-open #navToggle .pk-burger-bar:nth-child(3) {
  transform-origin: left center;
  transform: rotate(-35deg) translateY(1px);
}

/* ============================ */
/* NAV + SOUS-MENU – DESKTOP   */
/* ============================ */

/* ======================================================
   PK NAVIGATION PREMIUM 2025 – FIX HOVER
   Sous-menu cliquable + caret ▼
   ====================================================== */

@media (min-width: 961px) {

  /* Parent */
  .pk-nav .menu-item-has-children {
    position: relative;
  }

  /* Ajout du caret ▼ automatiquement */
  .pk-nav .menu-item-has-children > a {
    position: relative;
    padding-right: 1.4rem; /* espace pour la flèche */
  }

  .pk-nav .menu-item-has-children > a::after {
    content: "▼";
    font-size: 0.55rem;
    color: var(--color-accent, #dd9933);
    position: absolute;
    right: 0.25rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.25s ease, opacity 0.25s ease;
    opacity: 0.75;
  }

  /* Rotation du caret au hover */
  .pk-nav .menu-item-has-children:hover > a::after,
  .pk-nav .menu-item-has-children:focus-within > a::after {
    transform: translateY(-50%) rotate(180deg);
    opacity: 1;
  }

  /* -------- Sous-menu : collé sous Services, sans trou -------- */

  .pk-nav .sub-menu {
    position: absolute;
    top: 100%;          /* juste sous le li, pas de gap */
    left: 0;

    min-width: 230px;
    padding: 0.75rem 0;
    margin: 0;

    list-style: none;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
      0 12px 30px rgba(0,0,0,0.55),
      0 0 0 1px rgba(255,255,255,0.04) inset;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(0);   /* plus de slide qui crée un trou */
    z-index: 9999;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  /* Sous-menu visible : le <li> complet sert de zone hover */
  .pk-nav .menu-item-has-children:hover > .sub-menu,
  .pk-nav .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Liens du sous-menu */
  .pk-nav .sub-menu li a {
        display: block;
        padding: 0.55rem 1.2rem;
        font-size: 1.1rem;
        white-space: nowrap;
        color: #f5f5f5;
        transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
        font-family: 'Bebas Neue';
        text-decoration: none;
        letter-spacing: 0.1rem;
}

.pk-nav .sub-menu li a:hover {
  background: rgba(221,153,51,0.15);
  color: var(--color-accent, #dd9933);
  transform: translateX(4px);
}

}

/* ============================ */
/* NAV + BURGER – MOBILE       */
/* ============================ */

@media (max-width: 960px) {

  .pk-header-inner {
    height: 72px;
  }

  .site-logo img {
    height: 40px;
  }

  /* NAV MOBILE – overlay plein écran */
  .pk-nav {
    position: fixed;
    inset: 0;
    height: 100vh;
    padding: 5rem 2rem 2rem;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
    z-index: 999;
  }

  /* Nav visible quand <body> possède .pk-nav-open */
  body.pk-nav-open .pk-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* Liste principale */
  .pk-nav > ul.nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
  }

  .pk-nav > ul.nav > li {
    margin: 0;
  }

  /* Lien principal */
  .pk-nav > ul.nav > li > a {
    display: block;
    padding: 12px 0;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-bottom: 1px solid #333;
  }

  /* Désactiver l’upperline en mobile pour alléger */
  .pk-nav-list > li > a::before,
  .pk-nav > ul.nav > li > a::before {
    display: none;
  }

  /* Lien parent "Services" (accordéon) */
  .pk-nav .menu-item-has-children > a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }

  .pk-nav .menu-item-has-children > a::after {
    content: "▾";
    font-size: 0.9rem;
    color: #dd9933;
    transition: transform 0.25s ease;
    position: static;
    opacity: 1;
  }

  .pk-nav .menu-item-has-children.is-open > a::after {
    transform: rotate(180deg);
  }

  /* Sous-menu : accordéon */
  .pk-nav .sub-menu {
    position: static;
    margin: 0.15rem 0 0.4rem 0;
    padding: 0;
    list-style: none;
    border: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .pk-nav .menu-item-has-children.is-open > .sub-menu {
    max-height: 600px; /* assez pour contenir les liens */
  }

  .pk-nav .sub-menu li a {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 8px 10px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 6px;
    border-bottom: 1px solid #333;

    font-family: "Bebas Neue", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    color: #ddd;
    text-decoration: none;
  }

  .pk-nav .sub-menu li:last-child a {
    border-bottom: none;
  }

  .pk-nav .sub-menu a:hover {
    color: #fff;
  }

  /* Langues en bas de l’overlay */
  .pk-nav .lank {
    margin-top: 2rem;
    justify-content: center;
  }

  /* Burger visible en mobile */
  .pk-burger {
    display: flex;
    border: 0;
    background: transparent;
    padding: 0;
    margin-left: auto;
    margin-right: 6px;
    width: 30px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;

    position: relative;
    top: auto;
    right: auto;
    z-index: 1001;
  }

  /* Burger déplacé en haut à droite quand le menu est ouvert */
  body.pk-nav-open .pk-burger {
    position: fixed;
    top: 16px;
    right: 18px;
    margin: 0;
  }
}

/* ======================================================== */
/* HERO – layout moderne                                    */
/* ======================================================== */

.pk-hero {
  position: relative;
  min-height: 80vh;
  color: var(--color-text);
}

/* image pleine largeur en fond */
.pk-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pk-hero-media picture,
.pk-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* bloc central */
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1140px;
  margin: 0 auto;
  padding-inline: var(--space-4);
  padding-block: var(--space-7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

/* responsive */
@media (max-width: 768px) {
  .hero-inner {
    padding-block: var(--space-6);
    align-items: flex-start;
  }
}

/* Titre HERO */

.pk-hero-heading {
  text-align: center;
}

/* HERO centré verticalement sur desktop */
@media (min-width: 1024px) {
  .pk-hero-heading {
    position: relative;
    z-index: 10;
    min-height: 84vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 5vh;
    padding-bottom: 10vh;
  }
}

.pk-hero-title {
  margin: 0;
  font-family: "Raleway", system-ui, sans-serif;
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  text-transform: uppercase;
  font-weight: 500;
}

.pk-hero-pixel {
  font-family: "Raleway", system-ui, sans-serif;
  color: #dd9933;
}

.pk-hero-komando {
  font-family: "Raleway", system-ui, sans-serif;
  color: #ffffff;
}

.pk-hero-title-divider {
  position: relative;
  width: 140px;
  height: 3px;
  margin: 0.5rem auto 0.75rem;
  background: #ffffff;
  text-shadow: 0px 0px 8px #000;
}

.pk-hero-photo {
  margin: 0;
  font-family: "Raleway", system-ui, sans-serif;
  font-size: clamp(2.4rem, 3.6vw, 2rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: #ffffff;
  position: relative;
  margin-bottom: 44px;
}

.pk-hero-tagline {
  position: relative;
  display: grid;
  margin-top: 1.2rem;
  padding: 0.95rem 2.8rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 9px;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 200;
  text-align: center;
  justify-self: center;
  font-family: "Bebas Neue";
  letter-spacing: 0.18rem;
  border: 1px solid #404040;
}

.pk-hero-sectors a {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.85);
}

h1.page-title {
  font-family: "Raleway", sans-serif;
  font-size: 64px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0em !important;
  margin: 0 auto 40px;
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}

ul.lank a {
    color: #b2b2b2;
    font-weight: 800;
    text-decoration: none;
}

/* ======================= */
/* SECTION ABOUT           */
/* ======================= */

.pk-about-wrapper {
  background: #000;
  border: 1px solid #404040;
  padding: 3rem 2.5rem;
  border-radius: 0;
  position: relative;
  margin: 2.5rem auto;
  max-width: 1280px;
}

.pk-about-content {
  max-width: 960px;
  margin: 0 auto;
}

.pk-about-body {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
  color: #ddd;
  line-height: 1.7;
}

.about-us-section {
  background: #101010;
  border-top: 1px solid #303030;
  border-bottom: 1px solid #303030;
  border-radius: 0;
  padding: 3rem 0;
}

.pk-about-body p b {
  color: #fff;
}

.pk-about-body a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #dd9933;
}

/* ======================= */
/* TESTIMONIALS            */
/* ======================= */

.pk-testimonials-wrapper {
  background: #000;
  border: 1px solid #404040;
  max-width: 1280px;
  margin: 2.5rem auto 0;
  padding: 2.5rem 2.5rem 3rem;
  text-align: center;
  position: relative;
}

.pk-testimonials {
  display: grid;
  gap: 1.5rem;
  margin: 2rem auto 0;
}

@media (min-width: 900px) {
  .pk-testimonials {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pk-testimonial {
  background: radial-gradient(circle at top left, #222 0, #111 60%);
  border-radius: 1.25rem;
  padding: 1.5rem 1.4rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
  text-align: left;
  position: relative;
  overflow: hidden;
  text-align:center;
}

.pk-testimonial::before {
  content: "“";
  position: absolute;
  font-size: 3rem;
  opacity: 0.04;
  top: 0.3rem;
  right: 1rem;
}

.pk-stars {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: #dd9933;
  margin-bottom: 0.6rem;
}

.pk-testimonial p {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
}

.pk-testimonial-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  margin-right: 0.5rem;
  overflow: hidden;
}

.pk-testimonial-avatar img.pk-testimonial-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pk-author {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ======================= */
/* GOOGLE RATING           */
/* ======================= */

.pk-google-rating-wrapper {
  background: #000;
  border: 1px solid #404040;
  max-width: 1280px;
  margin: 2rem auto 0;
  padding: 2rem 2rem;
  position: relative;
  text-align: center;
}

.pk-google-rating {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.pk-google-logo {
  display: block;
}

.pk-google-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}

.pk-google-stars .pk-icon {
  width: 34px;
  height: 34px;
}

.pk-google-text {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 2.4rem;
}

@media (max-width: 600px) {
  .pk-google-rating-wrapper {
    padding-inline: 1.25rem;
  }

  .pk-google-rating {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ======================= */
/* SECTION ME              */
/* ======================= */

#me {
  margin: 0;
  padding: 0;
  position: relative;
  background: url(/images/background-images/stratup-bg.avif) center/cover no-repeat fixed;
  overflow: hidden;
}

#me::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #010101;
  pointer-events: none;
}

.pk-me-wrapper {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
}

.pk-me-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: flex-start;
}

@media (max-width: 960px) {
  #me::before {
    width: 100%;
  }

  .pk-me-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.pk-me-text {
  padding: 2rem 2.5rem;
  color: #ddd;
  z-index: 3;
  position: relative;
}

.pk-me-title {
  font-size: 28px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pk-dot {
  width: 14px;
  height: 14px;
  background: #dd9933;
  display: inline-block;
}

.pk-me-body {
  display: grid;
  gap: 1rem;
  line-height: 1.7;
  max-width: 56rem;
  width: 100%;
}

.pk-me-body p b {
  color: #fff;
}

.pk-me-image {
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  z-index: 3;
}

.pk-me-image img.vince {
  border-radius: 1rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.pk-me-sub {
  display: grid;
  gap: 0.9rem;
  color: #ddd;
  line-height: 1.7;
}

.pk-me-sub p b {
  color: #fff;
}

/* ======================= */
/* SECTION SERVICES        */
/* ======================= */

.pk-services-section {
  padding: 4rem 0;
  background: #101010;
  border-top: 1px solid #303030;
  border-bottom: 1px solid #303030;
}

.pk-services-wrapper {
    max-width: 1280px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

/* NB: .pk-section-title est défini globalement dans components.css */

.pk-services-intro {
    display: grid;
    gap: 1rem;
    line-height: 1.7;
    color: #ccc;
    margin: auto;
    background: #000000;
    padding: 24px;
    border: 1px solid #404040;
    border-radius: 8px;
}

.pk-services-intro p b {
  color: #fff;
}

.pk-services-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .pk-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .pk-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .pk-services-grid {
    grid-template-columns: 1fr;
  }
}

.pk-service-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  padding: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(0);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
  display: flex;
  place-items: center;
  flex-direction: column;
}

.pk-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 1;
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

.pk-service-card * {
  position: relative;
  z-index: 2;
}

.pk-service-card:hover {
  border-color: #dd9933;
  transform: translateY(-6px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.45);
}

.pk-service-card .pk-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 1rem;
  fill: #fff;
}

.pk-service-card h3 {
  margin-top: 0.5rem;
  color: #fff;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* backgrounds pour services */
.arki {
  background-image: url(/images/background-images/arki.webp);
}

.lands {
  background-image: url(/images/background-images/lands.webp);
}

.estate {
  background-image: url(/images/background-images/estate.webp);
}

.bnb {
  background-image: url(/images/background-images/bnb.webp);
}

.bnb2 {
  background-image: url(/images/background-images/bnb2.webp);
}

.horeca {
  background-image: url(/images/background-images/horeca.webp);
}

.sroom {
  background-image: url(/images/background-images/sroom.webp);
}

.shops {
  background-image: url(/images/background-images/shops.webp);
}

.portraits {
  background-image: url(/images/background-images/portraits.webp);
}

.drone {
  background-image: url(/images/background-images/drone.webp);
}

.babyboy {
  background-image: url(/images/background-images/babyboy.webp);
}

.cosplay {
  background-image: url(/images/background-images/cosplay.webp);
}

/* ======================= */
/* INTERSTICE IMAGE        */
/* ======================= */

.pk-interstice {
  margin: 0;
  padding: 0;
}

.pk-interstice-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ======================= */
/* FUN FACTS / COUNTERS    */
/* ======================= */

.pk-facts-section {
  padding: 4rem 0;
  background: url(/images/background-images/fun-fact-bg.avif) center center / cover no-repeat fixed;
}

.pk-facts-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  text-align: center;
}

.pk-facts-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
}

@media (max-width: 900px) {
  .pk-facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .pk-facts-grid {
    grid-template-columns: 1fr;
  }
}

.pk-title-intro {
    margin-top: 0.8rem;
    font-size: 1.05rem;
    color: #ccc;
    width: 1100px;
    margin: auto;
    font-weight: 100 !important;
    font-family: 'Arial';
    text-align: center;
    background: #101010;
    padding: 8px;
    border: 1px solid #dd9933;
    border-radius: 6px;
}


.pk-fact {
    background: #0e0e0e;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    border: 1px solid #404040;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    transform: translateY(0);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    min-width: 280px;
}
.pk-fact:hover {
  transform: translateY(-6px);
  border-color: #dd9933;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.6);
}

.pk-icon--fact {
  width: 84px;
  height: 84px;
  margin-bottom: 0.25rem;
  fill: var(--color-accent);
}

.pk-fact-value {
  font-size: 3.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
  padding: 0;
  margin: 0;
}

.pk-fact-label {
  margin: 0;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ccc;
}

@keyframes pk-halo {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(221, 153, 51, 0));
  }

  45% {
    transform: scale(1.25);
    filter: drop-shadow(0 0 18px rgba(221, 153, 51, 0.8));
  }

  80% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(221, 153, 51, 0.6));
  }

  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(221, 153, 51, 0));
  }
}

.pk-fact--halo .pk-icon--fact {
  animation: pk-halo 0.9s ease-out forwards;
}

/* ======================= */
/* LINKS – Pixel Komando   */
/* ======================= */

.pk-links-section {
  padding: 4rem 0;
  background: #101010;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.pk-links-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}

.pk-links-intro {
  margin: 0 0 2.5rem;
  display: flex;
  justify-content: center;
}

.pk-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

@media (max-width: 900px) {
  .pk-links-grid {
    grid-template-columns: 1fr;
  }
}

.pk-link-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  background: radial-gradient(circle at top left, #1b1b1b, #090909);
  border: 1px solid #303030;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.pk-link-card:hover {
  transform: translateY(-4px);
  border-color: #dd9933;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
  background: radial-gradient(circle at top left, #26201a, #090909);
}

.pk-link-logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: block;
  border: 3px solid var(--color-border);
}

.pk-link-text h3 {
  margin: 0 0 .2rem;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-family: var(--font-body);
}

.pk-link-text p {
  margin: 0;
  font-size: 1.1rem;
  color: #ccc;
}

/* ======================= */
/* RESEAUX SOCIAUX SECTION */
/* ======================= */

.pk-social-section {
  padding: 4rem 0;
  background: url(/images/background-images/twitter.avif) center center / cover no-repeat fixed;
}

.pk-social-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  text-align: center;
}

.pk-social-grid {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
}

.pk-social-link {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background .22s ease;
}

.pk-social-link .pk-icon {
  width: 32px;
  height: 32px;
  fill: #fff;
  transition: fill .25s ease;
}

.pk-social-link:hover {
  transform: translateY(-4px) scale(1.05);
  background: #181208;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.7),
              0 0 18px rgba(221, 153, 51, 0.4);
}

/* ======================= */
/* CLIENTS – DOUBLE SLIDER */
/* ======================= */

.pk-clients-section {
  background: #101010;
  padding: 4rem 0;
}

.pk-clients-header {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  padding: 0 2rem;
  text-align:center;
}

.pk-clients-slider {
  width: 100%;
  overflow: hidden;
  padding: 4.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.pk-clients-row {
  width: 100%;
  overflow: hidden;
}

.pk-clients-track {
  display: flex;
  will-change: transform;
  animation: pk-clients-marquee 45s linear infinite;
  animation-play-state: paused;
}

.pk-clients-row--bottom .pk-clients-track {
  animation-duration: 55s;
}

.pk-clients-group {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-shrink: 0;
}

.pk-clients-group img {
  display: block;
  width: 160px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  opacity: 0.9;
  transition: transform .25s ease,
              filter .25s ease,
              opacity .25s ease;
}

.pk-clients-group img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.08);
}

@keyframes pk-clients-marquee {
  from {
    transform: translateX(var(--pk-marquee-start, 0px));
  }

  to {
    transform: translateX(var(--pk-marquee-end, -500px));
  }
}

.pk-clients-track.pk-marquee-ready {
  animation-play-state: running;
}

/* ======================= */
/* CONTACT SUMMARY         */
/* ======================= */

.pk-contact-summary {
  background: #000;
  padding: 0rem 0 4rem;
  border-bottom: 1px solid #303030;
  border-top: 1px solid #303030;
}

.pk-contact-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

@media (max-width: 960px) {
  .pk-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .pk-contact-grid {
    grid-template-columns: 1fr;
  }
}

.pk-contact-item {
  text-align: center;
  padding: 1rem 0.4rem 0.4rem 0.4rem;
  background: #0b0b0b;
  border-radius: 14px;
  border: 1px solid #303030;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.pk-contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  background: #121212;
  border: 1px solid #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .25rem;
}

.pk-contact-icon .pk-icon {
  width: 38px;
  height: 38px;
  fill: var(--color-accent);
}

.pk-contact-title {
  margin: 0.25rem 0 0.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.pk-dot--small {
  width: 10px;
  height: 10px;
  margin-right: .35rem;
}

.pk-contact-text {
  margin: 0;
  font-size: 0.95rem;
  color: #ccc;
}

.pk-contact-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.pk-contact-link:hover {
  color: #dd9933;
}

/* ======================= */
/* COPYRIGHTS              */
/* ======================= */

.pk-copyrights {
  background: #101010;
}

.pk-copyrights-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  text-align: center;
}

.pk-copyrights-text {
  margin: 0;
  font-size: 0.85rem;
  color: #888;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

/* ======================= */
/* FIX MOBILE ABOUT + ME   */
/* ======================= */

@media (max-width: 768px) {

  /* About : on réduit les marges/paddings pour coller au viewport */
  .pk-about-wrapper {
    max-width: 100%;
    margin: 2rem 0;
    padding: 2rem 1.5rem;
  }

  .pk-about-content {
    max-width: 100%;
  }

  /* Me : même logique, on évite tout débordement à droite */
  .pk-me-wrapper {
    max-width: 100%;
    margin: 0;
    padding: 2.5rem 1.5rem;
  }

  .pk-me-text {
    padding: 1.5rem 1.5rem;
  }

  .pk-me-image img.vince {
    max-width: 100%;
    height: auto;
    display: block;
  }
}

/* Filet de sécurité global si un truc dépasse encore */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}

/* ============================ */
/* PK MODEL CARD – VERSION 2025 */
/* ============================ */

.pk-model-card {
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.8rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pk-model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  border-color: #dd9933;
}

/* TITRE */
.pk-model-title {
  font-family: var(--font-title, "Bebas Neue");
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  color: #fff;
  position: relative;
  padding-bottom: .4rem;
}

.pk-model-title::after {
  content: "";
  width: 42px;
  height: 2px;
  background: #dd9933;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* INFOS */
.pk-model-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  color: #ddd;
  font-size: .95rem;
}

.pk-model-info span {
  color: #dd9933;
  font-weight: 600;
}

/* CTA */
.pk-model-contact {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1.1rem;
  background: #dd9933;
  color: #000;
  border-radius: .5rem;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: background .2s ease;
}

.pk-model-contact:hover {
  background: #f3ae44;
}

.pk-model-contact .pk-icon {
  width: 20px;
  height: 20px;
  color: #000;
}

/* GRID AUTO-FIT */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 44px;
}

/* MOBILE */
@media (max-width: 600px) {
  .pk-model-card {
    padding: 1.4rem;
  }

  .pk-model-title {
    font-size: 1.6rem;
  }
}

section#shooting-section {
  padding-block: 4rem 2rem;
  background: #101010;
  margin-bottom: 44px;
}

/* Mode contact sheet (Portfolio v2) */
.pk-portfolio-grid--contact {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1.5rem 0;
}

@media (max-width: 1200px) {
  .pk-portfolio-grid--contact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .pk-portfolio-grid--contact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .pk-portfolio-grid--contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


.pk-portfolio-grid--contact .pk-portfolio-item a {
  display: block;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.25rem;
  background: rgba(0,0,0,0.6);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
}

.pk-portfolio-grid--contact .pk-portfolio-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.pk-portfolio-grid--contact .pk-portfolio-item a:hover,
.pk-portfolio-grid--contact .pk-portfolio-item a:focus-visible {
  border-color: var(--color-accent, #dd9933);
  box-shadow: 0 0 0 1px rgba(221,153,51,0.7);
  transform: translateY(-2px);
}

Option : petit numéro en coin (si tu veux plus tard)
.pk-portfolio-grid--contact .pk-portfolio-item {
  counter-increment: pk-shot;
  position: relative;
}

  content: counter(pk-shot);
  position: absolute;
  top: 4px;
  left: 6px;
  font-size: 0.7rem;
  opacity: 0.7;
}

 #shooting-page .lead-p a,
  #shooting-page .pk-contact-link {
    color: #dd9933;
    text-decoration-color: #dd9933;
  }

  #shooting-page .lead-p a:hover,
  #shooting-page .pk-contact-link:hover {
    color: #f1b766;
    text-decoration-color: #f1b766;
  }

/* ===== shooting.html: fix H1 overflow on mobile ===== */
@media (max-width: 520px) {

  #page-shooting .container {
    padding-inline: 16px; /* WHY: évite le texte collé au bord */
  }

  #page-shooting .page-title {
    font-size: clamp(2.2rem, 10.5vw, 3.6rem); /* WHY: s’adapte au viewport */
    line-height: 0.95;                         /* WHY: stack compact */
    max-width: 100%;
    overflow-wrap: anywhere;                   /* WHY: force wrap si besoin */
    word-break: break-word;                    /* WHY: fallback */
    hyphens: auto;                             /* WHY: césure propre */
  }

  /* au cas où un style global force les spans en inline-block */
  #page-shooting .page-title span {
    display: inline;
  }
}
/* ===== shooting.html: H1 wraps correctly on mobile ===== */
@media (max-width: 520px) {

  #page-shooting .container{
    padding-inline: 16px; /* WHY: breathing room */
  }

  #page-shooting h1.page-title{
    display: block;                          /* WHY: allow normal text wrapping */
    text-align: center;
    font-size: clamp(2.2rem, 10.5vw, 3.6rem);/* WHY: responsive size */
    line-height: 0.95;
    max-width: 100%;
    overflow-wrap: anywhere;                 /* WHY: prevent overflow */
    word-break: break-word;                  /* WHY: fallback */
    hyphens: auto;
    margin: 0 0 28px;
  }

  #page-shooting h1.page-title .orange{
    display: inline;                         /* WHY: avoid inline-block flex leftovers */
  }
}

