:root {
  --burger-size: 24px;
  --burger-line-width: 24px;
  --burger-line-height: 2px;
  --burger-spacing: 6px;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: transparent;
  font-family: Arial, sans-serif;
  color: #fff;
  overflow-x: hidden;
}

a {
  color: #fff;
  text-decoration: none;
}


/* =============== HEADER =============== */
.main-header {
  position: fixed;            /* <- kluczowe! */
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

@media (min-width: 992px) {
  .main-header {
    background-color: transparent;
    box-shadow: none;
  }
}

/* =============== NAVIGATION =============== */
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-size: 25px;
  letter-spacing: 0.05em; /* <- tutaj dodane */
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #f78801;
}

.flags {
  display: flex;
  gap: 20px;
  margin-left: 10px;
  margin-right: -60px;
}

.flags img {

  transition: transform 0.3s ease;
}

.flags img:hover {
  transform: scale(1.2);
}

@media (min-width: 769px) {
  .main-nav {
    margin-left: auto;
    transform: translateX(-100px); /* przesuwa menu w lewo – możesz regulować wartość */
  }
}

/* =============== HERO SECTION =============== */
.hero-section {
  overflow: visible;
  height: auto; /* lub usuń height, jeśli jest ustawione */
}


.hero-img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  transition: top 0.3s ease;
  top: 0;
}

.hero-text {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  color: white;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  text-align: left;
  z-index: 2;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

@media (min-width: 769px) {
  .hero-text {
    font-size: 4rem;
    left: 60px;
    top: 70%; /* ⬅️ Zmieniaj tę wartość, by przesuwać tekst w pionie */
    padding-right: 20px;
    transform: translateY(-50%);
  }
}

@media (max-width: 768px) {
  .hero-text {
    position: absolute;
    top: 30%;
    left: 5%; /* przesuwa blok hero-text w prawo */
    transform: translateY(-50%);
    color: white;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    text-align: left;
    z-index: 2;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  }
}

@media (max-width: 400px) {
  .hero-text {
    position: absolute;
    top: 27%;
    left: 5%; /* przesuwa blok hero-text w prawo */
    transform: translateY(-50%);
    color: white;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    text-align: left;
    z-index: 2;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  }
}


/* ===== LAPTOPS ===== */
@media (min-width: 769px) {
  .hero-img {
    top: 0px; /* przesunięcie w dół na laptopach */
  }
}

/* ===== SMARTFONY ===== */
@media (max-width: 768px) {
  .hero-img {
    top: 60px; /* mniejsze przesunięcie na smartfonach */
  }
}

CZCIONKA
@font-face {
  font-family: 'Great Vibes';
  src: url('assets/fonts/GreatVibes-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.hero-text {
  font-family: 'Great Vibes', cursive;
}

/* =============== BURGER MENU =============== */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: var(--burger-spacing);
  width: var(--burger-size);
  height: var(--burger-size);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
}

.burger span {
  display: block;
  width: var(--burger-line-width);
  height: 1px;
  background-color: white;
  transition: 0.3s ease;
}

/* =============== MOBILE STYLES =============== */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background-color: black;
    border: 0.1px solid white;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
  }

  .main-nav.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .nav-links a {
    border-bottom: 0.1px solid white;
    padding-bottom: 5px;
    width: 100%;
    font-size: 16px; /* 🔧 zmniejsza tekst */
  }

  .flags {
    width: 100%;
    margin-left: 0;
    gap: 20px;
  }

  .flags img {
    width: 28px;
  }

  .logo img {
    height: 50px;
  }

  .main-header {
    flex-direction: row;
    padding: 10px 20px;
  }
}

/* =============== LAPTOP STYLES =============== */
@media (min-width: 769px) {
  .logo img {
    height: 120px;
  }

  
  .flags img {
    width: 30px;
  }
}

/* === PRZYCISK CONTACT NA HERO === */
.hero-button {
  display: inline-block;
  padding: 40px 32px;
  background-color: black;
  color: #FF7F00;
  border: 2px solid #FF7F00;
  border-radius: 0;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
}

.hero-button:hover {
  background-color: #FF7F00;
  color: black;
}

/* === LAPTOP (769px i więcej) === */
@media (min-width: 769px) {
  .hero-button {
    font-size: 1.4rem;
    padding: 14px 36px;
    position: absolute;
    top: 130%;
    left: 120px;
  }
}


