/* ============================
   CATEGORY GALLERIES (BOOK, ADVERTISING, PHOTOSHOOTS)
   ============================ */

.category-section {
  padding: 60px 0;
}

.category-section--light {
  background-color: #ffffff;
  color: #111827;
}

.category-section--dark {
  background-color: #000000;
  color: #f9fafb;
}

.category-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-align: left;
}

.category-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

@media (max-width: 767px) {
  .category-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: visible;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;            /* full viewport height for banner look */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-nav {
  position: absolute;
  top: 20px;       /* Distance from top */
  left: 30px;     /* Distance from right */
  display: flex;
  gap: 20px;       /* Space between links */
  z-index: 10;     /* Keep above background/overlay */
}    

.hero-nav {
  position: absolute;
  top: 20px;       /* Distance from top */
  right: 30px;     /* Distance from right */
  display: flex;
  gap: 20px;       /* Space between links */
  z-index: 10;     /* Keep above background/overlay */
}

.hero-link {
  color: white;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}
.hero-link-on {
  color:   #fbbf24;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.hero-link:hover {
  color: #fbbf24; /* Accent color (gold/yellow) */
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hand.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.socials-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/Socials/socialBack.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
}



.hero-subtitle {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-top: 16px;
}

.social-title {
  font-size: clamp(2rem, 6.5vw, 4.75rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-top: 16px;
}

.icon-stack {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Adds 20 pixels of space between each item */
}

.contact-footer {
  display: flex;
  align-items: center;
  justify-content: center;  /* centers the contact text block */
  position: relative;       /* so we can absolutely position the icons */
  overflow: visible !important;
}

.icon-footers {
  position: absolute;
  left: 0;                  /* push icons all the way left */
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: visible !important;
}

@media (max-width: 767px) {
  .icon-footers {
    left: 15px;  /* more padding on small screens */
    gap: 5px;
  }

}

.contact-text {
  text-align: center;
  flex: 1;                  /* allows it to stay centered */
}

/* Stats Section */
.stats-section {
  padding: 60px 0 40px 0; /* reduced bottom spacing */
  background-color: #fafafa;
}

.stats-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;       /* center container */
  text-align: center;        /* center text inside */
}

.stats-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.stats-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  color: #4b5563;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #6b7280;
}

.stat-value {
  font-size: 15px;
  font-weight: 400;
  color: #1f2937;
}

/* Portrait Images */
/* Portrait Images */
.portrait-images {
  display: flex;
  gap: 24px;
  width: 100%;
  justify-content: center;
  align-items: center;  /* ensure both portraits align by center */
}

.portrait-image {
  display: flex;
  align-items: center;   /* center vertical alignment */
  justify-content: center; /* center horizontal alignment */
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.portrait-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 550px;   /* prevents runaway huge images while keeping natural size */
  object-fit: contain; /* no cropping */
  border-radius: 8px;
}


/* Portfolio Navigation */
.portfolio-nav {
  padding: 24px 0;
  background-color: white;
}

/* Digitals Section */
.digitals-section {
  padding: 10px 0 60px; 
  background-color: #fafafa;
  margin-bottom: 40px;
  position: relative;
}

.digitals-section h2 {
  text-align: left;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-left: 0px; /* matches .container inner spacing for alignment */
}


.digitals-grid {
  display: none;
}

.digital-item img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
/* Digitals Top Row and Carousel */
.digitals-top-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 30px;
}

.digitals-top-row .digital-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.digitals-carousel {
  position: relative;
  width: 100%;
  padding: 20px 0; /* viewport will handle centering, arrows sit at edges */
}

.digitals-viewport {
  overflow: hidden;
  width: 100%;
  max-width: 1100px;   /* reasonable width for 5-across */
  margin: 0 auto;       /* center the images area */
}

.digitals-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.5s ease;
}

.digital-slide {
  flex: 0 0 20%;            /* 5 slides per full-width page on desktop */
  padding: 0 8px;           /* visual gap between images */
  box-sizing: border-box;
}

.digital-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .digital-slide {
    flex: 0 0 50%;   /* 2 per page on mobile */
    padding: 0 6px;
  }

  .digital-slide img {
    width: 100%;
    max-width: none;
  }
}

.digitals-prev,
.digitals-next {
  background: rgba(0,0,0,0.7);
  color: white;
  border: none;
  font-size: 26px;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 6px;
  z-index: 5;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.digitals-prev { left: 20px; }
.digitals-next { right: 20px; }


.nav-menu {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 6vw, 4rem);
  flex-wrap: wrap;
}

