/* ========================================
   EDAL SERWIS OPON — STYLES
   Kolory: czarny, biały, złoty akcent (#AD722C)
   ======================================== */

:root {
  --black: #000000;
  --black-soft: #0b0c10;
  --black-muted: #151720;
  --white: #ffffff;
  --white-muted: #f0f0f0;
  --white-dim: #a0a0a0;
  --gold: #F6922C;
  --gold-light: #ff9f4a;
  --gold-dark: #d67a1f;
  --gray: #2a2a2a;
  --gray-light: #3a3a3a;
  
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Manrope', sans-serif;
  
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-accent {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-accent:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 10px;
}

/* SECTIONS */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header.light {
  color: var(--white);
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--white-dim);
  font-size: 1.1rem;
  margin-top: 12px;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

/* Desktop: wideo jako prostokat 9:16 po prawej */
.hero-video-box {
  display: none;
}

.hero-video {
  display: none;
}

/* Mobile: wideo jako tło */
.hero-bg-mobile {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000 url('assets/video/awaryjne-zamiast-video.png') center center / cover no-repeat;
  pointer-events: none;
}

.hero-video-mobile {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: transparent;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

/* Hero main layout */
.hero-main {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 500px;
}

/* Desktop: 2 kolumny - treść LEWA, wideo PRAWE */
@media (min-width: 1024px) {
  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 0 60px;
  }
  
  /* Ukryj mobile video, pokaz desktop */
  .hero-bg-mobile {
    display: none;
  }
  
  /* Treść po lewej */
  .hero-main {
    order: 1;
    flex: 1;
    max-width: 560px;
    justify-content: center;
    padding: 0;
  }
  
  .hero-left {
    align-items: center;
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-sub {
    text-align: left;
  }
  
  /* Wideo po prawej, 3:4 */
  .hero-video-box {
    display: block;
    order: 2;
    width: 520px;
    aspect-ratio: 3/4;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    z-index: 1;
    flex-shrink: 0;
  }
  
  .hero-video-box .hero-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-scroll {
    display: flex;
  }
}

/* Mobile: wideo jako tło */
@media (max-width: 1023px) {
  .hero-main {
    padding: 60px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero-copy {
    align-items: center;
  }

  .hero-sub {
    text-align: center;
  }
}

.hero-logo {
  width: 320px;
  margin: 0 0 24px 0;
}

.hero-badge {
  align-self: center;
  margin-left: 0;
  margin-bottom: 24px;
}

.hero h1 {
  margin-bottom: 20px;
}

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

.hero-copy {
  width: min(100%, 370px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 30px;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
  text-align: left;
  letter-spacing: 0.4px;
  line-height: 1.35;
}

.hero-sub-lead {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffb25f;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions .btn {
  min-width: 190px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white-dim);
  font-size: 0.85rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-video,
  .hero-video-mobile {
    animation: none !important;
  }
}

/* ========================================
   BOOKING CTA - NOWA WERSJA
   ======================================== */
.booking-cta {
  background:
    radial-gradient(circle at top, rgba(212,175,55,0.08), transparent 38%),
    var(--black-soft);
  padding: 96px 0;
}

.booking-cta-content {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.booking-cta-content--centered {
  max-width: 1120px;
  padding: 0;
}

.booking-cta-head {
  max-width: 760px;
  margin: 0 auto 46px;
}

.booking-cta-head .section-tag {
  margin-bottom: 18px;
}

.booking-cta-head h2 {
  margin-bottom: 14px;
}

.booking-cta-head .booking-subtitle {
  margin-bottom: 0;
}

.booking-cta-footer {
  max-width: 760px;
  margin: 0 auto;
}

.booking-cta-footer .booking-note {
  margin-top: 22px;
}

.booking-cta .section-tag {
  margin-bottom: 20px;
}

.booking-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 12px;
  color: var(--white);
}

.booking-subtitle {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.84);
  margin: 0 auto 52px;
  max-width: 720px;
  line-height: 1.75;
}

.booking-process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin: 0 auto 56px;
  max-width: 1040px;
}

.booking-process-card {
  position: relative;
  text-align: left;
  background: linear-gradient(180deg, rgba(22,22,22,0.96), rgba(11,11,11,0.98));
  border: 1.5px solid rgba(255,255,255,0.10);
  border-radius: 26px;
  padding: 30px 28px 28px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.24);
  min-height: 230px;
  overflow: hidden;
}

.booking-process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(246,146,44,0.38), rgba(255,255,255,0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.booking-process-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), rgba(246,146,44,0.28));
}

