/* Transparence du titre uniquement sur la page soline */
.soline-transparent {
  opacity: 0.5;
}
/* BACKGROUND IMAGE (pour soline.html) */
.background-image {
  /* Fixe l'image derrière le contenu pour effet 'parallax' simple :
     l'image reste en place, le titre et le contenu défilent dessus. */
  position: fixed;
  inset: 0;           /* top:0; right:0; bottom:0; left:0; */
  width: 100%;
  height: 100%;
  background-image: url('img/digital-camera-7555817_1280.webp'); /* ton image */
  background-size: cover;       /* couvre tout l'écran */
  background-position: center;  /* centrée */
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;                  /* derrière le contenu */
  pointer-events: none; /* so content above stays interactive */
  will-change: transform;
}

/* Fallback: on mobile, fixed backgrounds can be janky or unsupported; use absolute positioning there */
@media (max-width: 700px) {
  .background-image {
    position: absolute;
    background-attachment: scroll;
  }
}
/* BACKGROUND IMAGE (pour soline.html) */
/* (duplicate older rule removed) */
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: 'Dela Gothic One', sans-serif;
  color: white;
  overflow-x: hidden;
}

header {
  position: relative;
  width: 100%;
  height: 100vh;
}

/* VIDEO BACKGROUND */
.background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* NAVBAR — AVEC ALIGNEMENT SUR UNE SEULE LIGNE */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 22px 60px;

    /* GRILLE PAR DÉFAUT : GAUCHE | CENTRE | DROITE (mobile-first)
      Sur desktop nous basculerons en deux colonnes à gauche via media query */
    display: grid;
    grid-template-columns: auto 1fr auto;
  align-items: center;

  z-index: 120;
}

/* LOGO À GAUCHE */
.logo {
  justify-self: start;
}

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

/* MENU (desktop : à côté du logo) */
.menu {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
  justify-self: center; /* default: centered (mobile-first). Desktop override below */
}

/* Desktop: place logo and menu side-by-side on the left */
@media (min-width: 701px) {
  .navbar {
    grid-template-columns: auto auto 1fr; /* logo | menu | spacer/right */
    column-gap: 20px;
  }
  .menu {
    justify-self: start;
    gap: 20px; /* moins d'espace entre logo et liens */
    grid-column: 2;
  }
  .logo { grid-column: 1; }
  .nav-actions { grid-column: 3; }
}

/* STYLE DES LIENS */
.menu li a,
.portfolio-link {
  font-family: Arial, sans-serif;
  text-decoration: none;
  color: white;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 32px;
  left: 0;
  background: black;
  padding: 10px 0;
  width: 260px;
  display: none;
  flex-direction: column;
  border-radius: 6px;
  transform: translateY(10px);
  opacity: 0;
  transition: 0.25s ease;
}

.dropdown:hover .dropdown-menu {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.dropdown-menu li {
  list-style: none;
  padding: 15px 20px;
  border-bottom: 1px dashed rgba(255,255,255,0.25);
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  color: white;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.dropdown-menu a:hover {
  color: #e63930;
}

/* BLOC DROIT : BOUTON + ICONES SUR LA MÊME LIGNE */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-self: end;
}

/* BOUTON */
.contact-btn {
  padding: 4px 22px;
  border: 2px solid white;
  border-radius: 40px;
  text-decoration: none;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 15px;
  transition: 0.3s;
}

.contact-btn:hover {
  background: white;
  color: black;
}

/* ICONES CERCLES */
.circle-icon {
  width: 45px;
  height: 45px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.25s ease;
}

.circle-icon img {
  height: 20px;
  filter: invert(1);
}

.circle-icon:hover {
  border-color: white;
  transform: scale(1.1);
}

/* HERO CENTRÉ */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10; /* make sure hero content sits above the fixed background */
}

/* Style général du titre principal */
.hero-content h1 {
  font-size: 165px;
  line-height: 0.85;
  font-weight: 900;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  white-space: normal;
}

/* Transparence du titre uniquement sur la page soline */
.soline-transparent {
  opacity: 0.5;
}

.hero-content p {
  margin-top: 25px;
  font-size: 18px;
  font-family: Arial, sans-serif;
}

/* Make hero content responsive and readable on small screens */
.hero-content {
  padding: 0 20px;
  max-width: 1200px;
}

@media (max-width: 900px) {
  .hero-content h1 {
    line-height: 0.95;
  }
}

