/* =============== BASE MENU (filet de sécurité) =============== */

#header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: #000;
}

#topnav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}

#topnav li {
  display: inline-block;
  margin-left: 12px;
}

#topnav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
}

/* Animation fade-up (PK 2025) */
.pk-fade-up {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(2px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out,
    filter 0.8s ease-out;
}

/* Quand l’élément devient visible */
.pk-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Fade-only animation (pour éléments ayant déjà un transform) */
.pk-fade-opacity {
  opacity: 0;
  filter: blur(3px);
  transition:
    opacity 0.7s ease-out,
    filter 0.7s ease-out;
}

.pk-fade-opacity.is-visible {
  opacity: 1;
  filter: blur(0);
}


/* =============== PAGE PHOTOGRAPHE NAMUR =============== */

body.page-photographe-namur {
  background: #000;
  color: #fff;
}

/* Bloc titre */
.section-title-photographe-namur {
  padding: 40px 0;
  background: #202020;
}

.section-title-photographe-namur .title-desc {
  text-align: center;
}

/* H1 principal */
.page-title {
  font-size: 68px;
  margin: 48px auto 4px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 0 2px #000;
}

/* Sous-titre */
.section-title-photographe-namur h3 {
  text-align: center;
  margin-top: 8px;
  font-size: 22px;
  font-weight: 400;
  color: #ccc;
  letter-spacing: 0.03rem;
}

/* Responsive titres */
@media (max-width: 540px) {
  .page-title {
    font-size: 34px !important;
    line-height: 1.15 !important;
    margin: 12px auto;
  }

  .section-title-photographe-namur h3 {
    font-size: 18px;
  }
}

@media (max-width: 380px) {
  .page-title {
    font-size: 28px !important;
  }
}


/* Section principale coupée en deux : gauche orange, droite fond photo */
.pk-namur-layout {
  padding: 20px 0 80px 0;
  position: relative;
}

/* Namur : split orange + BG nuit */
.page-photographe-namur .pk-namur-layout {
  background:
    linear-gradient(to right, #dd9933 0 50%, transparent 50% 100%),
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url(/images/background-images/photographie-namur-bg.avif) center right/50% no-repeat fixed;
}

/* Immobilier : split orange + BG immo */
.page-photographe-immobilier .pk-namur-layout {
  background:
    linear-gradient(to right, #dd9933 0 50%, transparent 50% 100%),
    url(/images/background-images/photographie-immobiliere-bg.avif) center center/cover no-repeat fixed;
}

/* Portrait : split orange + BG portrait */
.page-photographe-portrait .pk-namur-layout {
  background:
    linear-gradient(to right, #dd9933 0 50%, transparent 50% 100%),
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url(/images/background-images/photographie-portrait-bg.avif) top center/cover no-repeat fixed;
}


/* plus besoin de ::before, il pourrait assombrir l’orange */
.pk-namur-layout::before {
  content: none;
}

/* le contenu reste au-dessus */
.pk-namur-layout .container {
  position: relative;
  z-index: 1;
}

/* Sur mobile (colonnes empilées), on revient à un fond homogène */
@media (max-width: 900px) {
  .pk-namur-layout {
    background-image: url(/images/background-images/stratup-bg.avif);
    background-position: center center;
    background-size: cover;
  }
}


/* Conteneur générique (hors Bootstrap) */

.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

/* Grille 2 colonnes */

/* Grille 2 colonnes – flex, ~600px chacune */
/* Grille 2 colonnes – largeur plus proche de l’original (~320–400px) */
.pk-namur-inner {
  position: relative;
  display: flex;
  justify-content: space-between;     /* occupe bien la moitié gauche/droite */
  align-items: flex-start;
  gap: 40px;
  margin: 20px auto 0;
  max-width: 1100px;                  /* limite la largeur totale des deux colonnes */
  flex-wrap: wrap;
}

.pk-namur-col {
  flex: 0 1 520px;                    /* colonne plus étroite qu’avant (600) */
  max-width: 520px;
  min-width: 0;
}

@media (max-width: 900px) {
  .pk-namur-inner {
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
  }

  .pk-namur-col {
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* Pastille portrait centrée */

.pk-namur-portrait {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid #dd9933;
  box-shadow: 0 0 0 3px #ffffff, 0 22px 40px rgba(0,0,0,0.6);
  z-index: 5;
}

.pk-namur-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .pk-namur-portrait {
    width: 130px;
    height: 130px;
  }
}

/* Colonne texte – bloc orange */

.pk-namur-col-text {
  background: #dd9933;
  padding: 32px 28px;
  border-radius: 6px;
  color: #000;
  line-height: 1.6;
  font-size: 18px;
  box-shadow: 0 0 18px rgba(0,0,0,0.45);
}

.pk-namur-col-text h3 {
  margin-top: 0;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 0 6px #000;
}

.pk-namur-col-text p {
  margin-bottom: 16px;
}

/* Colonne droite : image + texte */

.pk-namur-col-media .col-img-bg {
  text-align: center;
}

.pk-namur-col-media img.vince {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16 / 9;        /* force le 16/9 */
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin: 0 auto 24px;
  box-shadow: 0 0 18px rgba(0,0,0,0.45);
}
.pk-namur-col-media p {
  text-align: left;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Texte centré dans une colonne étroite */
.centerline {
  max-width: 480px;
  margin: 0 auto 16px;
}

/* Grille contact (remplace col-md-3) */

.pk-contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

.pk-contact-item {
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  color: #fff;
}

.pk-contact-item h3 {
  margin: 8px 0 4px;
}

.pk-contact-item .pk-icon {
  width: 38px;
  height: 38px;
  fill: #dd9933;
  margin-bottom: 8px;
}

/* Copyright */

.pk-copyright-inner {
  text-align: center;
  padding: 24px 0;
  color: #aaa;
  font-size: 14px;
}

/* Petites utilitaires */

.footerz {
  margin: 4px 0;
  color: #ccc;
}

.orange {
  color: #dd9933 !important;
}

/* Reset des reliques Bootstrap dans le contenu services */

.row,
.col-md-12,
.col-md-6,
.col-md-3 {
  all: unset;
}

/* On garde .navbar-nav pour le header mais on le rend flex de base ici */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* =============== PAGES IMMOBILIER / LISTES COMMUNES =============== */


/* Bloc photo + inset (utilisé ailleurs) */

.pk-photo-wrap {
  position: relative;
  display: inline-block;
}

.pk-photo-wrap .photo-main {
  display: block;
  max-width: 100%;
  border-radius: 0;
  box-shadow: 0 0 30px rgba(0,0,0,0.8);
}

.pk-photo-wrap .photo-inset {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 240px;
  border-radius: 0;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  border: 4px solid #fff;
}

@media (max-width: 767px) {
  .pk-photo-wrap .photo-inset {
    width: 120px;
    bottom: -15px;
    right: -15px;
  }
}

/* Listes “immo” */

p.immo {
  margin-left: 44px;
  font-size: inherit;
  font-weight: 600;
  text-align: left;
}

ul.immo {
  list-style: none;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  margin-left: 38px;
  padding: 12px;
}

.immo li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #eaeaea;
  font-size: 14px;
  background: transparent !important;
  text-align: left;
}

.immo li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #dd9933;
  border-radius: 2px;
  box-shadow: 0 0 3px rgba(0,0,0,0.6);
}

/* Titre bloc orange */
.pk-namur-heading {
  font-size: 28px;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 0 6px #000;
}

/* Petit carré noir devant le titre */
.pk-square-main {
  font-size: 14px;
  color: #000;
  margin-right: 8px;
  text-shadow: none;
}

/* Carrés orange dans les titres de contact + copyright */
.pk-square-orange {
  font-size: 16px;
  margin-right: 8px;
}

/* Variante plus petite (copyright / e-mail) */
.pk-square-small {
  font-size: 12px;
}

/* ========== Photo Stack Portrait (2025) ========== */

.pk-photo-stack {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 88px auto;
}

/* Photo principale : carré, responsive */
.pk-photo-stack .photo-main {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

/* Petite photo en bas à droite */
.pk-photo-stack .photo-inset {
  position: absolute;
  width: 42%;
  aspect-ratio: 1/1;
  bottom: -16%;
  right: -6%;
  object-fit: cover;
  border-radius: 6px;

  border: 4px solid #fff;
  box-shadow: 0 0 25px rgba(0,0,0,0.7);
}

/* Responsive */
@media (max-width: 600px) {
  .pk-photo-stack .photo-inset {
    width: 50%;
    bottom: -20%;
    right: -4%;
  }
}

/* =============================== */
/*   Pixel Komando – FAQ Section   */
/* =============================== */

.pk-faq-section {
  margin-top: 4rem;
  padding: 2.5rem 0;
  border-top: 1px solid #333;
}

.pk-faq-section .pk-section-title {
  margin-bottom: 2rem;
  text-align: left;
}

/* FAQ item */
.pk-faq-item {
  margin-bottom: 1.8rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid #2a2a2a;
  animation: fadeUp 0.4s ease both;
}

.pk-faq-item:last-child {
  border-bottom: none;
}

/* Question */
.pk-faq-item h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #dd9933;
  margin: 0 0 0.5rem;
}

/* Answer */
.pk-faq-item p {
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0;
  max-width: 720px;
}

/* Small fade-up animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile adjustments */
@media (max-width: 540px) {
  .pk-faq-item h3 {
    font-size: 1.25rem;
  }
  .pk-faq-item p {
    font-size: 1rem;
  }
}
/* === Page Photographe Artistique ===================================== */

.pk-page-service-artistique .section {
  padding-block: var(--space-10);
}

/* HERO artistique (on suppose que tes classes pk-hero existent déjà) */

.section-hero-artistique .pk-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.pk-hero--artistique .pk-hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.pk-hero--artistique .pk-hero-media__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
}

/* Option Ken Burns douce – si tu veux la garder, sinon tu peux enlever */
.pk-hero--kenburns .pk-hero-media__img {
  animation: pk-kenburns-slow 18s ease-in-out infinite alternate;
}

@keyframes pk-kenburns-slow {
  0%   { transform: scale(1.02) translate3d(0, 0, 0); }
  100% { transform: scale(1.08) translate3d(8px, -8px, 0); }
}

.pk-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(0,0,0,0.3), rgba(0,0,0,0.92));
}

.pk-hero-inner {
  position: relative;
  z-index: 2;
}

.pk-hero-content {
  max-width: 640px;
}

.pk-hero-title {
  font-size: 5.4rem; /* ton standard H1 */
  line-height: 1.05;
  margin-bottom: var(--space-4);
}

.pk-hero-tagline {
  font-size: 1.1rem;
  max-width: 36rem;
  color: var(--color-text-muted, #d0d0d0);
  margin-bottom: var(--space-6);
}

.pk-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top:34px;
}

/* Intro minimaliste */

.section-intro-artistique__grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.3fr);
  gap: var(--space-8);
  align-items: flex-start;
}