.booking-process-card--accent {
  background: linear-gradient(180deg, rgba(44,26,8,0.96), rgba(13,13,13,0.98));
  border-color: rgba(246,146,44,0.24);
}

.booking-process-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.booking-process-number {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  color: #111;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 14px 30px rgba(246,146,44,0.24);
}

.booking-process-label {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.76);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-process-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.28rem, 2vw, 1.55rem);
  line-height: 1.28;
  color: var(--white);
}

.booking-process-card p {
  margin: 0;
  color: rgba(255,255,255,0.84);
  line-height: 1.82;
  font-size: 1.02rem;
  max-width: 30ch;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.booking-actions--centered {
  justify-content: center;
}

.btn-book {
  padding: 20px 30px;
  font-size: 1.06rem;
  gap: 10px;
  width: 100%;
  max-width: 380px;
  justify-content: center;
  box-shadow: 0 18px 36px rgba(212,175,55,0.14);
}

.btn-book svg {
  flex-shrink: 0;
}

.booking-note {
  margin-top: 24px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile */
@media (max-width: 980px) {
  .booking-cta-content {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .booking-cta {
    padding: 64px 0;
  }

  .booking-cta-content {
    text-align: center;
  }

  .booking-cta-head {
    margin-bottom: 34px;
    padding: 0 8px;
  }

  .booking-process-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 34px;
  }

  .booking-process-card {
    min-height: auto;
    padding: 24px 20px 22px;
    border-radius: 22px;
  }

  .booking-process-card::before {
    border-radius: 22px;
  }

  .booking-process-top {
    gap: 12px;
    margin-bottom: 16px;
  }

  .booking-process-number {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    font-size: 1.04rem;
  }

  .booking-process-label {
    font-size: 0.78rem;
    padding: 0 12px;
  }

  .booking-process-card h3 {
    font-size: 1.1rem;
    margin: 0 0 10px;
  }

  .booking-process-card p {
    font-size: 0.98rem;
    max-width: none;
    line-height: 1.72;
  }

  .btn-book {
    padding: 18px 24px;
    font-size: 1rem;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .booking-cta {
    padding: 52px 0;
  }

  .booking-subtitle {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.7;
  }

  .booking-process-card {
    padding: 20px 16px;
  }

  .booking-process-top {
    align-items: center;
    flex-wrap: nowrap;
  }

  .booking-process-label {
    font-size: 0.74rem;
    letter-spacing: 0.06em;
  }

  .booking-process-number {
    width: 44px;
    height: 44px;
  }

  .booking-note {
    font-size: 0.88rem;
  }
}

.cal-placeholder-enhanced .cal-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.cal-placeholder-enhanced h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--white);
}

.cal-placeholder-enhanced p {
  color: var(--white-dim);
  margin-bottom: 20px;
}

.cal-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cal-placeholder-enhanced .btn-large {
  width: 100%;
  max-width: 280px;
  padding: 16px 24px;
  font-size: 1.1rem;
}

.cal-note {
  font-size: 0.85rem;
  color: var(--white-dim);
}

/* ========================================
   SERVICES
   ======================================== */
.services {
  background: var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--black-muted);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(173, 114, 44, 0.1);
  border-radius: var(--radius);
  color: var(--gold);
  margin-bottom: 24px;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--white-dim);
  font-size: 0.95rem;
}

/* ========================================
   WHY US
   ======================================== */
.why-us {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--black);
}

.why-us .section-tag {
  background: var(--black);
  color: var(--gold);
}

.why-us h2 {
  color: var(--black);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.why-item {
  text-align: center;
}

.why-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.why-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ========================================
   SEASONAL
   ======================================== */
.seasonal {
  background: var(--black-soft);
}

.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.seasonal-card {
  background: var(--black-muted);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.seasonal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.seasonal-summer::before { background: #ff9500; }
.seasonal-winter::before { background: #00a8ff; }
.seasonal-allseason::before { background: var(--gold); }

.seasonal-icon {
  margin-bottom: 20px;
  color: var(--gold);
}

.seasonal-card h3 {
  margin-bottom: 12px;
}

.seasonal-card p {
  color: var(--white-dim);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.seasonal-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--white-muted);
  font-size: 0.9rem;
}

.seasonal-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.seasonal-cta {
  text-align: center;
  margin-top: 50px;
}

.seasonal-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--white-muted);
}

/* ========================================
   WORKSHOP
   ======================================== */
.workshop {
  background: var(--black);
}

.workshop .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .workshop .container {
    grid-template-columns: 1fr;
  }
}