@media (max-width: 600px) {
  .hero-content {
    top: 48%;
  }
  .hero-content h1 {
    font-size: clamp(36px, 18vw, 90px);
    line-height: 1.02;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    white-space: normal;
  }
  .hero-content p {
    font-size: clamp(13px, 3.5vw, 16px);
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Make portfolio title slightly smaller than other pages */
.page-portfolio .hero-content h1 {
  font-size: clamp(42px, 12vw, 120px);
  line-height: 0.9;
}
@media (max-width: 600px) {
  .page-portfolio .hero-content h1 {
    font-size: clamp(34px, 16vw, 74px);
  }
}

/* BOUTON HAMBURGER (masqué desktop, visible mobile) */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid white;
  color: white;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
}

/* Règles responsives générales */
/* Tailles fluides pour logo et titres */
.logo img {
  height: clamp(34px, 7.5vw, 64px);
}

/* removed duplicate responsive h1 rule to restore previous layout */

.hero-content p {
  font-size: clamp(14px, 2.2vw, 18px);
}

/* Media queries pour écrans moyens */
@media (max-width: 900px) {
  .navbar {
    padding: 12px 36px;
  }
  .menu {
    gap: 20px;
  }
  .nav-actions {
    gap: 16px;
  }
}

/* Mobile : cacher le menu horizontal et afficher le hamburger */
@media (max-width: 700px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }


  /* Menu mobile : fullscreen drawer overlay */
  .menu {
    display: flex;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    height: 100vh !important;
    max-height: none !important;
    min-height: 100vh !important;
    background: rgba(0,0,0,0.95);
    padding-top: 120px;
    padding-left: 0;
    padding-right: 0;
    margin: 0 !important;
    flex-direction: column;
    gap: 18px;
    z-index: 9999;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(-6%);
    pointer-events: none;
    transition: opacity 320ms ease, transform 320ms ease;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu li a,
  .portfolio-link {
    font-size: 15px;
    padding: 8px 6px;
    width: 100%;
    text-align: center;
  }

  .nav-actions {
    gap: 10px;
  }

  .contact-btn {
    padding: 6px 12px;
  }

  /* Mobile-only: fade-in animation for menu items */
  .menu li {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 300ms ease, transform 300ms ease;
  }
  .menu.open li {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smaller portfolio title only on mobile */
@media (max-width: 700px) {
  .page-portfolio .hero-content h1 {
    font-size: clamp(32px, 12vw, 56px) !important;
    line-height: 1.02;
  }
}

/* Hamburger (3 bars) styling and animated cross */
  .menu-toggle {
    background: transparent;
    border: none;
    padding: 6px;
    position: relative;
    z-index: 130; /* ensure it's above the fullscreen menu */
  }
.hamburger {
  display: inline-block;
  width: 28px;
  height: 18px;
  position: relative;
}
.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: white;
  left: 0;
  border-radius: 2px;
  transition: transform 260ms ease, opacity 200ms ease;
}
.hamburger span:nth-child(1) { top: 0px; }
.hamburger span:nth-child(2) { top: 7.5px; }
.hamburger span:nth-child(3) { top: 15px; }

/* When menu-toggle has .open (JS toggles this), animate to X */
.menu-toggle.open .hamburger span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.menu-toggle.open .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}
.menu-toggle.open .hamburger span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Desktop: menu items visible by default */
.menu li {
  opacity: 1;
  transform: none;
}

/* ------------------------------- */
/* SECTION CHIFFRES */
/* ------------------------------- */

.stats-section {
  width: 100%;
  background: black;
  padding: 120px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 160px;
  text-align: center;
}

.stats-section h2 {
  font-size: 70px;
  font-family: 'Dela Gothic One', sans-serif;
  margin-bottom: 10px;
}

/* style for the animated stat numbers (monospace for stable width) */
.stat-number {
  font-size: 70px;
  font-family: 'Dela Gothic One', monospace;
  display: block;
  min-width: 3ch; /* reserve width for 2-digit numbers */
}

.stats-section p {
  font-family: Arial, sans-serif;
  font-size: 18px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 850px) {
  .stats-section {
    flex-direction: column;
  }
}

.page-photography .hero-content h1,
.page-photography .photo-hero { font-size: clamp(28px, 12vw, 48px); line-height: 1; padding: 0 12px; }

/* ------------------------------- */
/* SECTION HELLO */
/* ------------------------------- */

.hello-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding: 140px 80px;
  background: black;
}

.hello-image img {
  width: 430px;
  height: auto;
  border-radius: 240px;
  object-fit: cover;
}

.hello-text {
  max-width: 550px;
  font-family: Arial, sans-serif;
}

.hello-text h1 {
  font-size: 95px;
  font-family: 'Dela Gothic One', sans-serif;
  margin-bottom: 25px;
}

.hello-text p {
  font-size: 18px;
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 950px) {
  .hello-section {
    flex-direction: column;
    text-align: center;
  }

  .hello-text h1 {
    font-size: 70px;
  }

  .hello-image img {
    width: 340px;
  }
}

