:root {
  --font-primary: "Cormorant";
  --font-secondary: "Charm";
  --shadow-standard: 10px 10px 10px grey;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
html,
body {
  overflow-x: hidden;
  width: 100%;
  background-color: #fefae0;
}
/* ========================================= */
/* Sekcja: HERO / Głowna strona z navbarem */
/* ========================================= */
.hero {
  height: 100vh;
  background-image: url(./kot2-flip.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.logo {
  padding: 0 20px;
}
.logo img {
  height: 48px;
}
.language {
  position: absolute;
  right: 0;
  display: flex;
  justify-content: center;
  height: 100%;
}

.language a span {
  font-size: 24px;
  transition: 0.5s ease;
}
.language a span:hover {
  scale: 1.5;
}
nav {
  height: 60px;
  display: flex;
  background: rgba(255, 255, 255, 0.01);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  justify-content: flex-end;
  align-items: center;
}
.links-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-left: 0 auto;
}
nav a {
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: rgb(41, 4, 4);
}
nav a span {
  position: relative;
}
.nav-welcome {
  position: flex;
  flex-wrap: wrap;
  flex: 0.5;
  margin-top: 10em;
  padding-left: 5vw;
  text-wrap: balance;
}
.nav-welcome h1 {
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 1.3;
  color: #fff;
  -webkit-text-stroke: 1px #afa8a8;
  text-shadow:
    0 1px 0 #c7c7c7,
    0 2px 0 #c7c7c7,
    0 3px 0 #c7c7c7,
    0 4px 0 #c7c7c7,
    0 5px 0 #c7c7c7,
    0 6px 0 #c7c7c7,
    0 7px 0 #c7c7c7,
    0 8px 0 #c7c7c7,
    1px 15px 10px rgba(16, 16, 16, 0.3),
    1px 20px 20px rgba(16, 16, 16, 0.2),
    1px 25px 40px rgba(16, 16, 16, 0.2),
    1px 30px 80px rgba(16, 16, 16, 0.3);
}
.nav-welcome p {
  font-size: 2em;
  line-height: 1.3;
  color: black;
  font-weight: 600;
  -webkit-text-stroke: 1px grey;
}
.links-container .underline::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 4px;
  bottom: -10px;
  left: 0;
  background-color: #bf1414;
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}
.links-container .underline:hover::after {
  transform: scaleX(1);
  transform-origin: bottom;
}

nav svg {
  fill: rgb(43, 7, 7);
}
#sidebar-active {
  display: none;
}
.open-sidebar-button,
.close-sidebar-button {
  display: none;
}

@media (max-width: 900px) {
  .nav-welcome h1 {
    -webkit-text-stroke: 1px black;
    color: white;
    font-size: 3rem;
    text-shadow: none;
    font-family: Wendy One;
  }
  .nav-welcome p {
    font-family: Bree Serif;
    color: rgb(246, 244, 221);
    font-weight: 100;
    -webkit-text-stroke: black;
  }
  .france h1 {
    font-size: 2rem;
  }
  .france p {
    font-size: 28px;
  }
  .logo {
    position: absolute;
    top: 4px;
    left: 20px;
    padding: 0;
    margin-left: auto;
  }
  .links-container {
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 10;
    height: 100vh;
    background-color: rgba(243, 239, 246, 0.9);
    backdrop-filter: blur(40px);
    width: 250px;
    /* background-color: rgb(243, 239, 246); */
    box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
    transition: 0.75s ease-out;
  }
  .language {
    display: flex;
    justify-content: center;
    height: auto;
    position: relative;
  }
  .language a {
    justify-content: center;
  }

  nav a {
    box-sizing: border-box;
    height: auto;
    width: 100%;
    padding: 20px;
    justify-content: flex-start;
  }
  .open-sidebar-button,
  .close-sidebar-button {
    padding: 20px;
    display: block;
  }
  #sidebar-active:checked ~ .links-container {
    right: 0;
  }
  #sidebar-active:checked ~ #overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
  }
}

