/* ===========================
   MAGNETICMARK – style.css
   =========================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c1: #0a0015;
  --c2: #1a0035;
  --c3: #3d00a0;
  --c4: #6600ff;
  --c5: #0055ff;
  --c6: #00aaff;
  --accent: #7b2fff;
  --accent2: #0088ff;
  --gold: #ffd700;
  --white: #ffffff;
  --gray: #aaaacc;
  --text: #e0d8ff;
  --gradient: linear-gradient(135deg, var(--c4), var(--c5));
  --gradient-bg: linear-gradient(180deg, var(--c1) 0%, var(--c2) 50%, #000820 100%);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --nav-h: 80px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--c1);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition);
}
#navbar.scrolled {
  background: rgba(10, 0, 21, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(123, 47, 255, 0.2);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 68px; width: auto; filter: brightness(1.1); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.lang-toggle {
  background: none;
  border: 1px solid rgba(123,47,255,0.5);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.lang-toggle:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% 20%;
  filter: saturate(1.2);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,0,21,0.3) 0%,
    rgba(10,0,21,0.5) 40%,
    rgba(10,0,21,0.85) 80%,
    var(--c1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--nav-h) 2rem 6rem;
  max-width: 900px;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c6);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 140px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-mark {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-logo-wrap {
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: center;
}
.hero-logo-img {
  width: clamp(280px, 60vw, 680px);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(123,47,255,0.5));
}
.hero-sub {
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(123,47,255,0.4);
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gradient);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--transition);
  box-shadow: 0 0 30px rgba(102,0,255,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(102,0,255,0.6);
}
.btn-secondary {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid rgba(123,47,255,0.6);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--transition);
}
.btn-secondary:hover {
  background: rgba(123,47,255,0.2);
  border-color: var(--accent);
}
.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTIONS COMMON ===== */
section {
  padding: 100px 0;
  position: relative;
}
#bio { background: var(--gradient-bg); }
#music { background: linear-gradient(180deg, #000820 0%, var(--c1) 100%); }
#video { background: var(--c1); }
#events { background: linear-gradient(180deg, var(--c1) 0%, #000820 100%); }
#gallery { background: #000820; }
#contact { background: var(--c2); }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gradient);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: 3rem;
}