.nav-link {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #1f2937;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #6b7280;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #1f2937;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Contact Section */
.contact-section {
  padding: 48px 0;
  background-color: #000000;
  color: #ff9dea; /* pink text */
}

.contact-text {
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #ff9dea; /* match footer pink */
}

.contact-link {
  color: #ff9dea;
  text-decoration: underline;
  transition: text-decoration 0.3s ease;
}

.contact-link:hover {
  text-decoration: none;
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 16px;
  }

  .stats-content {
    flex-direction: row;
    align-items: flex-start;
  }

  .digitals-grid {
    /* grid layout already defined above; no extra flex overrides */
  }

  .stats-text {
    width: 33.333%;
  }

  .portrait-images {
    width: 66.667%;
    justify-content: flex-start;
  }

  .stats-grid {
    gap: 32px;
  }

  .digital-item {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  .stats-section {
    padding: 100px 0;
  }

  .digitals-section {
    padding: 100px 0;
  }

  .portfolio-nav {
    padding: 80px 0;
  }

  .contact-section {
    padding: 60px 0;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading and transition animations */
.hero-content {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.portrait-image {
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.portrait-image:nth-child(2) {
  animation-delay: 0.4s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 2rem auto;   /* auto centers it */
  max-width: 1200px;   /* optional: keeps grid from being too wide on huge screens */
  padding: 0 10px;     /* even spacing left and right */
}

@media (max-width: 767px) {
  .portfolio-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .digitals-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 images per row */
    gap: 10px; /* smaller gap for mobile */
  }
}

.portfolio-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.portfolio-item img:hover {
  transform: scale(1.05);
}

/* full screen window scroller */
.lightbox {
  display: none;              /* hidden by default */
  position: fixed;            /* anchor to viewport, not parent */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(78, 77, 77, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;              /* stays above everything else */
}

.lightbox-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-image {
  max-width: 90vw;   /* never wider than viewport */
  max-height: 80vh;  /* never taller than viewport */
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.lightbox-video-wrapper {
  max-width: 90vw;   /* similar to images */
  max-height: 80vh;  /* similar vertical constraint */
  width: 90vw;
  aspect-ratio: 16 / 9;
  display: none; /* hidden unless showing a video */
}

.lightbox-video {
  width: 100%;
  height: 100%;
  border: none;
}

.lightbox .close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 40px;
  color: rgb(245, 140, 235);
  cursor: pointer;
}

.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;                      /* vertical middle of screen */
  transform: translateY(-50%);   /* center exactly */
  font-size: 40px;
  color: rgb(245, 140, 235);
  cursor: pointer;
  padding: 16px;
  user-select: none;
}

.lightbox .prev { left: 20px; }
.lightbox .next { right: 20px; }

.lightbox .prev { left: 10px; }
.lightbox .next { right: 10px; }

@media (max-width: 767px) {
  .lightbox-content {
    /* no extra constraints; image itself controls size */
  }

  .lightbox-image {
    max-width: 95vw;
    max-height: 70vh;  /* keep room for close button and arrows */
  }

  .lightbox-video-wrapper {
    max-width: 95vw;
    max-height: 70vh;
    width: 95vw;
  }

  .lightbox .prev,
  .lightbox .next {
    font-size: 28px;     /* smaller arrows */
    padding: 10px;
  }

  .lightbox .prev { left: 10px; }
  .lightbox .next { right: 10px; }

  .lightbox .close {
    top: 10px;
    right: 15px;
    font-size: 32px;     /* smaller close button */
  }
}


/* SHOWS CAROUSEL — EXACT 3 IMAGES PER PAGE */
.shows-carousel {
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.shows-viewport {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.shows-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.5s ease;
}

.shows-slide {
  flex: 0 0 calc((100% - 32px) / 3); 
  margin-right: 16px;
  box-sizing: border-box;
}

.shows-slide img {
  width: 100%;
  object-fit: contain;
  border-radius: 8px;
}

/* Buttons */
.shows-prev,
.shows-next {
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 32px;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 6px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}

.shows-prev { left: -50px; }
.shows-next { right: -50px; }

/* MOBILE: show 2 images per page */
@media (max-width: 767px) {
  .shows-slide {
    flex: 0 0 calc((100% - 16px) / 2);
  }

  /* Bring arrows inward on mobile */
  .shows-prev {
    left: 5px !important;
  }

  .shows-next {
    right: 5px !important;
  }

  /* Slightly shrink carousel so arrows never fall off‑screen */
  .shows-viewport {
    max-width: 92% !important;
  }
}

/* ============================
   SHOWS SECTION — CLEAN REWRITE
   ============================ */

 .shows-section {
   background-color: #000;
   color: #fff;
   padding: 80px 0 60px 0;
 }
 .shows-section--light {
   background-color: #ffffff;
   color: #000000;
 }

.shows-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 48px;
  text-align: center;
  letter-spacing: 0.04em;
}

.shows-inner {
  max-width: 100%; /* match 3 images + 2 gaps */
  margin: 0 auto;
}

/* ---------- IMAGE GRID (3 images) ---------- */

.shows-grid-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* always 3 across on desktop */
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  width: 100%;
}

.show-item {
  width: 100%;
  background: #000000;   /* ensure no gray shows behind images */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  display: block;
}

.show-item.short-item {
  width: auto;              /* prevent forced horizontal stretch */
  background: #000000;
  border-radius: 8px;
  overflow: hidden;         /* ensure no bleed bars */
  box-shadow: none;         /* keep clean like original */
  display: flex;            /* shrink-wrap to short-wrapper */
  justify-content: center;
  align-items: center;
}

.show-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Ensure SHOWS section still images are fully visible (no cropping) */
.shows-section .shows-grid-images:not(.shorts-row) .show-item img {
  object-fit: contain;
}

/* Staggered heights */

.show-item:hover {
  transform: translateY(-14px) scale(1.035);
  box-shadow: 0 14px 38px rgba(252, 144, 236, 0.28);
}

/* ---------- MAIN VIDEO BELOW (exact width of 3 images) ---------- */

.show-item.video-item {
  width: 100%;
  max-width: 80%;
  margin: 40px auto 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.24);
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 60%; /* slightly taller than 16:9 for presence */
  margin: 0 auto;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

/* ---------- SHORTS ROW (3 shorts: 2 side-by-side + 1 centered) ---------- */

.shorts-row {
  margin-top: 50px;
  display: flex;
  justify-content: center;      /* center group */
  align-items: center;          /* vertically align */
  gap: 40px;
  flex-wrap: nowrap;            /* force 3-in-a-row */
  width: 100%;
}

.short-item {
  flex: 0 1 auto;
}

.short-wrapper {
  position: relative;
  width: 300px;
  aspect-ratio: 9 / 16;   /* TRUE vertical shorts */
  overflow: hidden;
  border-radius: 8px;
  background: #000;        /* remove gray bleed */
}

.short-wrapper iframe {
  position: absolute;
  top: 0;

  height: 100%;           /* full height */
  width: auto;            /* maintain 16:9 aspect ratio */
  left: 50%;              /* center horizontally */
  transform: translateX(-50%);

  min-width: 100%;        /* ensures no gray bar on sides */
  border: none;
  border-radius: 8px;
  background: #000;
}

/* ---------- RESPONSIVE FIXES ---------- */

@media (max-width: 1200px) {
  .shows-grid-images {
    gap: 20px;
  }
  .show-item {
    max-width: 300px;
  }
}

@media (max-width: 900px) {
  .shows-grid-images img {
    height: auto !important;
  }
  .short-wrapper {
    width: 260px;
  }
}

@media (max-width: 900px) {
  .shows-grid-images:not(.shorts-row) {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    justify-items: center;
  }

  .show-item {
    width: 100%;
    max-width: 360px;
    background: #000000;
    padding: 0;              /* remove padding to stop uneven corner rendering */
    border-radius: 10px;     /* consistent rounding */
    box-shadow: none;
    overflow: hidden;        /* ensures inner image inherits rounding */
  }

  .shows-grid-images .show-item img {
    width: 100%;
    height: auto !important;
    object-fit: contain;
    border-radius: 0;       /* image should not have its own radius */
  }

  .video-wrapper {
  }

  .shows-section .shorts-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;   /* tighter spacing */
    width: 100%;
  }

  .short-item {
    flex: 0 0 calc(50% - 6px);   /* allows two to fit cleanly */
    max-width: calc(50% - 6px);
    display: flex;
    justify-content: center;
  }

  .short-item:nth-child(3) {
    flex: 0 0 calc(50% - 6px);
    max-width: calc(50% - 6px);
    display: flex;
    justify-content: center;
  }

  .short-wrapper {
    width: 100%;
    max-width: 150px;   /* ensures two fit side-by-side */
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
  }
}

/* Back to top arrow */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  z-index: 10000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
  opacity: 0.7;
}

.back-to-top:hover {
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 28px;
    height: 28px;
    font-size: 18px;
  }
}