/* === SMARTFONY (768px i mniej) - NORMALNY UKŁAD === */
@media (max-width: 768px) {
  .hero-button {
    position: relative;
    font-size: 0.5rem;
    padding: 8px 24px;
    margin-top: 20px;
    margin-bottom: 0px;
    margin-left: 20px;
    top: 20px;
    
  }
}




About me
/* ============================= */
/* 🍊 WSPÓLNE STYLE – TŁO I KOLOR */
/* ============================= */

.about-me-text-wrapper {
  font-size: 1.3rem;
  line-height: 1.8;
  padding: 16px 20px;
  border: 1px solid orange;     /* cienka pomarańczowa ramka */
  border-radius: 4px;           /* lekko zaokrąglone rogi (opcjonalnie) */
  display: inline-block;        /* żeby ramka nie była na całą szerokość */
  margin: 0 auto;
}


 .about-me-overlay {
  background-color: transparent; /* usuwamy przyciemnienie */
  color: black; /* 🆕 wymuszenie koloru tekstu */
}


/* ============================= */
/* 💻 LAPTOPY – 992px i więcej */
/* ============================= */
@media (min-width: 992px) {
  .about-me-section {
    padding: 40px 0;
  }

  .about-me-overlay {
    padding: 80px 40px;
  }

  .about-me-content {
    max-width: 60%;
    margin: 0 auto;
    text-align: center;
  }

  .about-me-header {
  display: inline-block;
  text-align: center;
  margin-top: 0px; /* ⬆️ przesunięcie do góry */
}


  .about-me-title {
    font-size: 2.5rem;
    margin: -60px;
    display: inline-block;
  }

  .about-me-underline {
    height: 4px;
    background-color: orange;
    border-radius: 2px;
    margin: 8px auto 40px auto;
    display: block;
  }
}

.about-me-text-wrapper {
  font-size: 1.1rem;            /* Rozmiar tekstu */
  line-height: 1.8;             /* Wysokość linii (czytelność tekstu) */

  padding: 40px 52px;           /* Wewnętrzne odstępy: góra/dół 20px, lewo/prawo 26px */
  border: 1px solid orange;     /* Cienka pomarańczowa ramka */
  border-radius: 0px;           /* Zaokrąglenie rogów (zmień np. na 4px lub 8px) */

  display: inline-block;        /* Dzięki temu ramka obejmuje tylko tekst, a nie całą szerokość */
  margin: 0 auto;               /* Wyśrodkowanie ramki w kontenerze */

  /* Opcjonalne parametry do dopisania: */

  max-width: 1200px;               /* Maksymalna szerokość ramki (zmień np. na 600px lub 100%) */
  min-width: 250px;             /* Minimalna szerokość ramki */
  text-align: center;             /* Wyrównanie tekstu w środku ramki (left / center / justify) */

  /* box-shadow: 0 2px 8px rgba(0,0,0,0.05);  Lekki cień wokół ramki, jeśli chcesz efekt głębi */
}



/* ============================= */
/* 📱 SMARTFONY – mniej niż 992px */
/* ============================= */
@media (max-width: 991px) {
  .about-me-section {
    padding: 80px 0;
    background-color: #ffffff;
    color: black;
  }

  .about-me-overlay {
    background-color: transparent;
    color: black;
  }

  .about-me-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .about-me-header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-me-title {
    font-size: 1.3rem;
    margin-top: 20px;
    padding: 0 20px;
    position: relative;
    display: inline-block;
  }

  .about-me-title::after {
    content: "";
    display: block;
    height: 4px;
    background-color: orange;
    border-radius: 2px;
    margin: 8px auto 0 auto;
    width: 100px; /* dokładna długość kreski */
  }

  .about-me-text-wrapper {
    font-size: 0.85rem;
    line-height: 1.6;
    padding: 35px 30px;
    margin-top: 40px;
    border: 1px solid orange;
    border-radius: 0;
    max-width: 90%;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    margin-left: ;
    margin-right: auto;
  }
}