/* ===== BIO ===== */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.bio-image {
  position: relative;
}
.bio-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  filter: brightness(0.95);
}
.bio-image-accent {
  position: absolute;
  top: -12px; left: -12px;
  right: 12px; bottom: 12px;
  border: 2px solid rgba(123,47,255,0.4);
  border-radius: 4px;
  z-index: -1;
}
.bio-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.bio-long {
  color: rgba(224,216,255,0.75);
  margin-bottom: 1.2rem;
  font-size: 15px;
}
.bio-achievements {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.achievement {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.ach-icon { font-size: 18px; }
.bio-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.genre-tag {
  padding: 5px 14px;
  border: 1px solid rgba(123,47,255,0.5);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--c6);
  background: rgba(123,47,255,0.1);
}

/* ===== MUSIC ===== */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.track-card {
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  transition: transform var(--transition);
}
.track-card:hover { transform: translateY(-6px); }
.track-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.track-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,0,21,0.95) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
}
.track-card:hover .track-overlay { opacity: 1; }
.track-info-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 12px;
  background: linear-gradient(to top, rgba(10,0,21,0.9) 0%, transparent 100%);
}
.track-title {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.track-date {
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 0.08em;
}
.track-platforms {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.track-platforms a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.track-platforms a:hover { background: var(--accent); }
.track-platforms svg { width: 14px; height: 14px; fill: white; }
.music-platforms {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(123,47,255,0.2);
}
.music-platforms p {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.5rem;
}
.platform-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.platform-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: all var(--transition);
}
.platform-link svg { width: 18px; height: 18px; }
.platform-link:hover { color: #fff; border-color: rgba(123,47,255,0.6); background: rgba(123,47,255,0.15); }
.platform-link.spotify:hover { border-color: #1DB954; color: #1DB954; }
.platform-link.youtube:hover { border-color: #FF0000; color: #FF0000; }
.platform-link.soundcloud:hover { border-color: #FF5500; color: #FF5500; }
.platform-link.beatport:hover { border-color: #01FF95; color: #01FF95; }

/* ===== VIDEO ===== */
.video-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 4px;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.video-label {
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.08em;
}
.video-wrapper-sm {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 4px;
}
.video-wrapper-sm iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.sc-embed-wrap {
  margin-top: 1rem;
}
.sc-embed-wrap iframe {
  border-radius: 4px;
  display: block;
}
.video-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.video-thumb {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(123,47,255,0.25);
  transition: border-color var(--transition);
}
.video-thumb:hover { border-color: var(--accent); }
.video-thumb-inner {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-thumb-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(123,47,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
}
.sc-inner {
  background: #FF5500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-thumb span {
  display: block;
  padding: 12px 16px 4px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.video-thumb small {
  display: block;
  padding: 0 16px 12px;
  font-size: 11px;
  color: var(--gray);
}

/* ===== EVENTS ===== */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.event-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(123,47,255,0.15);
  transition: background var(--transition);
}
.event-item:hover { background: rgba(123,47,255,0.05); }
.event-date {
  text-align: center;
}
.event-day {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.event-month {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.event-year {
  font-size: 11px;
  color: var(--gray);
}
.event-info h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.event-location {
  font-size: 15px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
.event-location::before {
  content: '📍';
  font-size: 12px;
}
.event-link {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(123,47,255,0.5);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c6);
  transition: all var(--transition);
  white-space: nowrap;
}
.event-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.events-empty {
  text-align: center;
  padding: 4rem;
  color: var(--gray);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery-item {
  overflow: hidden;
  aspect-ratio: 3/4;
  border-radius: 4px;
  background: rgba(123,47,255,0.1);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: brightness(0.85) saturate(0.9);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.1);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(123,47,255,0.2);
}
.contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-value {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}
a.contact-value:hover { color: var(--c6); }
.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
}
.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(123,47,255,0.4);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.social-link svg { width: 20px; height: 20px; }
.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.contact-image {
  position: relative;
}
.contact-image img {
  width: 100%;
  border-radius: 4px;
  filter: brightness(0.9);
}
.contact-image::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 6px;
  background: var(--gradient);
  z-index: -1;
  opacity: 0.5;
}

/* ===== FOOTER ===== */
footer {
  background: var(--c1);
  border-top: 1px solid rgba(123,47,255,0.2);
  padding: 3rem 2rem;
  text-align: center;
}
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer-logo { height: 36px; width: auto; opacity: 0.8; }
.footer-copy { font-size: 12px; color: var(--gray); }
.footer-booking a { font-size: 12px; color: rgba(123,47,255,0.7); transition: color var(--transition); }
.footer-booking a:hover { color: var(--accent); }

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: rgba(10,0,21,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 24px; }
  .bio-grid { grid-template-columns: 1fr; gap: 3rem; }
  .video-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .event-item { grid-template-columns: 80px 1fr; }
  .event-link { display: none; }
  .hero-stats { gap: 1.5rem; }
  .stat-divider { height: 30px; }
  section { padding: 70px 0; }
}

@media (max-width: 480px) {
  .tracks-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ===== PERFORMANCE ===== */
img {
  content-visibility: auto;
}
.hero-img {
  will-change: transform;
}
.track-card img {
  will-change: auto;
}

/* ===== RESPONSYWNOŚĆ POPRAWKI ===== */
@media (max-width: 900px) {
  .bio-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .video-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-image { display: none; }
  .tracks-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
}

@media (max-width: 600px) {
  :root { --nav-h: 60px; }
  .hero-stats { gap: 1rem; }
  .stat-num { font-size: 28px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 260px; text-align: center; }
  .tracks-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .event-item { grid-template-columns: 70px 1fr; gap: 1rem; }
  .event-day { font-size: 30px; }
  .event-info h3 { font-size: 16px; }
  .section-title { font-size: 28px; }
  .platform-links { gap: 0.5rem; }
  .platform-link { padding: 8px 12px; font-size: 11px; }
  .bio-text h2 { font-size: 28px; }
  section { padding: 60px 0; }
  .container { padding: 0 1.25rem; }
  .video-grid { gap: 1rem; }
  .social-links { gap: 0.6rem; }
  .social-link { width: 38px; height: 38px; }
}

@media (max-width: 380px) {
  .tracks-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 48px; }
}

/* ===== TRACK CARD CLICK ===== */
.track-card:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===== BEATPORT + SC ICON FIX ===== */
.platform-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
/* Beatport zielony, SoundCloud pomarańczowy */
.platform-link.beatport { color: rgba(255,255,255,0.75); }
.platform-link.beatport:hover { border-color: #01FF95; color: #01FF95; }
.platform-link.soundcloud { color: rgba(255,255,255,0.75); }
.platform-link.soundcloud:hover { border-color: #FF5500; color: #FF5500; }

/* ===== GALLERY HOVER POPUP ===== */
.gallery-item {
  position: relative;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: border-color 0.3s ease;
  pointer-events: none;
}
.gallery-item:hover::after {
  border-color: var(--accent);
}
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(102,0,255,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  border-radius: 4px;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

/* ===== PAST EVENTS ===== */
.event-past {
  opacity: 0.45;
}
.event-past .event-day,
.event-past .event-info h3 {
  color: var(--gray);
}
.event-past .event-month {
  color: var(--gray);
}

/* ===== PLATFORM ICON SIZING ===== */
.platform-link.soundcloud svg {
  width: 20px;
  height: 16px;
}
.platform-link.beatport svg {
  width: 14px;
  height: 14px;
}

/* ===== LAZY LOADING PLACEHOLDER ===== */
.gallery-item img {
  background: rgba(123,47,255,0.08);
  transition: opacity 0.4s ease, transform 0.5s ease, filter 0.3s ease;
  opacity: 0;
}
.gallery-item img.loaded {
  opacity: 1;
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.1);
}

/* ===== CONTACT REBUILT ===== */
.contact-intro {
  font-size: 16px;
  color: rgba(224,216,255,0.7);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.contact-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--gradient);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 2.5rem;
  transition: all var(--transition);
  box-shadow: 0 0 30px rgba(102,0,255,0.3);
  word-break: break-all;
}
.contact-email-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(102,0,255,0.5);
}
.contact-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
}

/* ===== LIGHTBOX ===== */
#lightbox {
  display: none;
}
#lightbox.open {
  display: flex !important;
}

/* ===== GALLERY OVERLAY ICON FIX ===== */
.gallery-overlay-icon svg {
  width: 24px;
  height: 24px;
}
.gallery-item {
  cursor: pointer;
}

/* ===== GALLERY IMG OPACITY FIX ===== */
.gallery-item img {
  opacity: 1 !important;
}

/* ===== BIO IMAGE BORDER FIX ===== */
.bio-image-bordered {
  position: relative;
}
.bio-image-bordered img {
  border: 2px solid rgba(123,47,255,0.5);
  box-shadow: 0 0 40px rgba(123,47,255,0.2);
}
.bio-image-bordered .bio-image-accent {
  border-color: rgba(123,47,255,0.3);
}

/* ===== PLATFORM LINKS ICON SIZES ===== */
.platform-link.soundcloud svg {
  width: 18px;
  height: 21px;
  flex-shrink: 0;
}
.platform-link.beatport svg {
  width: 20px;
  height: 18px;
  flex-shrink: 0;
}
.platform-link.spotify svg,
.platform-link.youtube svg,
.platform-link.apple svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ===== SOCIAL LINKS SMALL ICONS ===== */
.social-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 0 20px rgba(102,0,255,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 500;
}
#backToTop.visible {
  opacity: 1;
  transform: translateY(0);
}
#backToTop:hover {
  box-shadow: 0 0 35px rgba(102,0,255,0.7);
  transform: translateY(-3px);
}

/* ===== MOBILE MENU FIX ===== */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    background: rgba(5, 0, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
    padding: 2rem;
  }
  .nav-links a {
    font-size: 20px;
    letter-spacing: 0.15em;
  }
  .logo-img {
    height: 52px;
  }
}