/* ---------------------------------- */
/* SECTION QUI SUIS-JE                 */
/* ---------------------------------- */
.about-section {
    background: black;
    width: 100%;
    padding: 140px 80px;
    text-align: center;
    color: white;
}

.about-title {
    font-family: 'Dela Gothic One', sans-serif;
    font-size: 80px;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.about-text {
    font-size: 18px;
    line-height: 1.7;
    max-width: 900px; /* Le texte reste centré mais pas la section */
    margin: 0 auto;
}

.about-text p {
    font-family: Arial, sans-serif;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 850px) {
  .about-title {
    font-size: 55px;
  }
  .about-text {
    font-size: 16px;
  }
}

@media (max-width: 550px) {
  .about-title {
    font-size: 42px;
    line-height: 1.2;
  }
}

/* ------------------------------- */
/* GRID PORTFOLIO (vignettes des sous-pages) */
/* ------------------------------- */
.portfolio-grid-section {
  background: #000;
  padding: 100px 0;
  color: white;
}
.portfolio-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: stretch;
}
.portfolio-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  text-decoration: none;
  color: white;
  height: 420px; /* more vertical, as requested */
  transition: transform 420ms cubic-bezier(.2,.9,.2,1), box-shadow 320ms ease;
  will-change: transform;
}
.portfolio-card:hover {
  transform: translateY(-8px) rotate(-0.3deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.portfolio-card .card-image {
  position: absolute;
  inset: 0;
}
.portfolio-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center center;
  transition: transform 720ms cubic-bezier(.2,.9,.2,1);
}
.portfolio-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.62) 60%);
  z-index: 1;
}
.portfolio-card h3 {
  position: absolute;
  left: 40px;
  bottom: 30px;
  z-index: 2;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 28px;
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(4px);
}
.portfolio-card:hover .card-image img {
  transform: scale(1.06) rotate(-0.4deg);
}

@media (max-width: 900px) {
  .portfolio-card { height: 360px; }
  .portfolio-card h3 { left: 24px; bottom: 22px; font-size: 24px; }
}

@media (max-width: 700px) {
  .portfolio-grid { gap: 22px; padding: 0 18px; }
  .portfolio-card { height: 240px; border-radius: 10px; }
  .portfolio-card h3 { left: 18px; bottom: 14px; font-size: 18px; padding: 8px 12px; }
}