@font-face {
  font-family: 'Open Sans';
  src: url('assets/fonts/OpenSans-Regular.woff2') format('woff2'),
       url('assets/fonts/OpenSans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


/* === Sekcja services z tłem z obrazkiem === */
.services-section {
  background-image: url("assets/images/grey.png"); /* zamiana */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff; /* zamiana */
  padding: 80px 20px;
  margin: 0;
}

.services-wrapper {
  width: 100%;
  max-width: 60%;
  margin-left: auto;
  margin-right: 325px;
  padding-left: 100px;
  padding-right: 20px;
  text-align: left;
}

.services-section {
  margin-top: -40px; /* cała sekcja wyżej */
}

.services-title {
  font-size: 2.5rem;
  text-align: left;
  margin: -20px 30px 30px 280px; /* góra | prawo | dół | lewo */
  position: relative;
  display: inline-block;
}

.services-title::after {
  content: "";
  display: block;
  height: 4px;
  background-color: #f96502;
  border-radius: 2px;
  margin: 8px 0 0 0;
  width: 100%;
}


/* NOWY BLOK: biała kanciasta ramka */
.services-box {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 60px 140px; /* więcej wewnętrznego odstępu: góra-dół, lewo-prawo */
  border-radius: 0px;
  margin-top: 50px;
  margin-bottom: 10px; /* więcej przestrzeni pod ramką */
  margin-left: -70px; /* wyjście poza padding wrappera */
  margin-right: -90px;
}


.services-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 30px;
  margin-top: 30px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.services-list li {
  margin-bottom: 10px;
}

.services-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
}


@media (max-width: 991px) {
  .services-section {
    padding: 40px 0;
    width: 100%;
    box-sizing: border-box;
  }

  .services-wrapper {
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
    box-sizing: border-box;
    text-align: center; /* wyśrodkowanie tytułu */
  }

  .services-title {
    font-size: 1.3rem;
    margin: 0 auto 24px auto;
    position: relative;
    display: inline-block;
    text-align: center;
  }

  .services-title::after {
    content: "";
    display: block;
    height: 4px;
    background-color: #f96502;
    border-radius: 2px;
    width: 100%;
    margin: 8px auto 0 auto;
  }

 .services-box {
  width: 180%;                   /* szerokość 100% w obrębie wrappera */
  max-width: 700px;              /* możesz dopasować do swojego layoutu */
  margin: 20px 0px 60px -85px;      /* góra | prawo | dół | lewo */
  padding: 24px 20px;
  border: 1px solid #f56301;
  border-radius: 0px;
  background-color: transparent;
  box-sizing: border-box;
  text-align: left;
}

  .services-list,
  .services-paragraph {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}

@media screen and (max-width: 400px) {
.services-box {
  width: 180%;                   /* szerokość 100% w obrębie wrappera */
  max-width: 700px;              /* możesz dopasować do swojego layoutu */
  margin: 20px 0px 60px -79px;      /* góra | prawo | dół | lewo */
  padding: 24px 20px;
  border: 1px solid #f56301;
  border-radius: 0px;
  background-color: transparent;
  box-sizing: border-box;
  text-align: left;
}
}

Portfolio
@font-face {
  font-family: 'Great Vibes';
  src: url('assets/fonts/GreatVibes-Regular.woff2') format('woff2'),
       url('assets/fonts/GreatVibes-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.portfolio-section {
  background-color: #ffffff;
  color: #000000;
  padding: 80px 40px;
}

.section-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 33px;
  text-align: center;
  margin-top: 50px;       /* 🆕 obniżenie od góry */
  margin-bottom: var(--section-title-margin-bottom); /* 🆕 odstęp pod tytułem */
  color: #000; /* upewniamy się, że tytuł jest czarny */
}


.section-underline {
  width: 410px;
  height: 4px;
  background-color: orange;
  margin: 20px auto 30px auto;
  border-radius: 2px;
  margin-top: 10px;   /* przesuwa w górę */
  margin-left: 490px;   /* przesuwa w prawo */
}


:root {
  --portfolio-title-color: #000;
  --portfolio-image-width: 400px;
  --portfolio-caption-font-size: 2.2rem;
  --portfolio-caption-gap: 20px;      /* odstęp między zdjęciem a podpisem */
  --portfolio-block-margin: 100px;     /* odstęp między całym blokiem a resztą */
  --portfolio-block-padding-top: 60px;/* obniżenie całego bloku */
}

.portfolio-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 200px;
  margin-bottom: var(--portfolio-block-margin);
  padding-top: 100px; /* 🆕 obniżenie bloku */
}

.portfolio-row.reverse {
  flex-direction: row-reverse;
}

/* === KONTENER zdjęcia === */
.portfolio-image {
  display: inline-block;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* === OBRAZ === */
.portfolio-image img {
  width: 450px;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 20px;
}

/* === EFEKT ZOOM + POŚWIATA === */
.portfolio-image:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgb(255, 129, 3); /* żółta poświata */
}

/* === PODPIS === */
.portfolio-caption {
  font-family: 'Great Vibes', cursive;
  font-size: var(--portfolio-caption-font-size);
  text-align: center;
  max-width: 400px;
  color: #000;
  margin-top: var(--portfolio-caption-gap);
}

/* Ukryj sekcję na smartfonach */
@media (max-width: 991px) {
  .portfolio-section {
    display: none;
  }
}

:root {
  --mobile-title-font-size: 2rem;
  --mobile-title-margin-top: 50px;
  --mobile-title-margin-bottom: 20px;
  --mobile-underline-spacing: 40px;
}

.portfolio-mobile {
  display: none;
}

@media (max-width: 991px) {
  .portfolio-section {
    display: none;
  }

  .portfolio-mobile {
    display: block;
    background-color: #fff;
    padding: 0 20px;
  }

  .portfolio-mobile-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .mobile-portfolio-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    text-align: center;
    color: #000;
    margin-top: var(--mobile-title-margin-top);
    margin-bottom: var(--mobile-title-margin-bottom);
  }

  @media (max-width: 414px) {
  .mobile-portfolio-underline {
    width: 70%;            /* dopasowane do tytułu */
    height: 4px;
    background-color: orange;
    border-radius: 2px;
    margin-top: -50px;
    margin-left: 55px;     /* przesunięcie w prawo – możesz dopasować */
  }
}


  .portfolio-mobile-item {
    overflow: hidden;
    border-radius: 16px;
    transform: scale(0.96);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
  }

  .portfolio-mobile-item.visible {
    transform: scale(1);
    opacity: 1;
  }

  .portfolio-mobile-item img {
    width: 100%;
    display: block;
    border-radius: 16px;
  }

  .portfolio-mobile-item p {
    font-family: 'Great Vibes', cursive;
    font-size: 1.6rem;
    text-align: center;
    color: #000;
    margin-top: 12px;
  }
}