/* ===== GALLERY THUMBNAIL LAZY ===== */
.gallery-item img {
  transition: opacity 0.4s ease, transform 0.5s ease, filter 0.3s ease;
  image-rendering: auto;
}

/* ===== SC ICON SIZE FIX ===== */
.platform-link.soundcloud svg {
  width: 40px;
  height: 18px;
  flex-shrink: 0;
}
.social-link[aria-label="Shazam"] svg {
  width: 20px;
  height: 20px;
}

/* ===== INTRO OVERLAY ===== */
#introOverlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: #050008;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  overflow: hidden;
}
#introOverlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.intro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.intro-logo {
  width: clamp(240px, 50vw, 500px);
  height: auto;
  animation: introPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(123,47,255,0.6));
}
@keyframes introPulse {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(123,47,255,0.4)); }
  50% { filter: drop-shadow(0 0 60px rgba(102,0,255,0.9)); }
}
.intro-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(123,47,255,0.2);
  animation: pulseRing 2s ease-out infinite;
  pointer-events: none;
}
.intro-pulse::before,
.intro-pulse::after {
  content: '';
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  border: 1px solid rgba(123,47,255,0.1);
  animation: pulseRing 2s ease-out infinite 0.4s;
}
.intro-pulse::after {
  inset: -80px;
  animation-delay: 0.8s;
}
@keyframes pulseRing {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
#enterBtn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 48px;
  background: transparent;
  border: 2px solid rgba(123,47,255,0.8);
  border-radius: 4px;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3em;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
#enterBtn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
#enterBtn:hover {
  border-color: transparent;
  box-shadow: 0 0 40px rgba(102,0,255,0.5);
  transform: translateY(-2px);
}
#enterBtn:hover::before {
  opacity: 1;
}
.intro-sub {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ===== BODY LOCKED WHEN OVERLAY VISIBLE ===== */
body.locked {
  overflow: hidden;
}

/* ===== INTRO BALLS ===== */
.intro-balls {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.iball {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  animation: floatBall linear infinite;
}
/* Kolory i rozmiary */
.iball-1  { width:18px;height:18px;background:#6600ff;left:8%;top:15%;animation-duration:7s;animation-delay:0s; }
.iball-2  { width:10px;height:10px;background:#0055ff;left:18%;top:70%;animation-duration:9s;animation-delay:1s; }
.iball-3  { width:24px;height:24px;background:#7b2fff;left:28%;top:40%;animation-duration:6s;animation-delay:2s; }
.iball-4  { width:8px;height:8px;background:#00aaff;left:38%;top:85%;animation-duration:11s;animation-delay:0.5s; }
.iball-5  { width:16px;height:16px;background:#6600ff;left:50%;top:20%;animation-duration:8s;animation-delay:1.5s; }
.iball-6  { width:12px;height:12px;background:#0055ff;left:60%;top:60%;animation-duration:10s;animation-delay:3s; }
.iball-7  { width:20px;height:20px;background:#7b2fff;left:70%;top:30%;animation-duration:7.5s;animation-delay:0.8s; }
.iball-8  { width:6px;height:6px;background:#00aaff;left:80%;top:75%;animation-duration:9.5s;animation-delay:2.5s; }
.iball-9  { width:14px;height:14px;background:#6600ff;left:88%;top:10%;animation-duration:6.5s;animation-delay:1.2s; }
.iball-10 { width:22px;height:22px;background:#0055ff;left:5%;top:50%;animation-duration:12s;animation-delay:0.3s; }
.iball-11 { width:9px;height:9px;background:#7b2fff;left:45%;top:90%;animation-duration:8.5s;animation-delay:2s; }
.iball-12 { width:16px;height:16px;background:#00aaff;left:92%;top:45%;animation-duration:10.5s;animation-delay:1.8s; }

@keyframes floatBall {
  0%   { transform: translateY(0px) scale(1); opacity: 0.15; }
  25%  { opacity: 0.3; }
  50%  { transform: translateY(-40px) scale(1.1); opacity: 0.2; }
  75%  { opacity: 0.25; }
  100% { transform: translateY(0px) scale(1); opacity: 0.15; }
}

/* ===== INTRO RINGS ===== */
.intro-rings {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}
.intro-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(123,47,255,0.25);
  transform: translate(-50%, -50%);
  top: 0; left: 0;
  animation: ringPulse 3s ease-out infinite;
}
.ring-1 { width: 300px; height: 300px; animation-delay: 0s; }
.ring-2 { width: 450px; height: 450px; animation-delay: 0.8s; }
.ring-3 { width: 600px; height: 600px; animation-delay: 1.6s; }

@keyframes ringPulse {
  0%   { transform: translate(-50%,-50%) scale(0.85); opacity: 0.6; }
  100% { transform: translate(-50%,-50%) scale(1.15); opacity: 0; }
}

/* ===== WELCOME TEXT ===== */
.intro-welcome {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #6600ff, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  animation: fadeInUp 1s ease 0.3s both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.intro-logo {
  animation: fadeInUp 1s ease both;
}
#enterBtn {
  animation: fadeInUp 1s ease 0.6s both;
}

/* ===== AUDIO CONTROLLER ===== */
#audioCtrl {
  position: fixed;
  bottom: 5rem;
  left: 1.5rem;
  z-index: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10,0,21,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(123,47,255,0.3);
  border-radius: 30px;
  padding: 8px 16px 8px 12px;
  transition: opacity 0.3s ease;
}
#audioCtrl:hover { opacity: 1 !important; }
#muteBtn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0;
  transition: color 0.3s;
}
#muteBtn:hover { color: var(--accent); }
#volumeSlider {
  -webkit-appearance: none;
  width: 70px;
  height: 3px;
  background: rgba(123,47,255,0.4);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
#volumeSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
}
#volumeSlider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
}

/* ===== MOBILE MENU FIX - SCROLL LOCK ===== */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0; right: 0;
    height: 100dvh;
    background: rgba(5,0,15,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 998;
    padding: var(--nav-h) 2rem 2rem;
    display: none;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 22px;
    letter-spacing: 0.12em;
  }
  /* Intro rings na mobile - pokazuj wszystkie */
  .ring-1 { width: 180px; height: 180px; }
  .ring-2 { width: 280px; height: 280px; }
  .ring-3 { width: 380px; height: 380px; }
  .iball { opacity: 0.25 !important; display: block !important; }
}

/* ===== HAMBURGER X ANIMATION ===== */
.hamburger span {
  transition: transform 0.3s ease, opacity 0.3s ease;
}



/* ===== GALLERY BLUR LOADING ===== */
.gallery-item img {
  opacity: 1 !important;
  will-change: filter;
}
.gallery-item img.loaded {
  filter: none !important;
  transform: none !important;
}

/* ===== GALLERY - zapobiegaj ponownemu ładowaniu ===== */
.gallery-item {
  contain: layout style;
}
.gallery-item img {
  content-visibility: auto;
  contain-intrinsic-size: 300px 400px;
}

/* ===== MOBILE MENU - navbar zawsze na wierzchu ===== */
@media (max-width: 768px) {
  #navbar {
    z-index: 1000;
  }
  .nav-links {
    z-index: 999;
    padding-top: calc(var(--nav-h) + 2rem);
  }
  /* Hamburger zawsze widoczny nad menu */
  .hamburger {
    z-index: 1001;
    position: relative;
  }
  .lang-toggle {
    z-index: 1001;
    position: relative;
  }
}

/* ===== AUDIO CONTROLLER – DESKTOP (przy back to top) ===== */
#audioCtrl {
  position: fixed;
  bottom: 2rem;
  left: 1.5rem;
  z-index: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10,0,21,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(123,47,255,0.3);
  border-radius: 30px;
  padding: 8px 16px 8px 12px;
  transition: opacity 0.3s ease;
}
#audioCtrl:hover { opacity: 1 !important; }

/* ===== AUDIO CONTROLLER – MOBILE (w headerze między logo a menu) ===== */
@media (max-width: 768px) {
  #audioCtrl {
    position: static;
    background: transparent;
    backdrop-filter: none;
    border: none;
    padding: 0;
    gap: 6px;
    display: none; /* pokazuje się po enterSite() */
  }
  #audioCtrl.mobile-visible {
    display: flex !important;
  }
  #volumeSlider {
    width: 60px;
  }
  #muteBtn svg {
    width: 16px;
    height: 16px;
  }
}

/* ===== NAV AUDIO CTRL POZYCJA ===== */
/* Desktop - audioCtrl jest fixed bottom left (style inline w HTML) */
/* Na desktop ukryj go z navbara i pokaż jako fixed */
@media (min-width: 769px) {
  #audioCtrl {
    position: fixed;
    bottom: 2rem;
    left: 1.5rem;
    top: auto;
    transform: none;
  }
}