/* ========================================= */
/* Sekcja: CYTAT / Cytaty */
/* ========================================= */

.comment {
  /* Zostawiamy jak było, ale zmieniamy centrowanie: */
  height: 40vh; /* Może być za dużo na pionowym telefonie, patrz poprawka niżej */
  display: flex; /* Używamy flexbox */
  flex-direction: column; /* Ustawiamy elementy w kolumnie */
  justify-content: center; /* Centrowanie w pionie */
  align-items: center; /* Centrowanie w poziomie */
  text-align: center;
  /* align-content: center; - USUWAMY, bo jest specyficzne dla wielowierszowego flexbox/grid */
  padding: 3em; /* Mniejszy padding, ale nie tak drastycznie jak 0 3em */
}
.comment h3 {
  font-size: 4em;
  font-family: var(--font-secondary);
  font-weight: 100;
}
.comment p {
  font-family: var(--font-secondary);
  line-height: 5em;
  font-style: italic;
}
@media screen and (max-width: 900px) {
  /* ... (inne poprawki) ... */

  /* Poprawka dla Sekcji: CYTAT / Cytaty */
  .comment {
    /* Utrzymujemy elastyczność i dodajemy marginesy pionowe dla oddechu */
    height: fit-content; /* Lepsze niż sztywna wysokość */
    min-height: 25vh; /* Zapewnij minimalną wysokość, żeby nie był to tylko pasek */
    padding: 3em 1em; /* Zmniejsz padding poziomy (1em) i zostaw pionowy (3em) */
    box-sizing: border-box; /* Upewnij się, że padding nie zwiększa szerokości poza 100% */
  }
  .comment h3 {
    font-size: 2em; /* Jeszcze trochę zmniejsz rozmiar dla bardzo wąskich widoków (np. telefony pionowo) */
    line-height: 1.2em;
    margin-bottom: 0.5em; /* Dodaj odstęp po nagłówku */
  }
  .comment p {
    font-size: 1em; /* Upewnij się, że rozmiar jest czytelny */
    line-height: 1.5em; /* Zmniejsz odstęp między wierszami (było 5em!) */
    margin-top: 0;
  }
}
@media screen and (max-height: 600px) and (orientation: landscape) {
  .comment {
    height: fit-content;
    min-height: unset;
    padding: 1.5em 1em;
  }
  .comment h3 {
    margin-top: 3em;
    font-size: 2em;
    line-height: 1.2em;
    margin-bottom: 0.2em;
  }
  .comment p {
    line-height: 1.2em;
    font-size: 1em;
  }
}

/* OPCJONALNA KOREKTA DLA NAJWĘŻSZYCH EKRANÓW (np. poniżej 450px) */
@media screen and (max-width: 450px) {
  .comment {
    padding: 2em 0.5em; /*Jeszcze mniejszy padding poziomy */
  }
  .comment h3 {
    margin-top: 4em;
    font-size: 1.5em; /* Jeszcze mniejszy rozmiar dla najwęższych widoków */
  }
}
/* ========================================= */
/* Sekcja: KROTKA OFERTA
/* ========================================= */
.small-offer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: fit-content;
  margin: 6em 0;
}
.small-offer-middle {
  flex: 0.6;
  font-family: var(--font-primary);
  text-align: center;
  line-height: 3em;
  padding: 1em;
  font-size: 1em;
}
.small-offer-middle i {
  padding: 1em 0;
  text-align: center;
}
.small-offer-left,
.small-offer-right {
  display: flex;
  justify-content: center;
  flex: 0.2;
  padding: 1em;
  margin: 1em 0;
}
.small-offer-left img,
.small-offer-right img {
  box-shadow: var(--shadow-standard);
  border-radius: 10px;
}

