/* ========== RESET ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
}


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

/* ========== GLOBAL BODY STYLES ========== */
body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background: black;
  color: white;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-width: none; /* Firefox */
}
body::-webkit-scrollbar {
  display: none; /* Chrome */
}

html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;

  
}

/* CUSTOM SCROLLBAR: Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);  
  border-radius: 10px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.video-background {
  position: fixed; /* lub absolute */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* ← TO ZMIENIAJ! */
  z-index: -1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ← zapewnia rozciągnięcie */
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* ========= LAYOUT CONTAINER ========== */
.container {
  width: 100%;
}

/* ========== NAVIGATION BAR ========== */
/* Pasek nawigacyjny */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.8); 
  padding: 20px 40px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  font-family: 'Inter', sans-serif;
}

/* Logo */
.navbar .logo {
  font-size: 18px;  
  font-weight: 600;
  color: white;
  white-space: nowrap;
}

/* Linki nawigacyjne */
.nav-links {
  display: flex;
  gap: 40px; 
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  color: white;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover {
  opacity: 0.6;
}


/* Linki w nawigacji */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

.navbar ul li a {
  text-decoration: none;
  color: white;
  font-weight: 400;
  font-size: 24px; 
  transition: opacity 0.3s ease;
}

.navbar ul li a:hover {
  opacity: 0.7;
}

/* ========== HERO SECTION ========== */
.hero {
  padding: 100px 60px;
  text-align: center;
}

.subtitle {
  font-size: 20px;
  color: #aaa;
  margin-bottom: 30px;
  font-weight: 300;
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeDown 1s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes fadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 5vw;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 60px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  background-color: rgb(20, 20, 20);
  color: rgb(255, 255, 255);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn.session {
  background-color: #1b1b1b;
  color: white;
  border: none;
}

.btn.learn {
  background-color: white;
  color: black;
  border: none;
}

.btn:hover {
  transform: scale(1.05);
}


/* ========== about me ========== */
.about-me-final {
  background: black;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
}

.about-me-container {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1100px;
  position: relative;
  flex-wrap: wrap;
}

.about-left {
  width: 500px;
  height: 440px;
}

.about-background-box {
  background: linear-gradient(to bottom, #e4e4e4, #f4f4f4);
  border-radius: 28px;
  width: 100%;
  height: 100%;
  padding: 40px 30px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.about-background-box h2 {
  font-size: 32px;
  font-weight: 700;
  color: black;
  margin: 0;
}

.about-description-card {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: white;
  color: black;
  padding: 20px 22px;
  border-radius: 20px;
  width: 290px;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  z-index: 2;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.about-description-card:hover {
  transform: scale(1.03);
}

.about-description-card strong {
  font-weight: 700;
}

.about-photo {
  margin-left: -80px;
  margin-top: -50px;
  z-index: 1;
}

.about-photo img {
  width: 360px;
  height: 540px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.about-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.about-modal.show {
  display: flex;
}

.about-modal-content {
  background: white;
  color: black;
  padding: 40px;
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  font-size: 16px;
  line-height: 1.6;
  position: relative;
}

.about-modal-content::-webkit-scrollbar {
  width: 8px;
}

.about-modal-content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.registration-box {
  background: white;
  color: black;
  max-width: 800px;
  margin: 60px auto;
  padding: 40px 30px;
  border-radius: 20px;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}




/* === RESPONSYWNOŚĆ === */
@media (max-width: 768px) {
  .about-me-container {
    flex-direction: column;
    align-items: center;
  }

  .about-left {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
  }

  .about-background-box {
    padding: 30px 20px;
    text-align: center;
  }

  .about-background-box h2 {
    font-size: 24px;
  }

  .about-description-card {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 20px;
  }

  .about-photo {
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
}

.about-photo img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

}

/* ========== link do arty ========== */

.support-material {
  background: black;
  padding: 100px 20px;
  text-align: center;
}

.support-material h2 {
  color: white;
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 600;
}

.support-subtext {
  color: #ccc;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: black;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, background 0.3s;
}

.support-link:hover {
  transform: scale(1.05);
  background: #f0f0f0;
}
/* ========== ulotki ========== */
.workshop-flyer {
  background: white;
  color: #003b4a;
  max-width: 794px; /* A4 width in px at 96dpi */
  margin: 40px auto;
  padding: 60px 50px;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 0 40px rgba(0,0,0,0.08);
  border-radius: 16px;
}

.flyer-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}

.flyer-host {
  font-size: 18px;
  margin-bottom: 30px;
}

.flyer-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.flyer-subheading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.flyer-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.flyer-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.flyer-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00798c;
}

.flyer-details {
  font-size: 15px;
  margin-bottom: 40px;
}

.flyer-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border-top: 1px solid #ddd;
  padding-top: 30px;
}

.flyer-qr {
  width: 110px;
  height: auto;
}

.flyer-org {
  font-size: 15px;
  line-height: 1.4;
}

.flyer-org a {
  color: #003b4a;
  text-decoration: none;
  font-weight: 500;
}

.flyer-dates {
  margin-bottom: 40px;
  line-height: 1.6;
}

.flyer-org-logo {
  width: 140px;
  height: auto;
  margin-bottom: 6px;
}

.flyer-org p {
  margin: 0;
}

/* ========== LOGO CAROUSEL (INFINITE SCROLL) ========== */
.logo-carousel {
  position: relative;
  width: 800px;
  height: 160px;
  overflow: hidden;
  margin: 60px auto;
  background: none;
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 200px;
  animation: scrollInfinite 60s linear infinite;
}

.logo-track img {
  height: 120px;
  flex-shrink: 0;
}

@keyframes scrollInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-carousel::before,
.logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: none; 
}



/* ========== SMOOTH SCROLLING ========== */
html {
  scroll-behavior: smooth;
}

/* ========== FEATURES SECTION (KOŁO + GRID 2xN) ========== */
.features-section {
  position: relative;
  background-color: #111;
  padding: 150px 20px;
  overflow: hidden;
}

.features-grid {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* ========== SERVICES SECTION (KOŁO + 2xN KAFELKI) ========== */
.services-section {
  position: relative;
  background-color: black;
  padding: 160px 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(252, 252, 252, 0.8) 0%, transparent 100%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 0;
}

.services-grid {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-card {
  background: white;
  border-radius: 34px;
  padding: 50px 30px;
  color: black;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  min-height: 340px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

.service-card:hover {
  transform: scale(1.03);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}
.service-description {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.service-card.active .service-description {
  max-height: 1000px;
  opacity: 1;
  margin-top: 10px;
}

.service-card {
  position: relative;
  cursor: pointer;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.service-title {
  transition: opacity 0.3s ease;
}

.service-card.active .service-title {
  opacity: 0;
  pointer-events: none;
}

.click-tip {
  display: block;
  font-size: 12px;
  color: #888;
  margin-top: 8px;
  font-style: italic;
}

.service-description {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  text-align: left;
}

.service-card.active .service-description {
  opacity: 1;
  max-height: 1000px;
  margin-top: 10px;
}


@media (max-width: 768px) {
  .services-section {
    padding: 100px 20px;
  }

  .services-circle {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 40px 20px;
  }
}




/* ========== STEPS SECTION (3x KROKI / KARTY) ========== */
.steps-section {
  background: black;
  color: white;
  padding: 80px 20px;
  text-align: center;
  overflow-x: hidden;
}

.steps-heading {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 60px;
  font-family: 'Inter', sans-serif;
}

.steps-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
}

.step-card {
  background: white;
  color: black;
  border-radius: 20px;
  width: 400px;
  height: 480px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  position: relative;
  text-align: left;
  font-family: 'Inter', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.step-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.step-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.step-number-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 42px;
  height: 42px;
  background-color: white;
  color: black;
  font-weight: bold;
  font-size: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.step-card p {
  font-size: 15px;
  font-weight: 300;
  color: #444;
  text-align: center;
}

@media (max-width: 768px) {
  .steps-section {
    padding: 60px 0;
  }

  .steps-heading {
    font-size: 22px;
    margin-bottom: 30px;
    padding: 0 20px;
    line-height: 1.4;
  }

  .steps-grid {
    gap: 16px;
    padding: 0 16px 20px 16px;
  }

  .step-card {
    width: 320px;
    padding: 16px;
    border-radius: 18px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }

  .step-card img {
    height: 200px;
    border-radius: 16px;
  }

  .step-number-overlay {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .step-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .step-card p {
    font-size: 14px;
    line-height: 1.5;
  }
}



/* ========== FEATURES MINI SECTION (ucho card essFEATURE-CARD) ========== */
.features-section {
  background: black;
  color: white;
  padding: 120px 20px;
}

.feature-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  margin-bottom: 100px;
  max-width: 1000px;
  margin-inline: auto;
}

.feature-row.reverse {
  flex-direction: column-reverse;
}

.feature-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.feature-image:hover {
  transform: scale(1.01);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.feature-text {
  max-width: 800px;
  text-align: center;
  padding: 0 20px;
}

.feature-text h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 24px;
}

.feature-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-text li {
  font-size: 20px;
  margin-bottom: 16px;
  line-height: 1.6;
  color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .features-section {
    padding: 80px 16px;
  }

  .feature-text h2 {
    font-size: 26px;
  }

  .feature-text li {
    font-size: 16px;
  }

  .feature-image img {
    max-height: 300px;
    border-radius: 16px;
  }
}


@media (max-width: 768px) {
  .features-section {
    padding: 80px 16px;
  }

  .feature-text h2 {
    font-size: 22px;
  }

  .feature-text li {
    font-size: 16px;
  }

  .feature-image img {
    max-height: 300px;
    border-radius: 16px;
  }
}


/* WYRÓWNANIE NA TELEFONIE */
@media (max-width: 768px) {
  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .feature-text {
    padding: 0;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
  }

  .feature-text h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .feature-text li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .feature-image {
    width: 100%;
    max-width: 100%;
  }

  .feature-image img {
    height: 240px;
  }
}



/* === SEKCJA CTA === */
.cta-section {
  background: black;
  color: white;
  text-align: center;
  
  padding: 110px 20px 0px;
}


.cta-heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-subtext {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  background-color: #111;
  color: white;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #333;
}
/* === biooooooooooo=== */
.bio-section {
  background: black;
  padding: 100px 20px;
  color: white;
  text-align: center;
}

.bio-container {
  max-width: 900px;
  margin: 0 auto;
  background: #f9f9f9;
  color: black;
  padding: 60px 40px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.bio-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.bio-header h2 {
  font-size: 32px;
  font-weight: 700;
}

.bio-icon {
  width: 48px;
  height: 48px;
}

.bio-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}

@media (max-width: 768px) {
  .bio-container {
    padding: 40px 20px;
  }

  .bio-header {
    flex-direction: column;
  }

  .bio-header h2 {
    font-size: 26px;
  }

  .bio-icon {
    width: 40px;
    height: 40px;
  }

  .bio-content p {
    font-size: 15px;
  }
}


/* === geleria === */

.gallery-w {
  background: black;
  padding: 100px 20px;
}

.gallery-w-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-w-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: -80px;
  position: relative;
  z-index: 2;
}

.img-top-left,
.img-top-right {
  width: 48%;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.05);
  object-fit: cover;
  height: 300px;
}

.gallery-w-bottom {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-top: 100px; /* ⬅️ dodane obniżenie dolnego zdjęcia na desktopie */
}

.img-bottom {
  width: 70%;
  border-radius: 24px;
  height: 360px;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.07);
}


@media (max-width: 768px) {
  .gallery-w-top {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .img-top-left,
  .img-top-right,
  .img-bottom {
    width: 100%;
    height: auto;
  }

  .gallery-w-bottom {
    justify-content: center;
  }
}

/* Animacja hover tylko na desktopie */
/* Animacja hover tylko na desktopie */
@media (hover: hover) and (pointer: fine) {
  .img-top-left:hover,
  .img-top-right:hover {
    transform: scale(1.04);
    z-index: 10;
    box-shadow: 0 12px 36px rgba(255, 255, 255, 0.25);
    position: relative;
  }

  .img-bottom:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 36px rgba(255, 255, 255, 0.25);
    position: relative;
    /* brak z-index => pozostaje pod spodem */
  }
}


/* === SEKCJA MAPY === */
.location-section {
  background: black;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.location-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
}

.maps-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.map-box {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.map-box iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

.map-caption {
  font-size: 14px;
  color: #ccc;
  padding: 16px;
  line-height: 1.5;
}
.location-note {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-align: center;
}




/* === STOPKA === */
  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family:'Inter', sans-serif;
  }

  .footer-full {
    position: relative;
    background: black;
    color: white;
    text-align: center;
    overflow: hidden;
    width: 100vw;
    padding: 100px 16px 60px;
  }

  .footer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

  .footer-bg video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
  }

  .footer-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
  }

  .footer-heading {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
  }

  .footer-subtext {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 36px;
  }

  .footer-btn {
    display: inline-block;
    background: white;
    color: black;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-family:'Inter', sans-serif;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 24px;
    width: 100%;
    max-width: 300px;
  }

  .footer-btn:hover {
    background: #e6e6e6;
    transform: scale(1.1);
  }

  .footer-socials {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 28px;
  }

  .footer-socials img {
    width: 28px;
    height: 28px;
    filter: invert(1);
    transition: opacity 0.3s ease;
  }

  .footer-socials img:hover {
    opacity: 0.6;
  }

  .footer-bottom-text {
    margin-top: 60px;
    font-size: 14px;
    color: #888;
  }
 .contact-slideout {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(249, 249, 249, 0.97);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
    transition: bottom 0.4s ease;
    z-index: 9999;
    padding: 60px 20px;
    max-height: 95vh;
    overflow-y: auto;
  }

  .contact-slideout.show {
    bottom: 0;
  }

  .contact-slide-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    background: transparent;
    padding: 40px;
  }

  .close-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 26px;
    cursor: pointer;
  }

  .contact-slide-content h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .contact-intro {
    font-size: 14px;
    color: #555;
    margin-bottom: 24px;
  }

  .therapy-info {
    margin-bottom: 30px;
  }

  .therapy-info h3 {
    font-size: 18px;
    margin-top: 20px;
  }

  .therapy-info p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .form-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .form-row input {
    flex: 1;
    min-width: 180px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 15px;
    font-family:'Inter', sans-serif;
    box-sizing: border-box;
  }

  .contact-form textarea {
    resize: vertical;
    min-height: 120px;
  }

  .contact-form button {
    background: black;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .contact-form button:hover {
    background: #333;
  }

  .contact-details {
    margin-top: 40px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
  }
 @media (max-width: 768px) {
  .footer-heading {
    font-size: 20px;
  }

  .footer-subtext {
    font-size: 14px;
    margin-bottom: 24px;
  }

 @media (max-width: 768px) {
    .footer-heading {
      font-size: 20px;
    }

    .footer-subtext {
      font-size: 14px;
      margin-bottom: 24px;
    }

    .footer-btn {
      font-size: 14px;
      padding: 12px 24px;
      width: 100%;
      max-width: 300px;
    }

    .footer-socials {
      margin-top: 30px;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .footer-socials img {
      width: 24px;
      height: 24px;
    }

    .footer-bottom-text {
      font-size: 12px;
      margin-top: 40px;
    }

    .footer-inner,
    .footer-full {
      max-width: 100%;
      overflow-x: hidden;
    }
  }
}


   

/* === PANEL KONTAKTOWY === */
.contact-slideout {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: #f1f1f1;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.3);
  transition: bottom 0.4s ease;
  z-index: 9999;
  padding: 60px 20px;
  overflow-y: auto;
  max-height: 90vh;
}

.contact-slideout.show {
  bottom: 0;
}

.contact-slide-content {
  max-width: 800px;
  margin: 0 auto;
  color: #222;
  position: relative;
}

.contact-slide-content h2,
.contact-slide-content h3 {
  font-size: 20px;
  margin-top: 30px;
}

.contact-slide-content p {
  font-size: 15px;
  line-height: 1.6;
}

.contact-slide-content a {
  color: #222;
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 30px 0;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form button {
  padding: 12px;
  background: black;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #333;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
}

.appointment-btn {
  display: inline-block;
  padding: 14px 32px;
  background: white;
  color: black;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-top: 20px;
}

.appointment-btn:hover {
  background: #eaeaea;
  transform: scale(1.04);
}


@media (max-width: 980px) {

  .navbar {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
  }

  .nav-links {
    display: none; 
  }

  .logo {
    font-size: 20px;
    text-align: center;
  }

  .bio-cards {
    flex-direction: column;
    gap: 20px;
  }

  .bio-card {
    width: 90%;
    height: auto;
    aspect-ratio: 4 / 4;
  }

  
  .services-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .service-card {
    padding: 40px 20px;
  }

  .cta-section {
    padding: 60px 20px;
  }

  .cta-heading {
    font-size: 28px;
  }

  .footer-icons {
    flex-direction: column;
    gap: 8px;
  }

  .footer-bottom {
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0;
  text-align: center;
}


  .contact-panel {
    padding: 20px;
  }

  .contact-item {
    flex-direction: column;
    gap: 6px;
  }

}


@media (max-width: 768px) {
  .about-me-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .about-me-photo img {
    width: 80%;
    max-width: 300px;
  }

  .about-me-card {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .footer-heading {
    font-size: 20px;
  }

  .footer-subtext {
    font-size: 14px;
  }

  .footer-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .footer-socials {
    gap: 20px;
    margin-top: 30px;
  }

  .footer-socials img {
    width: 24px;
    height: 24px;
  }

  .footer-bottom-text {
    font-size: 12px;
  }
}



body.no-scroll {
  overflow: hidden;
}

@media (max-width: 768px) {
  /* === WIDEO ZA NAWIGACJĄ (MOBILNE) === */
  .video-background {
    height: 680px;
  }

  .video-background video {
    height: 680px;
    object-fit: cover;
  }

  /* === GÓRNA NAWIGACJA === */
  .navbar {
    padding: 14px 20px;
    flex-direction: column;
    align-items: center;
  }

 @media (max-width: 768px) {
  .navbar .logo {
    font-size: 14px;
    line-height: 1.3;
    max-width: 90%;
    white-space: normal;
    text-align: center;
  }
}


  /* === UKRYCIE WSZYSTKICH PRZYCISKÓW NAWIGACJI === */
  .nav-links,
  .navbar ul {
    display: none;
  }

  /* === UKRYCIE PRZYCISKU SERVICES === */
  .nav-links a[href*="services"],
  .navbar ul li a[href*="services"] {
    display: none;
  }

  /* === SEKCJA HERO === */
  .hero {
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 9vw;
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .buttons {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    font-size: 16px;
    padding: 12px 24px;
  }
}

.professional-registration {
  background: black;
  color: white;
  text-align: center;
  padding: 40px 20px 60px;
  font-family: 'Inter', sans-serif;
}

.registration-container {
  max-width: 800px;
  margin: 0 auto;
}

.registration-container h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
}

.registration-container p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: #ddd;
}