/* Mobile - audioCtrl w navbarze między logo a menu */
@media (max-width: 768px) {
  #audioCtrl {
    position: static !important;
    transform: none !important;
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    padding: 0 !important;
    gap: 6px;
    flex: 1;
    justify-content: center;
    margin: 0 8px;
  }
  #volumeSlider {
    width: 70px;
    height: 3px;
  }
  #muteBtn svg {
    width: 16px;
    height: 16px;
  }
  /* Nav container layout na mobile */
  .nav-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0;
  }
}

/* ===== AUDIO CTRL W NAV-RIGHT ===== */
#audioCtrl {
  display: none;
  align-items: center;
  gap: 8px;
  /* Desktop: inline w nav-right */
}
#audioCtrl.visible {
  display: flex !important;
}
/* Desktop - brak fixed, siedzi w nav */
@media (min-width: 769px) {
  #audioCtrl {
    position: static;
    background: none;
    border: none;
    backdrop-filter: none;
    padding: 0;
    border-radius: 0;
  }
  #volumeSlider {
    width: 70px;
  }
}
/* Mobile - też w nav, bez tła */
@media (max-width: 768px) {
  #audioCtrl {
    position: static !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    backdrop-filter: none !important;
  }
  #volumeSlider {
    width: 55px;
  }
}