@media screen and (max-width: 400px) {
 .mobile-portfolio-underline {
  width: 240px;           /* ⬅️ ZWIĘKSZONA szerokość podkreślenia */
  height: 4px;
  background-color: orange;
  border-radius: 2px;
  margin-top: -50px;      /* przesunięcie w górę */
  margin-left: 50px;     /* ⬅️ dostosuj w zależności od szerokości tytułu */
}
}


Laptopy
@media (min-width: 992px) {
  .portfolio-caption {
    display: inline-block;
    padding: 10px 18px 12px 20px;
    border: 6px solid transparent;
    border-image: repeating-linear-gradient(
      130deg,
      #f56301,
      #f56301 10px,
      #ff914d 10px,
      #ff914d 20px
    ) 1; /* efekt pędzla z przetarciem */
    border-radius: 20px 8px 24px 10px; /* nierówny kształt */
    background-color: rgba(255, 245, 230, 0.4);
    font-size: 2rem;
    margin-top: 12px;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .portfolio-caption:hover {
    transform: rotate(-1.2deg) scale(1.03);
    box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 992px) {
  .portfolio-caption {
    display: inline-block;
    padding: 10px 18px 12px 20px;
    border: 6px solid transparent;
    border-image: repeating-linear-gradient(
      130deg,
      #f56301,
      #f56301 10px,
      #ff914d 10px,
      #ff914d 20px
    ) 1; /* efekt pędzla z przetarciem */
    border-radius: 20px 8px 24px 10px; /* nierówny kształt */
    background-color: rgba(255, 245, 230, 0.4);
    font-size: 2rem;
    margin-top: 12px;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .portfolio-caption:hover {
    transform: rotate(-1.2deg) scale(1.03);
    box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.15);
  }
}



REVIEW
/* ===== ZMIENNE ===== */
:root {
  /* Laptop */
  --laptop-padding-top: 100px;
  --laptop-slide-padding: 30px;
  --laptop-text-size: 1.3rem;
  --laptop-stars-size: 1.6rem;
  --laptop-author-size: 1rem;
  --laptop-gap: 20px;

  /* Mobile */
  --mobile-padding-top: 100px;
  --mobile-slide-padding: 25px;
  --mobile-text-size: 1.1rem;
  --mobile-stars-size: 1.4rem;
  --mobile-author-size: 0.9rem;
  --mobile-gap: 15px;
}

/* ===== WSPÓLNE ===== */
.reviews-section {
  background-color: #000;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.review-carousel {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.review-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  color: #fff;
}


.review-slide.active {
  display: block;
  opacity: 1;
}

.review-text {
  font-style: italic;
  margin-bottom: 15px;
}

.review-stars {
  color: gold;
  margin-bottom: 10px;
}

.review-author {
  font-weight: bold;
  color: #ccc;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.carousel-btn {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}

.carousel-btn:hover {
  background: #fff;
  color: #000;
}

/* ===== LAPTOPY ===== */
@media (min-width: 769px) {
  .reviews-section {
    padding-top: 50px;
    padding-bottom: 80px;
  }

  .review-slide {
    padding: var(--laptop-slide-padding);
  }

  .review-text {
    font-size: 30px;
    padding-top: 130px;
  }

  .review-stars {
    font-size: 30px;
  }

  .review-author {
    font-size: 20px;
  }

  .carousel-controls {
    gap: 350px;
  }

  .carousel-btn {
    font-size: 2rem;
    width: 120px;
    height: 50px;
  }
}


@media (min-width: 992px) {
  .reviews-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
  }

  .reviews-title::after {
    content: "";
    display: block;
    height: 4px;
    background-color: orange;
    border-radius: 2px;
    margin: 8px auto 0 auto;
    width: 100%;
  }

  .reviews-section .section-underline {
    display: none;
  }
}

/* ===== SMARTFONY ===== */
@media (max-width: 768px) {
  .reviews-section {
    padding-top: 10px;
    padding-bottom: 60px;
  }

  .review-slide {
    padding: var(--mobile-slide-padding);
  }

  .review-text {
    font-size: 22px;
    padding-top: 40px;
  }

  .review-stars {
    font-size: 20px;
  }

  .review-author {
    font-size: var(--mobile-author-size);
  }

  .carousel-controls {
    gap: 80px;
  }

  .carousel-btn {
    font-size: 1.8rem;
    width: 45px;
    height: 45px;
  }
}

.reviews-title {
  color: #fff;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .reviews-title {
    font-size: 1.3rem;
    text-align: center;
    margin: 50px 20px 16px 20px;
    position: relative;
    display: inline-block;
  }

  .reviews-title::after {
    content: "";
    display: block;
    height: 3px;
    background-color: orange;
    border-radius: 2px;
    margin: 6px 20px 0 auto;
    width: 100%;
  }

  .reviews-section .section-underline {
    display: none;
  }
}


Contact
.contact-section {
  padding: 100px 20px 80px;
  background-color: #fff;
  text-align: center;
  box-sizing: border-box;
}

/* === TYTUŁ (wyśrodkowany) === */
.contact-heading {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 80px auto 16px;
  color: #000;
  text-align: center;
  display: block;
}

/* === PODKREŚLENIE === */
.contact-underline {
  width: 160px;
  height: 4px;
  background-color: orange;
  margin: -10px auto 100px;
  border-radius: 2px;
}

/* === DISCLAIMER === */
.contact-disclaimer {
  font-size: 1rem;
  color: #666;
  font-style: italic;
  margin-bottom: 50px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-align: center;
}

/* === FORMULARZ === */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid #070400;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
}