/* Advertising Carousel */
.advertising-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
}
.ad-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s ease;
}
/* Desktop: 6 per page */
.ad-slide img {
  width: 210px;      /* consistent width */
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

@media (max-width: 767px) {
  /* Mobile: 2 per page */
  .ad-slide img {
    width: 46vw;         /* two fit perfectly across */
    max-width: 180px;
  }
}
.ad-prev, .ad-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  color: white;
  font-size: 32px;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  z-index: 10;
}
.ad-prev { left: 10px; }
.ad-next { right: 10px; }
.about-stats {
  margin: 0 auto;          /* centers full block */
  align-items: center !important; 
  justify-content: center;
  width: 100%;
}
.about-hero {
  height: 300px !important;
}

.book-carousel {
  position: relative;
  width: 100%;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.book-viewport {
  overflow: hidden;
  max-width: 1200px;
}

.book-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;   /* <<< forces horizontal pages */
  transition: transform 0.6s ease;
}

.book-page {
  flex: 0 0 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 16px;
  padding: 10px;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .book-page {
    grid-template-columns: repeat(2, 1fr);  /* show 2 per row on mobile */
  }
}

.book-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.book-prev, .book-next {
  background: rgba(0,0,0,0.7);
  color: white;
  border: none;
  font-size: 32px;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 10;
}