/* ---------- Wariant C — dziki / brutalist / motion ---------- */

html { scroll-behavior: smooth; }
body { cursor: crosshair; }
::selection { background: #A855F7; color: #000; }

/* Nav link */
.nav-link-c {
  padding: 0.35rem 0.6rem;
  display: inline-block;
  transition: all 0.15s;
}
.nav-link-c:hover {
  background: #000;
  color: #A855F7;
}

/* Badge XV C */
.badge-xv-c {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.6rem;
  background: #A855F7;
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid #000;
}

/* Floating "15" */
.floating-15 {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 40;
  background: #FF006E;
  color: #FFF;
  padding: 1rem 1.25rem;
  border: 3px solid #000;
  text-align: center;
  pointer-events: none;
  box-shadow: 6px 6px 0 #000;
  transform: rotate(-3deg);
}
.floating-15 .font-display {
  font-size: 3.5rem;
}

/* Tickery */
.ticker-c {
  overflow: hidden;
  white-space: nowrap;
}
.ticker-content-c {
  display: inline-flex;
  gap: 4rem;
  padding-right: 4rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: ticker 35s linear infinite;
}
.ticker-content-c--reverse {
  animation-direction: reverse;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Buttons C */
.btn-primary-c {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  background: #000;
  color: #A855F7;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid #000;
  transition: all 0.15s;
}
.btn-primary-c:hover {
  background: #A855F7;
  color: #000;
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 #000;
}
.btn-secondary-c {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  background: #FFF;
  color: #000;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid #000;
  transition: all 0.15s;
}
.btn-secondary-c:hover {
  background: #FF006E;
  color: #FFF;
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 #000;
}

/* Service cards — invert on hover */
.service-card-c {
  background: #FFF;
  transition: all 0.2s;
}
.service-card-c:hover {
  background: #000;
  color: #FFF;
}
.service-card-c:hover .text-pink { color: #FF006E !important; }

/* Case cards */
.case-card-c {
  display: block;
  background: #000;
  position: relative;
  transition: all 0.2s;
}
.case-card-c:hover {
  background: #A855F7;
  color: #000;
}
.case-card-c:hover h3 { color: #000 !important; }
.case-image-c {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  position: relative;
  filter: grayscale(0.5) contrast(1.1);
  transition: filter 0.3s;
}
.case-card-c:hover .case-image-c {
  filter: grayscale(0) contrast(1.2) saturate(1.2);
}
.case-overlay-c {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
}

/* Marquee 3 linie */
.marquee-c {
  overflow: hidden;
  white-space: nowrap;
}
.marquee-content-c {
  display: inline-flex;
  gap: 3rem;
  padding-right: 3rem;
  align-items: center;
}
.marquee-c--ltr .marquee-content-c {
  animation: marquee-ltr 30s linear infinite;
}
.marquee-c--rtl .marquee-content-c {
  animation: marquee-rtl 38s linear infinite;
}
@keyframes marquee-ltr {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes marquee-rtl {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.marquee-item-c {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
  padding: 0 0.5rem;
}
.marquee-item-c img {
  height: 36px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}
.marquee-item-c .marquee-name-c {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}
/* środkowa linia (ciemna): SVG fill jest ciemny — invert do białego */
.clients-marquee-c--invert .marquee-item-c img {
  filter: invert(1);
}
.clients-marquee-c--invert .marquee-item-c .marquee-name-c {
  color: #FFF;
}
/* dolna linia (fioletowa): zostawiamy ciemne SVG na jasnym tle */
.clients-marquee-c--dark .marquee-item-c img {
  filter: none;
}

/* Team photo */
.team-photo-c {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s;
}
.team-photo-c:hover {
  transform: scale(1.04) rotate(0deg) !important;
  filter: grayscale(0);
}

/* Form input C */
.form-input-c {
  width: 100%;
  padding: 0.7rem;
  background: #FFF;
  border: 2px solid #000;
  color: #000;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  transition: all 0.15s;
}
.form-input-c:focus {
  outline: none;
  background: #A855F7;
  border-color: #FF006E;
}
.form-input-c::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
textarea.form-input-c {
  resize: vertical;
}

/* Counter color */
.counter-c span {
  color: #FF006E;
}

/* Hover na linkach kontaktu — lekki glitch */
.contact-info-c a {
  transition: all 0.15s;
}
.contact-info-c a:hover {
  text-shadow: 2px 0 #A855F7, -2px 0 #FF006E;
}

/* H1 hero transition */
#start h1 {
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Hover na cells klientów - jest w marquee, więc bez tego */

/* Disable cursor: crosshair na inputach */
input, textarea, button, a { cursor: pointer; }
textarea, input[type="text"], input[type="email"] { cursor: text; }

/* ============ TEAM BANNER C ============ */
.team-banner-c {
  border-bottom: 2px solid #000;
  position: relative;
}
.team-banner-image {
  position: relative;
  height: 85vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  border-bottom: 2px solid #000;
  overflow: hidden;
}
.team-banner-overlay-c {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.85) 100%),
    linear-gradient(135deg, rgba(168,85,247,0.35), transparent 50%);
}

/* Portraits Grid C */
.portrait-card-c {
  background: #FFF;
  transition: all 0.2s;
  position: relative;
}
.portrait-card-c:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000;
  z-index: 2;
}
.portrait-photo-c {
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.3) contrast(1.05);
  transition: filter 0.3s;
}
.portrait-card-c:hover .portrait-photo-c {
  filter: grayscale(0) contrast(1.1) saturate(1.05);
}

/* Reportażowa galeria — masonry brutal */
.team-masonry-c {
  column-count: 1;
  column-gap: 0.75rem;
}
@media (min-width: 640px) { .team-masonry-c { column-count: 2; } }
@media (min-width: 1024px) { .team-masonry-c { column-count: 3; } }
@media (min-width: 1280px) { .team-masonry-c { column-count: 4; } }

.masonry-item-c {
  break-inside: avoid;
  margin: 0 0 0.75rem 0;
  position: relative;
  border: 2px solid #000;
  overflow: hidden;
  cursor: zoom-in;
  background: #000;
}
.masonry-item-c img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.masonry-item-c:nth-child(3n) { transform: rotate(-0.5deg); }
.masonry-item-c:nth-child(4n) { transform: rotate(0.5deg); }
.masonry-item-c:hover img {
  transform: scale(1.04);
  filter: saturate(1.1) contrast(1.05);
}
.masonry-item-c:hover {
  box-shadow: 6px 6px 0 #A855F7;
  z-index: 2;
}
.masonry-item-c figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 0.8rem;
  background: #A855F7;
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-top: 2px solid #000;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.masonry-item-c:hover figcaption { transform: translateY(0); }

/* Hero ticker — fiolet zamiast lime był w niektórych elementach: badge-xv-c */
.badge-xv-c { color: #fff; }