section.section.section-intro-artistique
 {
    background: #101010;
}

.section-intro-artistique h2 {
  font-size: 2.2rem;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
}

.section-intro-artistique p {
  margin-bottom: var(--space-3);
}

.section-intro-artistique__meta {
  display: grid;
  gap: var(--space-3);
}

.pk-meta-block {
    padding: var(--space-3);
    border-radius: var(--radius-lg, 14px);
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #303030;
    margin: 34px 0 34px 0;
}

.pk-meta-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.2rem;
}

.pk-meta-value {
  font-size: 0.95rem;
}

/* Styles artistiques – 3 cartes */

.pk-cards-artistiques {
  margin-top: var(--space-6);
}

.pk-card--artistique {
  padding: var(--space-5);
  border-radius: var(--radius-xl, 20px);
  background: #141414;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: 34px;
}

.pk-card--artistique h3 {
  font-size: 1.4rem;
  text-transform: uppercase;
  color:#dd9933;
}

.pk-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.pk-card-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.35rem;
}

.pk-card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent, #dd9933);
}

/* Mini galerie teaser */

.pk-grid--artistique-teaser {
  margin-top: var(--space-5);
}

.pk-thumb--artistique {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg, 16px);
  border: 1px solid rgba(255,255,255,0.08);
}