@media screen and (max-width: 700px) {
  .small-offer-middle {
    min-width: 200px;
  }
}
@media screen and (max-width: 1650px) {
  .small-offer {
    flex-direction: column;
  }
  .small-offer-left,
  .small-offer-right,
  .small-offer-middle {
    flex: 1 1 100%;
    width: 100%;
    max-width: 600px;
    margin: 0em auto;
  }
  .small-offer-right {
    display: flex;
  }
}
/* ========================================= */
/* Sekcja: O MNIE / Czesc o mnie opis */
/* ========================================= */

.omnie {
  height: fit-content;
  scroll-margin-top: 50px;
  font-family: var(--font-primary);
}

.omnie-naglowek {
  height: 15vh;
  text-align: center;
  align-content: center;
  font-size: 3em;
  font-weight: 1000;
}
.omnie-glowne {
  display: flex;
  flex-wrap: wrap;
  height: fit-content;
  justify-content: center;
  gap: 10em;
}

.omnie-fotka {
  display: flex;
  justify-content: center;
  align-items: center;
}
.omnie-fotka img {
  width: 400px;
  border-radius: 10px;
  box-shadow: var(--shadow-standard);
}
.omnie-opis {
  display: flex;
  padding: 2em;
  align-content: center;
  justify-content: center;
}
.omnie-opis-tekst {
  font-family: var(--font-primary);
  text-align: justify;
  width: 600px;
  padding: 0 2em;
}
.omnie-opis-tekst p {
  font-size: 1.6em;
}
.omnie-opis-tekst h3 {
  font-size: 1.5em;
}
.omnie button {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.omnie button {
  font-family: var(--font-primary);
  font-size: 1.5em;
  font-weight: 600;
  margin-top: 2em;
  width: 70%;
  height: 50px;
  border-radius: 10px;
  border: 3px solid #de3714;
  cursor: pointer;
}
.omnie button:hover {
  background-color: #ffcccc;
  border-color: darkred;
}

.omnie button:active {
  background-color: darkred;
  color: white;
  /* transform: translateY(-3px); */
}
.omnie-papiery {
  margin-top: 3em;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  height: fit-content;
  align-items: center;
}
.diplom1 {
  flex: 1;
}
.diplom2 {
  flex: 1;
}
.diplom3 {
  flex: 1;
}
.omnie-papiery img {
  max-width: 100%;
  height: auto;
  padding: 2em;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  /* ... inne poprawki ... */
  .lewy-tekst {
    /* Włącz elastyczność i zmniejsz czcionkę dla lepszego dopasowania */
    flex: 1 1 100%;
    font-size: 1em; /* Zmniejsz rozmiar czcionki na telefonie */
  }
  .omnie-papiery {
    max-width: 100%;
    height: auto;
    padding: 2em;
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 450px) {
  .omnie-glowne {
    gap: 0;
  }
  .omnie-opis-tekst {
    width: 90dvw;
  }
}

/* ========================================= */
/* Sekcja: KONSULTACJE
/* ========================================= */
.consultation {
  display: grid;
  grid-template-columns: 1fr;
  padding: 2em 1em 2em 1em;
  text-wrap: balance;
  background-color: #fefae0;
  margin: 5em 5em 0 5em;
  text-align: center;
  font-family: var(--font-primary);
  border: none;
  box-shadow: 0px 0px 12px -1px rgba(66, 68, 90, 1);
  border-radius: 10px;
}
.consultation h1 {
  padding-top: 1em;
  font-size: 3em;
}
.consultation h3 {
  font-size: 2em;
  padding-bottom: 1em;
}
.consultation p {
  line-height: 1.5em;
  font-size: 1.5em;
  font-weight: 500;
}
@media (max-width: 450px) {
  .consultation {
    padding: 0;
    width: 90%;
    margin: 0 auto;
    text-wrap: pretty;
    box-shadow: none;
  }
}
/* ========================================= */
/* Sekcja: BLOG
/* ========================================= */
/* GRID */

.blog {
  margin-top: 1em;
  padding: 5em;
  background-color: #fefae0;
}
.blog p {
  padding: 0.5em;
  font-family: var(--font-primary);
  text-align: justify;
}

.blog-beha {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  margin-bottom: 3em;
}
.blog-beha > div {
  box-shadow: var(--shadow-standard);
  border-radius: 10px;
  padding: 2em;
  background: #faedcd;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}
.blog-beha > div:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.blog-beha > div h1 {
  text-align: center;
  padding: 1em 0;
}
.blog-beha p {
  font-size: 1.2em;
  line-height: 1.3em;
}
.blog-mit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  margin-bottom: 3em;
}
.blog-mit > div {
  box-shadow: var(--shadow-standard);
  border-radius: 10px;
  padding: 2em;
  background: #ccd5ae;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}
.blog-mit > div:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.blog-mit > div h1 {
  text-align: center;
  padding: 0.5em 0;
}
.blog-mit h2,
h3 {
  text-align: center;
}
.blog-mit p {
  font-size: 1.2em;
  line-height: 1.3em;
}

/* Układ kolumn */
.blog1,
.blog4,
.blog7,
.blog10 {
  grid-column: 1/ -1;
}
/* Modal */
.blog-modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.blog-modal.active {
  display: flex;
  animation: fadeIn 0.4s ease forwards;
}

.blog-modal .blog-preview {
  width: 60vw;
  height: 60vh;
  background: #e9edc9;
  border-radius: 10px;
  padding: 2em;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  overflow-y: auto;
  animation: zoomIn 0.4s ease forwards;
  position: relative;
  font-size: 1.5em;
  line-height: 2;
}
.blog-modal .blog-preview h1 {
  text-align: center;
  margin-bottom: 1em;
}
/* przycisk zamknięcia */
.blog-modal .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2em;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
}
.blog-modal .close-btn:hover {
  color: #b30000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}

/* Responsywność */
@media (max-width: 1000px) {
  .blog {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .blog-beha h1 {
    text-align: center;
    font-size: 1.5em;
    padding: 0;
  }
  .blog-beha,
  .blog-mit {
    margin-top: 3em;
    grid-template-columns: 1fr; /* jedna kolumna */
  }
  .blog-beha > div {
    text-wrap: pretty;
    margin: auto;
    width: 90dvw;
    padding: 1em;
    gap: 0;
  }
  .blog-mit > div {
    text-wrap: pretty;
    margin: auto;
    width: 90dvw;
    padding: 1em;
    gap: 0;
  }
  .blog-modal {
    display: none !important;
  }
}
@media (max-width: 450px) {
  .blog {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .blog-beha h1 {
    text-align: center;
    font-size: 1.5em;
    padding: 0;
  }
  .blog-beha,
  .blog-mit {
    margin-top: 3em;
    grid-template-columns: 1fr; /* jedna kolumna */
  }
  .blog-beha > div {
    text-wrap: pretty;
    margin: auto;
    width: 90dvw;
    padding: 1em;
    gap: 0;
  }
  .blog-modal {
    display: none !important;
  }
}

/* ========================================= */
/* Sekcja: ROZWIJANA OFERTA - akordeon
/* ========================================= */
.main-wrapper {
  scroll-margin-top: 20px;
}
.main-wrapper h1 {
  font-size: 3em;
  font-family: var(--font-primary);
  color: #1c1c6b;
  text-align: center;
}
.wrapper {
  display: block;
  padding-top: 70px;
  justify-content: center;
}
.collapsible {
  max-width: 70vw;
  overflow: hidden;
  font-weight: 500;
  margin: auto;
}
.collapsible input {
  display: none;
}
.collapsible label {
  font-size: 2em;
  font-family: var(--font-primary);
  text-align: center;
  position: relative;
  font-weight: 600;
  /* background: #fff; */
  background-color: #faedcd;
  box-shadow:
    0 5px 11px 0 rgba(0, 0, 0, 0.1),
    0 4px 11px 0 rgba(0, 0, 0, 0.08);
  color: #1c1c6b;
  display: block;
  margin: 0 10px;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  z-index: 1;
}
.collapsible label:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 15px;
  width: 18px;
  height: 18px;
}

.colapsible-text {
  font-size: 1.5em;
  text-align: justify;
  max-height: 1px;
  overflow: hidden;
  border-radius: 4px;
  line-height: 1.4;
  position: relative;
  top: -100%;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.collapsible input:checked ~ .colapsible-text {
  max-height: 5000px;
  padding-bottom: 25px;
  /* background: #fff; */
  background-color: #fefae0;
  box-shadow:
    0 5px 11px 0 rgba(0, 0, 0, 0.1),
    0 4px 11px 0 rgba(0, 0, 0, 0.08);
  opacity: 1;
  top: 0;
}
.colapsible-text h2 {
  font-family: var(--font-primary);
  margin-bottom: 10px;
  padding: 15px 15px 0;
  color: #1c1c6b;
  text-align: center;
}
.colapsible-text p {
  padding: 0 15px;
  font-family: var(--font-primary);
}

@media (max-width: 360px) {
  #cennik h1 {
    padding: 1em 0.3em 0 0.3em;
    text-wrap: pretty;
  }
}

@media (max-width: 450px) {
  .collapsible {
    max-width: 2000px;
  }
}

/* ========================================= */
/* Sekcja: Fotografia
/* ========================================= */
.photo {
  display: flex;
  height: fit-content;
  flex-wrap: wrap;
  margin: 5em 0;
}
.photo-left {
  display: flex;
  flex: 0.4;
  justify-content: center;
  align-items: center;
  padding: 2em;
}
.photo-left img {
  display: flex;
  height: 70dvh;
  border-radius: 10px;
  box-shadow: var(--shadow-standard);
}

.photo-right {
  padding: 3em;
  flex: 0.6;
  text-align: center;
  line-height: 2em;
  font-family: var(--font-primary);
  text-wrap: balance;
}
.photo-right h1 {
  font-size: 3em;
}
.photo-right h2 {
  font-size: 2em;
  padding: 1em 0;
}
.photo-right h3 {
  margin-top: 1em;
  font-weight: 800;
  font-size: 1.5em;
}
.photo-right p {
  font-size: 20px;
}
.btn-photo {
  border-radius: 10px;
  box-shadow: var(--shadow-standard);
  border-style: none;
  background: #faedcd;
  transition: 0.5s ease all;
  width: 13em;
  height: 3em;
  margin-top: 2em;
}
.btn-photo a {
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 600;
  color: black;
  text-transform: uppercase;
}
.btn-photo:hover {
  cursor: pointer;
  scale: 1.1;
  background: #d4a373;
}
@media (max-width: 360px) {
  .photo-left {
    width: 100%;
  }
  .photo-left img {
    margin: 0 auto;
  }
  .photo-right {
    width: 100%;
    padding: 1em;
  }
  .photo-right p {
    margin-top: 1em;
  }
  .photo-right h1 {
    line-height: 1em;
  }
}
@media (max-width: 990px) {
  .photo {
    display: block;
  }
  .photo-left img {
    width: 50vw;
    height: 100%;
  }
  .photo-right h1 {
    line-height: 1em;
  }
}

/* ========================================= */
/* Sekcja: KARUZELA
/* ========================================= */

.carosuel-container {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  height: 50vh;
  margin: 5em 0;
}
.carosuel-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.card {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  width: auto;
  height: 250px;
  aspect-ratio: 4/3;
  background: rgb(120, 200, 12);
  display: flex;
  align-items: center;
  justify-content: center;
  /* border-radius: 10px; */
  margin: 0 10px;
}
.card img {
  border-radius: 20px;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 360px) {
  .carosuel-container {
    margin: 5em 0 0 0;
    height: 30dvh;
  }
}
@media screen and (max-width: 450px) {
  .card {
    height: 150px;
    aspect-ratio: 4/3;
    background: none;
    background-color: bisque;
  }
  .card img {
    width: 200px;
    height: 100%;
    aspect-ratio: unset;
    border-radius: 20px;
    object-fit: cover;
  }
}

/* ========================================= */
/* Sekcja: KONTAKT 
/* ========================================= */

.contact {
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 15em 0;
  flex-wrap: wrap;
  scroll-margin-top: 220px;
  padding: 0 1em;
}
.lewy-tekst {
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-content: center;
  font-size: 2em;
  margin: 2em 0;
  height: 100%;
  background-color: #ccd5ae;
  font-family: var(--font-primary);
}
.dane {
  padding: 1em;
  display: block;
  border-radius: 10px;
  box-shadow: var(--shadow-standard);
  margin: auto;
  text-align: center;
}
.email-link {
  cursor: pointer;
  font-size: 1em;
  color: #333;
  text-decoration: none;
}

.prawy-obraz {
  max-width: 600px;
  /* border: 3px dotted black; */
  border-radius: 10px;
  box-shadow: var(--shadow-standard);
}
.prawy-obraz img {
  width: 100%;
  border-radius: 10px;
  display: block;
  box-shadow: var(--shadow-standard);
}
@media screen and (max-width: 450px) {
  .contact {
    margin: 5em 0;
    flex-direction: column;
  }
}
/* ========================================= */
/* Sekcja: Under
/* ========================================= */

.under {
  background-color: black;
  color: white;
  height: fit-content;
  text-align: center;
  font-size: 2rem;
  padding: 2rem 15px 2rem 15px;
}

/* ========================================= */
/* Sekcja: FOOTER
/* ========================================= */

footer {
  display: flex;
  flex-wrap: wrap;
  height: 20vh;
  margin: 0;
  font-family: var(--font-primary);
  background: black;
  color: white;
  font-size: 1.5em;
}
.name {
  flex: 0.33;
  margin: auto;
  text-align: center;
}
.adres {
  flex: 0.33;
  margin: auto;
  text-align: center;
}
.websites {
  display: flex;
  flex-direction: column;
  font-size: 1em;
  flex: 0.33;
  align-items: center;
  justify-content: space-around;
}
.fb,
.ld {
  display: flex;
  justify-content: left;
  padding: 0.5em;
}
footer a {
  text-decoration: none;
  color: white;
  padding-left: 15px;
  padding-top: 5px;
}
.dokumenty_prawne {
  margin: auto auto;
  padding: 1rem;
  line-height: 3rem;
}

@media (max-width: 450px) {
  footer {
    display: flex;
    flex-direction: column;
    font-size: 1em;
    row-gap: 2em;
    height: fit-content;
  }
  .name {
    width: 100%;
    padding-top: 1em;
  }
  .adres {
    width: 100%;
  }
}
/* ========================================= */
/* Sekcja: REG
/* ========================================= */
.reg {
  padding-top: 3rem;
  background-color: black;
  text-align: center;
  color: white;
  font-family: var(--font-primary);
}
@media (max-width: 360px) {
  .reg {
    padding-top: 1em;
  }
}
/*
========================================= */
/* Sekcja: Dokumenty
/* ========================================= */
.CGV {
  margin: 2rem;
  padding: 2rem;
}
.CGV h2 {
  text-align: center;
  padding-top: 2rem;
}
.CGV h3 {
  text-align: left;
  padding: 1rem 0 1rem 0;
}
.CGV .wciecie {
  text-indent: 1rem;
}
.CGV .polityka {
  padding-bottom: 2rem;
}