.contact-form input,
.contact-form textarea {
  border: none;
  border-bottom: 1px solid #0b0600;
  font-size: 1rem;
  padding: 10px 0;
  color: #000;
  background: none;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
  font-style: italic;
}

.contact-form button {
  background: #070400;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.3s ease;
  align-self: center;
}

.contact-form button:hover {
  background: #fff;
  color: #0b0600;
  border: 0px solid #030100;
}


/* === SMARTFONY === */
@media (max-width: 768px) {
  .contact-form {
    padding: 10px 20px;
    max-width: 350px;
  }

  .contact-disclaimer {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .contact-heading {
    font-size: 1.4rem;
    margin-top: 50px;
    margin-bottom: 16px;
  }

  .contact-underline {
    width: 85px;
    height: 4px;
    border-radius: 2px;
    background-color: orange;
    margin: -15px auto 60px;
  }
}

/* === OBRAZEK – ukryty na smartfonach === */
.contact-image {
  display: none;
}

/* === Wrapper formularza i zdjęcia – tylko na laptopach === */
@media screen and (min-width: 1025px) {
  .contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    border: 1px solid #f68002; /* cienka, kanciasta, pomarańczowa ramka */
    box-sizing: border-box;
  }

  .contact-form {
    margin: 0;
    flex: 1;
    max-width: none;
    height: auto;
  }

  .contact-image {
    display: block;
    width: 400px;
    height: auto;
    object-fit: cover;
    border: 1px solid #f68802;
    box-shadow: none;
    border-radius: 0;
  }
}