/* ---------------------------------- */
/* PHOTOGRAPHY GALLERY (stacked sections)
   - large vertical sections under the nav
   - responsive grid with a few tile sizes for variety
*/
.photography-main {
  background: #000;
  color: #fff;
}
.photography-main .wrap { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
.intro { padding-top: 120px; padding-bottom: 30px; text-align: center; }
.page-title { font-size: 56px; margin-bottom: 8px; }
.lead { opacity: 0.85; font-family: Arial, sans-serif; }

.gallery { padding-bottom: 120px; }
.gallery-section { padding: 60px 0; border-top: 1px solid rgba(255,255,255,0.03); }
.gallery-title { font-size: 36px; margin: 0 0 18px 0; text-align: center; }

.gallery-grid {
  /* Masonry-like layout using CSS columns for a more natural vertical flow */
  column-count: 3;
  column-gap: 12px;
}
.gallery-grid .tile {
  width: 100%;
  display: block;
  margin: 0 0 12px;
  border-radius: 8px;
  break-inside: avoid;
  object-fit: cover;
  cursor: zoom-in;
  position: relative;
  overflow: hidden;
  transition: transform 300ms cubic-bezier(.2,.8,.2,1), box-shadow 300ms cubic-bezier(.2,.8,.2,1), opacity 320ms ease;
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.gallery-grid .tile--wide { width: 100%; }
.gallery-grid .tile--tall { width: 100%; }

/* Hover overlay + label on images (GPU-accelerated) */
.gallery-grid .tile::before,
.gallery-grid .tile::after {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  transition: opacity 260ms cubic-bezier(.2,.8,.2,1), transform 260ms cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.gallery-grid .tile::before {
  content: '';
  bottom: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.64) 72%);
  opacity: 0;
  transform: translate3d(0,6px,0);
}
.gallery-grid .tile::after {
  content: attr(alt);
  bottom: 12px;
  left: 12px;
  right: 12px;
  color: rgba(255,255,255,0.95);
  font-family: Arial, sans-serif;
  font-size: 14px;
  text-align: left;
  opacity: 0;
  transform: translate3d(0,6px,0);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gallery-grid .tile:hover::before,
.gallery-grid .tile:focus::before,
.gallery-grid .tile.loaded::before { opacity: 1; transform: translate3d(0,0,0); }
.gallery-grid .tile:hover::after,
.gallery-grid .tile:focus::after,
.gallery-grid .tile.loaded::after { opacity: 1; transform: translate3d(0,0,0); }

/* smoother hover: smaller lift and subtle zoom for fluid feel */
.gallery-grid .tile:hover { transform: translate3d(0,-5px,0) scale(1.03); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.gallery-grid .tile:focus { outline: 3px solid rgba(255,255,255,0.08); transform: translate3d(0,-4px,0) scale(1.02); }

/* Graphic Design poster card flip */
.poster-card {
  width: 100%;
  display: block;
  margin: 0 0 12px;
  perspective: 1200px;
  -webkit-perspective: 1200px;
}
.poster-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 420ms cubic-bezier(.2,.8,.2,1);
}
.poster-card:hover .poster-inner,
.poster-card.is-flipped .poster-inner,
.poster-card:focus-within .poster-inner {
  transform: rotateY(180deg);
}
.poster-front,
.poster-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
}
.poster-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.poster-back {
  background: linear-gradient(180deg, rgba(0,0,0,0.85), rgba(0,0,0,0.9));
  color: white;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.poster-back .info {
  text-align: left;
}
.poster-back h3 {
  margin: 0 0 8px 0;
  font-family: Arial, sans-serif;
  font-size: 18px;
}
.poster-back p {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  opacity: 0.9;
}

/* Ensure accessible focus ring for keyboard users */
.poster-card:focus { outline: 3px solid rgba(255,255,255,0.08); }

.gallery-desc { display: flex; gap: 28px; margin-top: 18px; font-family: Arial, sans-serif; }
.gallery-desc p { flex: 1; opacity: 0.9; }
.gallery-desc .muted { opacity: 0.6; font-size: 14px; }

/* Lightbox styles */
.lightbox { position: fixed; inset: 0; display: grid; place-items: center; background: rgba(0,0,0,0.92); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 240ms ease; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lb-inner { max-width: 92vw; max-height: 86vh; display:flex; flex-direction:column; align-items:center; }
.lb-inner img { max-width: 100%; max-height: 78vh; object-fit: contain; border-radius: 6px; }
.lb-caption { margin-top: 10px; color: rgba(255,255,255,0.88); font-family: Arial, sans-serif; }
.lb-close, .lb-prev, .lb-next { position: absolute; background: transparent; border: none; color: white; font-size: 36px; padding: 10px; cursor: pointer; }
.lb-close { top: 16px; right: 20px; font-size: 36px; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); }

/* Zoom clone used when animating a thumbnail into the lightbox */
.lb-zoom-clone {
  position: fixed;
  z-index: 10030;
  pointer-events: none;
  border-radius: 8px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  will-change: transform, opacity;
  transition: transform 700ms cubic-bezier(.22,.9,.25,1), opacity 420ms ease;
  transform-origin: top left;
}

/* Responsive adjustments */
@media (max-width: 1000px) {
  .gallery-grid { column-count: 2; }
}
@media (max-width: 600px) {
  .gallery-grid { column-count: 1; }
  .photo-heading { font-size: 36px; padding: 18px 20px; text-align: center; }
}


.page-photography { background: #000; }
.page-objectdesign { background: #000; }
.page-fashiondesign { background: #000; }
.page-contact { background: #000; }

/* Use a shorter hero header for photography but keep centered hero like other pages */
.page-photography header { height: 48vh; min-height: 220px; position: relative; }
.page-photography .navbar { position: absolute; top: 0; left: 0; width: 100%; padding: 18px 40px; z-index: 120; }
.photography-main { padding-top: 20px; }

/* Hero title sizing for photography (responsive, similar to other pages) */
.page-photography .hero-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; z-index: 10; }
.page-photography .hero-content h1,
.page-photography .photo-hero { font-size: clamp(42px, 12vw, 120px); line-height: 0.9; font-weight: 900; margin: 0; }

/* Mobile-specific tuning for the photography hero */
@media (max-width: 700px) {
  .page-photography .hero-content { top: 46%; }
  .page-photography .hero-content h1,
  .page-photography .photo-hero { font-size: clamp(28px, 10vw, 48px); line-height: 1; padding: 0 12px; }
}

@media (max-width: 480px) {
  .page-photography .hero-content h1,
  .page-photography .photo-hero {
    font-size: 32px !important;
    line-height: 1 !important;
    padding: 0 12px !important;
  }
  .photography-main { padding-top: 8px; }
}

@media (max-width: 360px) {
  .page-photography .hero-content h1,
  .page-photography .photo-hero { font-size: 28px !important; padding: 0 10px !important; }
  .photography-main { padding-top: 6px; }
}

/* Gallery spacing/margins for mobile only (no navbar changes) */
@media (max-width: 600px) {
  .photography-main { padding-left: 16px; padding-right: 16px; }
  .gallery-grid { column-count: 1; column-gap: 12px; }
}

/* ------------------------------- */
/* VIDEOGRAPHY: mirror photography hero rules so the page displays correctly */
/* ------------------------------- */
.page-videography { background: #000; }
.page-videography header { height: 48vh; min-height: 220px; position: relative; }
.page-videography .navbar { position: absolute; top: 0; left: 0; width: 100%; padding: 18px 40px; z-index: 120; }
.page-videography .hero-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; z-index: 10; }
.page-videography .hero-content h1,
.page-videography .photo-hero { font-size: clamp(42px, 12vw, 120px); line-height: 0.9; font-weight: 900; margin: 0; }

@media (max-width: 700px) {
  .page-videography .hero-content { top: 46%; }
  .page-videography .hero-content h1,
  .page-videography .photo-hero { font-size: clamp(28px, 10vw, 48px); line-height: 1; padding: 0 12px; }
}

@media (max-width: 480px) {
  .page-videography .hero-content h1,
  .page-videography .photo-hero {
    font-size: 32px !important;
    line-height: 1 !important;
    padding: 0 12px !important;
  }
  .videography-main { padding-top: 8px; }
}

/* PAGE GRAPHIC DESIGN: match videography/photography hero layout and dark background */
.page-graphicdesign { background: #000; }
.page-graphicdesign header { height: 48vh; min-height: 220px; position: relative; }
.page-graphicdesign .navbar { position: absolute; top: 0; left: 0; width: 100%; padding: 18px 40px; z-index: 120; }
.page-graphicdesign .hero-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; z-index: 10; }
.page-graphicdesign .hero-content h1,
.page-graphicdesign .photo-hero { font-size: clamp(42px, 12vw, 120px); line-height: 0.9; font-weight: 900; margin: 0; }

@media (max-width: 700px) {
  .page-graphicdesign .hero-content { top: 46%; }
  .page-graphicdesign .hero-content h1,
  .page-graphicdesign .photo-hero { font-size: clamp(28px, 10vw, 48px); line-height: 1; padding: 0 12px; }
}

@media (max-width: 480px) {
  .page-graphicdesign .hero-content h1,
  .page-graphicdesign .photo-hero {
    font-size: 32px !important;
    line-height: 1 !important;
    padding: 0 12px !important;
  }
  .graphicdesign-main { padding-top: 8px; }
}

@media (max-width: 360px) {
  .page-videography .hero-content h1,
  .page-videography .photo-hero { font-size: 28px !important; padding: 0 10px !important; }
  .videography-main { padding-top: 6px; }
  
  .page-graphicdesign .hero-content h1,
  .page-graphicdesign .photo-hero { font-size: 28px !important; padding: 0 10px !important; }
}

/* PAGE OBJECT DESIGN & FASHION DESIGN: match other portfolio pages */
.page-objectdesign header { height: 48vh; min-height: 220px; position: relative; }
.page-objectdesign .navbar { position: absolute; top: 0; left: 0; width: 100%; padding: 18px 40px; z-index: 120; }
.page-objectdesign .hero-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; z-index: 10; }
.page-objectdesign .hero-content h1,
.page-objectdesign .photo-hero { font-size: clamp(42px, 12vw, 120px); line-height: 0.9; font-weight: 900; margin: 0; }

.page-fashiondesign header { height: 48vh; min-height: 220px; position: relative; }
.page-fashiondesign .navbar { position: absolute; top: 0; left: 0; width: 100%; padding: 18px 40px; z-index: 120; }
.page-fashiondesign .hero-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; z-index: 10; }
.page-fashiondesign .hero-content h1,
.page-fashiondesign .photo-hero { font-size: clamp(42px, 12vw, 120px); line-height: 0.9; font-weight: 900; margin: 0; }

@media (max-width: 700px) {
  .page-objectdesign .hero-content { top: 46%; }
  .page-objectdesign .hero-content h1,
  .page-objectdesign .photo-hero { font-size: clamp(28px, 10vw, 48px); line-height: 1; padding: 0 12px; }
  
  .page-fashiondesign .hero-content { top: 46%; }
  .page-fashiondesign .hero-content h1,
  .page-fashiondesign .photo-hero { font-size: clamp(28px, 10vw, 48px); line-height: 1; padding: 0 12px; }
}

@media (max-width: 480px) {
  .page-objectdesign .hero-content h1,
  .page-objectdesign .photo-hero {
    font-size: 32px !important;
    line-height: 1 !important;
    padding: 0 12px !important;
  }
  
  .page-fashiondesign .hero-content h1,
  .page-fashiondesign .photo-hero {
    font-size: 32px !important;
    line-height: 1 !important;
    padding: 0 12px !important;
  }
}

@media (max-width: 360px) {
  .page-objectdesign .hero-content h1,
  .page-objectdesign .photo-hero { font-size: 28px !important; padding: 0 10px !important; }
  
  .page-fashiondesign .hero-content h1,
  .page-fashiondesign .photo-hero { font-size: 28px !important; padding: 0 10px !important; }
}


/* --------------------------------------------- */
/* SECTION POUDRE D’ÉCLAT (classes PE - isolées) */
/* --------------------------------------------- */

.pe-section {
  background: #000;
  padding: 100px 0;
  color: white;
  text-align: center;
}

.pe-title {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 90px;
  font-weight: 900;
  margin-bottom: 28px; /* reduced spacing under the main title */
}

.pe-video-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
  position: relative;
}

.pe-video-inner {
  /* Controls the visual size of the video container. Use aspect-ratio
     so the YouTube iframe fills the box responsively and keeps 16:9. */
  width: 100%;
  max-width: 1400px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.pe-video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 6px;
  outline: none;
}

/* Overlay audio toggle button */
.pe-unmute {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.48);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  padding: 8px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease;
  backdrop-filter: blur(4px);
}
.pe-unmute:focus { transform: translateY(-2px); outline: 2px solid rgba(255,255,255,0.14); }
.pe-unmute:active { transform: translateY(0); }

.pe-unmute .icon-muted,
.pe-unmute .icon-unmuted { width: 20px; height: 20px; fill: white; display: block; }
.pe-unmute .icon-muted { display: none; opacity: 0.0; transform: scale(.9); transition: opacity 200ms ease, transform 200ms ease; }
.pe-unmute.is-muted .icon-muted { display: block; opacity: 1; transform: scale(1); }
.pe-unmute.is-muted .icon-unmuted { display: none; opacity: 0; }
.pe-unmute .label { font-family: Arial, sans-serif; font-size: 13px; opacity: 0.92; }

/* small animation to emphasize the toggle when clicked */
.pe-unmute.pulse { animation: pe-pulse 420ms ease; }
@keyframes pe-pulse { 0% { transform: scale(1); } 50% { transform: scale(1.06); } 100% { transform: scale(1); } }

/* Accessibility helper */
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }


.pe-columns {
  display: flex;
  justify-content: center;
  gap: 40px; /* reduced column gap */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  font-family: Arial, sans-serif;
}

.pe-col {
  flex: 1;
  line-height: 1.6;
}

.pe-subtitle {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
  .pe-title {
    font-size: 60px;
  }
  .pe-columns {
    flex-direction: column;
    gap: 40px;
    text-align: left;
    padding: 0 30px;
  }
  .pe-video-inner { width: 95%; max-width: 1080px; }
}

@media (max-width: 600px) {
  .pe-title {
    font-size: 42px;
  }
  .pe-video-inner { width: 98%; max-width: 900px; }
}
/* Fond noir complet pour la section PE */
.pe-section {
  background: #000;          /* déjà présent, mais on force */
  padding: 80px 0 120px 0;   /* reduced top/bottom padding for a tighter layout */
  position: relative;
  z-index: 1;
}

/* Tighten subtitle spacing */
.pe-subtitle {
  margin-top: 8px;
  margin-bottom: 8px;
}

/* ------------------------------- */
/* COLLAGE CINÉTIQUE (affiches originales) */
/* ------------------------------- */
.collage-section {
  background: linear-gradient(180deg,#050507 0%, #08090b 100%);
  color: #fff;
  padding: 56px 18px 120px;
  display: flex;
  justify-content: center;
}
.collage {
  width: min(1200px, 96%);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: start;
}
.card {
  --rot: 0deg;
  opacity: 0;
  transform: translateY(14px) scale(.98);
  transition: opacity 420ms cubic-bezier(.2,.9,.2,1), transform 420ms cubic-bezier(.2,.9,.2,1), box-shadow 260ms ease;
  will-change: transform, opacity;
}
.frame {
  width: 100%;
  aspect-ratio: 2/3; /* uniform poster shape */
  background: #0b0c0e;
  overflow: hidden;
  border-radius: 8px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.03);
  position: relative;
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 420ms cubic-bezier(.2,.9,.2,1);
}
.card.show { opacity: 1; transform: rotate(var(--rot)) translateY(var(--ty,0px)); }
.card:hover { transform: rotate(var(--rot)) translateY(calc(var(--ty,0px) - 6px)) scale(1.02); box-shadow: 0 12px 28px rgba(0,0,0,0.45); }
.card:focus-within { outline: 3px solid rgba(255,255,255,0.06); }