/* ===== GALLERY BLUR VIA CSS CLASSES ===== */
.gallery-item img.img-loading {
  filter: blur(8px);
  transform: scale(1.03);
  transition: filter 0.5s ease, transform 0.5s ease;
}
.gallery-item img.img-loaded {
  filter: none;
  transform: none;
  transition: filter 0.5s ease, transform 0.5s ease;
}

/* ===== MENU SCROLL FIX ===== */
body.menu-open {
  position: fixed;
  left: 0;
  right: 0;
  overflow: hidden;
}

/* ===== AUDIO CTRL - ZAWSZE W NAV-RIGHT ===== */
#audioCtrl {
  display: flex !important;
  align-items: center;
  gap: 8px;
  position: static;
  background: none;
  border: none;
  backdrop-filter: none;
  padding: 0;
  border-radius: 0;
}
#volumeSlider {
  width: 70px;
  height: 3px;
  -webkit-appearance: none;
  background: rgba(123,47,255,0.4);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
#volumeSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
}
#volumeSlider::-moz-range-thumb {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
}
#muteBtn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0;
  transition: color 0.3s;
}
#muteBtn:hover { color: var(--accent); }

/* Na mobile schowaj suwak, zostaw tylko ikonę */
@media (max-width: 768px) {
  #audioCtrl {
    gap: 4px;
  }
  #volumeSlider {
    width: 50px;
  }
}