.workshop-content h2 {
  margin-bottom: 20px;
}

.workshop-content > p {
  color: var(--white-dim);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.workshop-features {
  display: grid;
  gap: 16px;
}

.workshop-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
}

/* HERO BANNER WITH OVERLAY */
.hero-banner {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 2;
}

.hero-banner-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-banner-logo {
  width: 200px;
  margin-bottom: 16px;
  animation: fadeInScale 1s ease;
}

.hero-banner-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.full-width-image {
  width: 100%;
  height: 50vh;
  min-height: 300px;
  overflow: hidden;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.full-width-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.workshop-gallery.single {
  display: block;
}

.workshop-gallery.single .workshop-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
}
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.workshop-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ========================================
   PARTNERS
   ======================================== */
.partners {
  background: var(--black-soft);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
}

.brand-item {
  background: var(--black-muted);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  min-height: 80px;
}

.brand-item span.brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--white-dim);
  text-transform: uppercase;
  opacity: 0.7;
  transition: var(--transition);
}

.brand-item:hover {
  border-color: var(--gold);
}

.brand-item:hover span.brand-text {
  opacity: 1;
  color: var(--gold);
}

.brand-item span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--white-dim);
  text-transform: uppercase;
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info h2 {
  margin-bottom: 12px;
}

.contact-info > p {
  color: var(--white-dim);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-distance {
  font-size: 0.95rem;
  color: var(--gold) !important;
  margin-bottom: 30px !important;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--black-muted);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-link:hover {
  background: var(--gray);
}

.contact-link svg {
  color: var(--gold);
}

.hours h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.hours ul li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray);
}

.hours ul li span:first-child {
  color: var(--white-dim);
}

.map-placeholder {
  background: var(--black-muted);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  min-height: 400px;
}

.map-placeholder svg {
  color: var(--gold);
}

.map-placeholder p {
  color: var(--white-dim);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--black-muted);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--white-dim);
  font-size: 0.95rem;
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.footer-links a {
  display: block;
  color: var(--white-dim);
  padding: 8px 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--black);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--gray);
  text-align: center;
  color: var(--white-dim);
  font-size: 0.9rem;
}

/* ========================================
   HEADER (for scroll effect)
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 40px;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-size: 0.95rem;
  color: var(--white);
  transition: var(--transition);
}

.nav a:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav, .header-actions {
    display: none;
  }
  
  .nav-toggle {
    display: block;
  }
}

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

.service-card,
.booking-step,
.seasonal-card {
  animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(2),
.booking-step:nth-child(2),
.seasonal-card:nth-child(2) {
  animation-delay: 0.1s;
}

.service-card:nth-child(3),
.booking-step:nth-child(3),
.seasonal-card:nth-child(3) {
  animation-delay: 0.2s;
}

/* ========================================
   REVIEWS
   ======================================== */
.reviews {
  background: var(--black-soft);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 30px;
}

.review-card {
  background: var(--black-muted);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.review-stars {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.review-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--white);
}

.review-author {
  font-size: 0.85rem;
  color: var(--white-dim);
}

.reviews-source {
  text-align: center;
  color: var(--white-dim);
}

.reviews-source strong {
  color: var(--gold);
}

/* ========================================
   MOBILE RESPONSIVE FIXES
   ======================================== */

/* Mobile: wideo jako fixed tło - już ustawione wyżej
.hero-bg-mobile {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 0;
}

.hero-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

.hero-main {
  position: relative;
  z-index: 2;
} */

/* Mobile padding - ZMNIEJSZONE: max 25px zgodnie z wymaganiami */
@media (max-width: 768px) {
  section {
    padding: 25px 0;
  }
}

@media (max-width: 480px) {
  section {
    padding: 30px 0;
  }
}

/* Czarne tło sekcji na mobile - żeby nie było widać wideo */
@media (max-width: 768px) {
  .booking-cta,
  .services,
  .seasonal,
  .hero-banner,
  .workshop,
  .reviews,
  .partners,
  .contact {
    background: var(--black) !important;
  }
  
  /* why-us ma czarne tło, więc tekst musi być biały */
  .why-us {
    background: var(--black) !important;
    color: var(--white);
  }
  
  .why-us h2,
  .why-us h3,
  .why-us p {
    color: var(--white);
  }
  
  .why-us .section-tag {
    background: var(--gold);
    color: var(--black);
  }
}

/* Mobile services grid */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
