/* =============================================
   SALON VERA — Hero sekcja (fancy edition)
   ============================================= */

/* ---- Pełnoekranowa sekcja ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f0f0f;
  padding-top: 82px; /* offset za fixed navbar (~82px) */
}

/* ---- Tło: gradient ---- */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, #1e180a 0%, #0f0f0f 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, #1a1208 0%, transparent 60%);
}

/* ---- Pattern: delikatna siatka diamentów ---- */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.055) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
}

/* ---- Pattern ukośny (nakładka) ---- */
.hero-pattern-diag {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 28px,
      rgba(201,169,110,0.025) 28px,
      rgba(201,169,110,0.025) 29px
    );
  pointer-events: none;
}

/* ---- Canvas cząsteczek ---- */
#heroParticles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ---- Overlay (gradient z lewej) ---- */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,15,15,0.15) 0%,
    rgba(15,15,15,0.05) 50%,
    rgba(15,15,15,0.0) 100%
  );
  z-index: 2;
}

/* ---- Wielki watermark VERA ---- */
.hero-watermark {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(18vw, 22vw, 26vw);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,169,110,0.07);
  letter-spacing: -0.03em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  white-space: nowrap;
}

/* ---- Złote orby ---- */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(201,169,110,0.1);
  top: -10%; right: 15%;
  animation: floatOrb 14s ease-in-out infinite;
}
.hero-orb-2 {
  width: 320px; height: 320px;
  background: rgba(160,120,64,0.07);
  bottom: 5%; left: 30%;
  animation: floatOrb 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 200px; height: 200px;
  background: rgba(201,169,110,0.08);
  top: 60%; right: 40%;
  animation: floatOrb 8s ease-in-out 3s infinite;
}

/* ---- Ozdobne narożniki ---- */
.hero-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 3;
  pointer-events: none;
}
.hero-corner::before,
.hero-corner::after {
  content: '';
  position: absolute;
  background: rgba(201,169,110,0.4);
  border-radius: 1px;
}
.hero-corner-tl { top: 2rem; left: 2rem; }
.hero-corner-tl::before { top: 0; left: 0; width: 100%; height: 1.5px; }
.hero-corner-tl::after  { top: 0; left: 0; width: 1.5px; height: 100%; }

.hero-corner-tr { top: 2rem; right: 2rem; }
.hero-corner-tr::before { top: 0; right: 0; width: 100%; height: 1.5px; }
.hero-corner-tr::after  { top: 0; right: 0; width: 1.5px; height: 100%; }

.hero-corner-bl { bottom: 2rem; left: 2rem; }
.hero-corner-bl::before { bottom: 0; left: 0; width: 100%; height: 1.5px; }
.hero-corner-bl::after  { bottom: 0; left: 0; width: 1.5px; height: 100%; }

.hero-corner-br { bottom: 2rem; right: 2rem; }
.hero-corner-br::before { bottom: 0; right: 0; width: 100%; height: 1.5px; }
.hero-corner-br::after  { bottom: 0; right: 0; width: 1.5px; height: 100%; }

/* ---- Dekoracyjna złota linia pionowa ---- */
.hero-divider-line {
  position: absolute;
  top: 15%;
  bottom: 15%;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.3) 30%, rgba(201,169,110,0.3) 70%, transparent);
  z-index: 3;
  pointer-events: none;
  display: none; /* tylko na dużych ekranach */
}

/* ---- Grid hero: lewa (tekst) + prawa (obraz) ---- */
.hero-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- Lewa strona: treść ---- */
.hero-left { position: relative; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(4px);
}
.hero-badge span {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(201,169,110,0.8);
}

.hero h1 {
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 1.4rem;
  line-height: 1.08;
  font-family: 'Playfair Display', Georgia, serif;
}
.hero h1 .accent { color: var(--gold); }

/* Dekoracyjna kreska pod h1 */
.hero-title-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 1.4rem;
  border-radius: 2px;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 440px;
  margin-bottom: 2.25rem;
  line-height: 1.85;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* ---- Statystyki ---- */
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat {
  flex: 1;
  padding-right: 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:last-child { border-right: none; padding-right: 0; padding-left: 1.5rem; }
.hero-stat:first-child { padding-left: 0; }

.hero-stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.9rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* ---- Prawa strona: ramka z obrazem ---- */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
}

/* Główne zdjęcie */
.hero-img-main {
  width: 85%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(201,169,110,0.15);
}

/* Dekoracyjna ramka odsunięta */
.hero-img-frame-deco {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: -1.5rem;
  bottom: -1.5rem;
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 4px;
  z-index: 1;
}

/* Drugie mniejsze zdjęcie */
.hero-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  width: 52%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  z-index: 3;
  border: 4px solid #0f0f0f;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

/* Złota etykieta na zdjęciu */
.hero-img-badge {
  position: absolute;
  top: 1.5rem;
  right: 10%;
  z-index: 4;
  background: rgba(15,15,15,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  text-align: center;
}
.hero-img-badge-score {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.hero-img-badge-text {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  line-height: 1.3;
}

/* Złoty tag w rogu zdjęcia */
.hero-img-tag {
  position: absolute;
  bottom: 3rem;
  left: -1.5rem;
  z-index: 4;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 20px rgba(201,169,110,0.3);
}
.hero-img-tag-icon { font-size: 1.1rem; }
.hero-img-tag-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

/* Złote ozdoby wokół zdjęcia */
.hero-img-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
  animation: pulse-dot 3s ease-in-out infinite;
}
.hero-img-dot-1 { width: 8px; height: 8px; top: 30%; left: -4%; animation-delay: 0s; }
.hero-img-dot-2 { width: 5px; height: 5px; bottom: 25%; right: 5%; animation-delay: 1s; }
.hero-img-dot-3 { width: 10px; height: 10px; top: 10%; right: 20%; animation-delay: 2s; }

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%       { transform: scale(1.6); opacity: 1; }
}

/* ---- Scroll indicator ---- */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  z-index: 10;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.scroll-arrow {
  width: 32px; height: 32px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,169,110,0.6);
  font-size: 0.7rem;
}

/* ---- Responsywność — tablet ---- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-watermark { font-size: 35vw; opacity: 0.4; right: -5%; }
  .hero-left { max-width: 600px; }
}

@media (max-width: 768px) {
  .hero-corner  { display: none; }
  .hero-watermark { display: none; }
  .hero h1 { font-size: 2.4rem; }
  .hero-buttons { flex-direction: column; }
  .hero-stats { gap: 0; }
  .hero-stat { padding: 0 0.75rem; }
  .hero-stat:first-child { padding-left: 0; }
}

/* Mobile (mobile.css przejmuje od 500px w dół) */