/* hide captions under posters (we show info on the back instead) */
.caption { display: none !important; }

/* Overlay info (replaces 3D flip on desktop) */
.card-front { position: relative; z-index: 1; }
.card-back { position: absolute; inset: 0; display:flex; align-items:center; justify-content:center; background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.8)); color: #fff; padding: 14px; border-radius: 8px; opacity: 0; transform: translateY(8px); transition: opacity 320ms ease, transform 320ms ease; pointer-events: none; }
.card:hover .card-back, .card:focus-within .card-back, .card.flipped .card-back { opacity: 1; transform: translateY(0); pointer-events: auto; }
.card-back .info { text-align: center; }

/* Entry animation: staggered reveal will add .show on cards */
/* .card.show rule is defined above where needed */

/* Subtle parallax when moving cursor over the collage */
.collage[data-parallax="true"] .frame { transition: transform 300ms cubic-bezier(.2,.9,.2,1); }

/* Lightbox/spotlight */
.spotlight { position: fixed; inset: 0; display:grid; place-items:center; background: rgba(2,2,2,0.86); z-index: 300; opacity: 0; pointer-events: none; transition: opacity 240ms ease; }
.spotlight.open { opacity: 1; pointer-events: auto; }
.spotlight .inner { max-width: 92vw; max-height: 92vh; display:flex; flex-direction:row; align-items:stretch; gap:20px; padding:18px; box-sizing:border-box; }
.spotlight .spot-left { flex: 1 1 60%; display:flex; align-items:center; justify-content:center; }
.spotlight .spot-right { flex: 0 0 36%; max-width: 480px; display:flex; flex-direction:column; gap:18px; align-items:flex-start; justify-content:center; padding: 8px 6px; }
.spotlight img { width: 100%; height: auto; max-height: 82vh; object-fit: contain; border-radius:6px; box-shadow: 0 26px 80px rgba(0,0,0,0.8); }
.spotlight .title { color: #fff; font-family: 'Dela Gothic One', sans-serif; font-size: clamp(22px, 4.8vw, 42px); margin:0; font-weight:700; line-height:1.02; }
.spotlight .desc { color: rgba(255,255,255,0.92); font-family: Arial, sans-serif; font-size: clamp(14px, 2.4vw, 18px); line-height:1.6; margin:0; max-height: 78vh; overflow:auto; }
.spotlight .close { position: absolute; top: 18px; right: 18px; background: rgba(255,255,255,0.04); border: none; color: white; padding:8px 10px; border-radius:8px; }

body.no-scroll { overflow: hidden; }
.spotlight .close { position: absolute; top: 18px; right: 18px; background: rgba(255,255,255,0.04); border: none; color: white; padding:8px 10px; border-radius:8px; }

@media (max-width:740px) {
  .collage { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap:14px; }
  .frame { aspect-ratio: 3/4; }
  .spotlight .inner { flex-direction: column; padding: 12px; }
  .spotlight .spot-right { width: 100%; max-width: none; }
}

/* Poster stack (pile) styles for graphicdesign page */
.poster-stack { background: transparent; padding: 16px 0 80px; }
#poster-container { position: relative; margin: 20px auto; width: min(1100px, 96%); height: 620px; }
.affiche { position: absolute; width: 260px; height: 380px; left: 0; top: 0; opacity: 0; border-radius: 6px; box-shadow: 0 14px 40px rgba(0,0,0,0.35); transition: left 700ms ease, top 700ms ease, transform 700ms ease, box-shadow 220ms ease, opacity 300ms ease; cursor: pointer; object-fit: cover; }
.affiche:hover { transform: translateY(-8px) scale(1.02) rotate(0deg); z-index: 9999; box-shadow: 0 40px 80px rgba(0,0,0,0.5); }

/* stacked positions - will be applied dynamically via JS, but these rules help layering */
.affiche[data-layer] { z-index: var(--layer); }

@media (max-width: 900px) {
  #poster-container { height: 520px; }
  .affiche { width: 220px; height: 320px; }
}

@media (max-width: 600px) {
  /* mobile fallback: flow vertically */
  #poster-container { position: static; height: auto; }
  .affiche { position: relative; width: 84%; height: 320px; margin: 12px auto; left: auto; top: auto; transform: none; opacity: 1; object-fit: cover; }
}

.poster-stack {
  width: 100%;
  min-height: 48vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  position: relative;
  padding: 16px 0 80px;
  margin-top: 8px;
}

#poster-container {
  position: relative;
  width: min(1100px, 92%);
  max-width: 1100px;
  height: 64vh;
  margin: 0 auto;
}