/* ===== GALLERY BLUR KLASY ===== */
.gallery-item img.img-loading {
  filter: blur(8px) !important;
  transform: scale(1.03) !important;
  transition: filter 0.6s ease, transform 0.6s ease !important;
}
.gallery-item img.img-loaded {
  filter: none !important;
  transform: none !important;
  transition: filter 0.6s ease, transform 0.6s ease !important;
}
/* Bez IntersectionObserver - zdjęcia nie resetują przy scrollu */
.gallery-item img {
  opacity: 1 !important;
}

/* ===== TRĄBKA POPUP ===== */
.stat-num:not([data-target]) {
  display: inline-block;
  transform-origin: center;
}

/* ===== GALERIA - zapobiegaj reload przy scrollu ===== */
#gallery {
  /* contain: none - pozwól przeglądarce pamiętać zawartość */
  contain: layout;
}
.gallery-item img {
  /* Nie używaj content-visibility auto - to powoduje reload */
  content-visibility: visible !important;
  contain-intrinsic-size: none !important;
  /* Wymuś GPU layer - zdjęcie zostaje w pamięci */
  will-change: auto;
  backface-visibility: hidden;
}

/* ===== LICZNIKI - ukryj domyślną wartość przed enterSite ===== */
.stat-num[data-target] {
  /* Domyślnie pokazuj 0 żeby nie było widać max wartości */
}

/* ===== PRESS SECTION ===== */
#press {
  background: linear-gradient(180deg, #000820 0%, var(--c2) 100%);
  padding: 100px 0;
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.press-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(123,47,255,0.2);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.press-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.press-card:hover {
  border-color: rgba(123,47,255,0.5);
  background: rgba(123,47,255,0.06);
}
.press-card:hover::before {
  opacity: 1;
}
.press-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: rgba(123,47,255,0.2);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  width: fit-content;
}
.press-date {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.08em;
}
.press-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}
.press-excerpt {
  font-size: 14px;
  color: rgba(224,216,255,0.65);
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.press-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  transition: color 0.3s ease, gap 0.3s ease;
  margin-top: auto;
}
.press-link:hover {
  color: var(--c6);
  gap: 12px;
}

@media (max-width: 768px) {
  .press-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    display: grid !important;
  }
  #press {
    padding: 60px 0;
    display: block !important;
  }
  .press-card {
    display: flex !important;
    padding: 1.5rem;
  }
  .press-excerpt {
    -webkit-line-clamp: 2;
  }
}

/* ===== HERO IMAGE MOBILE POSITION ===== */
@media (max-width: 768px) {
  .hero-img {
    object-position: 49.2% 30%;
  }
}