.pk-thumb--artistique img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 260ms ease-out;
}

.pk-thumb--artistique:hover img {
  transform: scale(1.07);
}

/* Projet "Reines du Monde" */

.section-project-reines {
  background: radial-gradient(circle at top left, #202020, #050505);
}

.section-project-reines__content {
    max-width: 1100px;
    padding-top: 34px;
    padding-bottom: 34px;
}

.section-project-reines h2 {
  font-size: 2rem;
  margin-bottom: var(--space-3);
  text-transform: uppercase;
}

.section-project-reines__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

/* CTA contact final */

.section-cta-contact-artistique__grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: var(--space-8);
  align-items: center;
}

.section-cta-contact-artistique__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.section-cta-contact-artistique__details {
  display: grid;
  gap: var(--space-3);
}

/* Responsive */

@media (max-width: 960px) {
  .pk-hero-title {
    font-size: 3.4rem;
  }

  .section-intro-artistique__grid,
  .section-cta-contact-artistique__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .pk-page-service-artistique .section {
    padding-block: var(--space-8);
  }

  .pk-card--artistique {
    padding: var(--space-4);
  }
}
/* === Masonry artistique ======================================= */

.pk-masonry {
  column-gap: var(--space-4, 1.5rem);
}

.pk-masonry--artistique {
  column-count: 3;
  margin-top:34px;
}

.pk-masonry-item {
  display: inline-block;
  width: 100%;
  margin: 0 0 var(--space-4, 1.5rem);
  break-inside: avoid;
  -moz-column-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.pk-masonry-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 220ms ease-out;
}

.pk-masonry-item:hover img {
  transform: scale(1.06);
}

@media (max-width: 960px) {
  .pk-masonry--artistique {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  .pk-masonry--artistique {
    column-count: 1;
  }
}