.affiche {
  position: absolute;
  width: 260px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: transform 1000ms cubic-bezier(.22,.9,.25,1), left 1000ms cubic-bezier(.22,.9,.25,1), top 1000ms cubic-bezier(.22,.9,.25,1), opacity 420ms ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 0;
  will-change: transform, left, top;
}

/* Grid mode: posters arranged side-by-side with uniform size */
#poster-container.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  align-items: start;
  height: auto !important;
  padding: 8px 6px;
}
#poster-container.grid .affiche {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  z-index: auto !important;
  opacity: 1 !important;
  width: auto !important;
  max-width: 520px !important;
  height: 460px !important;
  margin: 12px auto !important;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45) !important;
  object-fit: contain !important;
  background: #000; /* letterbox background when aspect ratios differ */
  padding: 6px; /* small gutter so edges aren't flush */
  border-radius: 8px;
  display: block;
}

@media (max-width: 900px) {
  #poster-container.grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
  #poster-container.grid .affiche { height: 380px !important; max-width: 420px !important; }
}

@media (max-width: 600px) {
  #poster-container.grid { grid-template-columns: 1fr; padding: 10px 12px; }
  #poster-container.grid .affiche { height: 320px !important; max-width: 420px !important; }
}

/* YSL Gallery - 2 square images side by side, 1 wide below */
.ysl-gallery {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.ysl-row-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.ysl-row-bottom {
  display: flex;
  justify-content: center;
}

.ysl-square {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}

.ysl-wide {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}

@media (max-width: 700px) {
  .ysl-row-top {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ysl-gallery {
    padding: 0 16px;
  }
}

/* ------------------------------- */
/* PAGE CONTACT (ON DISCUTE) */
/* ------------------------------- */

/* Background image specifically for contact page */
.page-contact .background-image {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/building-8173603_1280.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
  pointer-events: none;
  will-change: transform;
}

/* Fallback on mobile */
@media (max-width: 700px) {
  .page-contact .background-image {
    position: absolute;
    background-attachment: scroll;
  }
}

.page-contact header { 
  height: 100vh; 
  position: relative; 
}

.page-contact .navbar { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  padding: 18px 40px; 
  z-index: 120; 
}

.page-contact .hero-content { 
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  text-align: center; 
  z-index: 10; 
}

.page-contact .hero-content h1,
.page-contact .soline-transparent { 
  font-size: clamp(42px, 12vw, 120px); 
  line-height: 0.9; 
  font-weight: 900; 
  margin: 0; 
}

.contact-main { 
  padding: 80px 20px; 
  max-width: 100%;
  width: 100%;
  margin: 0;
  background: #000;
  position: relative;
  z-index: 10;
}

.contact-section {
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
}

.contact-info-center {
  max-width: 600px;
  margin: 0 auto;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

.contact-method {
  width: 100%;
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 300ms ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.contact-method h3 {
  font-size: 16px;
  margin-bottom: 16px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.contact-method a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  transition: color 300ms ease;
}

.contact-method a:hover {
  color: #ccc;
}

@media (max-width: 700px) {
  .page-contact .hero-content { top: 46%; }
  .page-contact .hero-content h1,
  .page-contact .soline-transparent { font-size: clamp(28px, 10vw, 48px); line-height: 1; padding: 0 12px; }
  
  .contact-main {
    padding: 50px 20px;
  }
  
  .contact-methods {
    gap: 30px;
  }
  
  .contact-method {
    padding: 24px;
  }
  
  .contact-method a {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .page-contact .hero-content h1,
  .page-contact .soline-transparent {
    font-size: 32px !important;
    line-height: 1 !important;
    padding: 0 12px !important;
  }
  
  .contact-main {
    padding: 40px 16px;
  }
  
  .contact-method a {
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .page-contact .hero-content h1,
  .page-contact .soline-transparent { font-size: 28px !important; padding: 0 10px !important; }
}
/* PACA Gallery - 5 small images side by side, 1 large below */
.paca-gallery {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.paca-row-top {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 20px;
  align-items: stretch;
}

.paca-row-top.jo-row {
  grid-template-columns: repeat(4, 1fr);
}

.paca-row-bottom {
  display: flex;
  justify-content: center;
}

.paca-small {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.paca-small:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.55);
}

.paca-large {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}

/* Object Design Gallery - Specific styles for objetdesign.html */
.objet-gallery {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.objet-row-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
  align-items: start;
}

.objet-row-bottom {
  display: flex;
  justify-content: center;
}

.objet-small {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.objet-small:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.55);
}

.objet-large {
  width: 100%;
  max-width: 900px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}

/* Archi large image - full width to match the 3 small images above */
.archi-large {
  width: 100%;
  max-width: 1200px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}

/* Archi two columns layout */
.archi-two-cols {
  grid-template-columns: repeat(2, 1fr) !important;
}

.archi-medium {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.archi-medium:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.55);
}

/* Fashion Gallery - Grid layout with 2 columns */
.fashion-gallery {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.fashion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.fashion-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.fashion-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.55);
}

@media (max-width: 900px) {
  .paca-row-top {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  
  .paca-row-top.jo-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .fashion-grid {
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .paca-row-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .paca-row-top.jo-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .paca-gallery {
    padding: 0 16px;
  }
  
  .fashion-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .fashion-gallery {
    padding: 0 16px;
  }
}