/* ============================== */
/* STOPKA - CAŁOŚĆ               */
/* ============================== */
footer.final-footer {
  background-color: #000005;
  color: #ffffff;
  font-family: Helvetica, sans-serif;
  padding: 40px 20px 20px;
  font-size: 14px;
}

/* Główne kontenery */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Górna sekcja */
.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

/* Logo */
.footer-logo {
  background-color: #050004;
  padding: 10px 14px;
  border-radius: 0px;
  margin-bottom: 10px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
}

/* Linki */
.footer-links,
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 200px;
}

.footer-links h4,
.footer-info h4 {
  color: #ffffff;
  font-size: 15px;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 5px;
  margin-bottom: 6px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Numery firmy – wyśrodkowane na jednej linii */
.footer-numbers {
  text-align: center;
  line-height: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;

  /* Nowe właściwości do przesuwania w dół */
  margin-top: 10px;     /* zmieniaj tę wartość wedle potrzeb */
  padding-bottom: 0px; /* opcjonalnie dodaj luz na dole */
}


/* Dolna sekcja */
.footer-bottom {
  border-top: 2px solid #ffcccc;
  padding-top: 14px;
  font-size: 13px;
  text-align: center;
  line-height: 1.6;
}


/* ============================== */
/* RESPONSYWNOŚĆ – MOBILE        */
/* ============================== */
@media (max-width: 767px) {
  .footer-columns {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .footer-logo {
    padding: 8px 10px;
    margin: 0;
  }

  .footer-logo-img {
    height: 60px;
  }

  .footer-links,
  .footer-info {
    align-items: flex-start;
  }

  .footer-numbers {
    font-size: 13px;
    flex-direction: row;
    justify-content: center;
  }
}

.hero-heading {
  font-size: 4rem;
  font-weight: normal;
  line-height: 1.4;
  color: white;
  text-align: left;
  margin-top: -90px;
  
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 1.5rem;
    line-height: 1.3;
    text-align: center;
    margin-top: -20px;
    position: static; /* brak przesuwania tła */
  }
}

:root {
  --line-spacing: 1.8;
}

.contact-closing-box {
  border: 1px solid orange;
  background-color: white;
  color: #111;
  padding: 24px;
  margin: 40px auto;
  font-family: 'Open Sans', sans-serif;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  line-height: var(--line-spacing);
}

.contact-closing-box a {
  color: #111; /* widoczne na białym tle */
  text-decoration: underline;
}

@media (min-width: 769px) {
  .contact-closing-box {
    max-width: 1200px;  /* szeroka ramka na laptopie */
    font-size: 1rem;    /* domyślny rozmiar tekstu */
  }
}

@media (max-width: 768px) {
  .contact-closing-box {
    width: 90%;         /* dopasowanie na smartfonach */
    font-size: 0.95rem;
  }
}

.square-cookie-banner {
  position: fixed;
  bottom: 60px;
  left: 60px;
  width: 300px;
  height: auto;
  background-color: #fff;
  border: 3px solid #f68802; /* pomarańczowa ramka */
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  color: #000;
}

.square-cookie-banner .cookie-icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

.square-cookie-banner p {
  font-size: 0.95rem;
  margin: 10px 0 20px 0;
  line-height: 1.4;
  color: #000;
}

.square-cookie-banner button {
  background-color: #fff;       /* białe tło */
  color: #000;                  /* czarny tekst */
  border: 1px solid #000;       /* cienka czarna ramka */
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 0;             /* ostre rogi */
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.square-cookie-banner button:hover {
  background-color: #f5f5f5;    /* delikatna zmiana przy najechaniu */
}

.square-cookie-banner button:focus {
  outline: 2px solid #ffcc00;   /* żółty focus dla klawiatury */
  outline-offset: 2px;
}

/* Smartfony – lekko wyżej */
@media (max-width: 768px) {
  .square-cookie-banner {
    bottom: 100px;
    left: 20px;
    right: 20px;
    width: auto;
  }
}


