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

body {
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #f4f4f4;
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
  width: 100%;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
}

.logo img {
  width: 35%;
}

nav {
  display: flex;
  gap: 20px;
  width: 75%;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  margin: 0 auto;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #333;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  background-color: #f4f4f4;
  padding: 10px 30px;
  width: 100%;
  position: sticky;
  top: 65px;
  z-index: 999;
}

.mobile-menu a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  text-align: right;
  padding: 10px 10px;
}

@media (max-width: 800px) {
  nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu.show {
    display: flex;
  }
}

header a {
  display: flex;
  align-items: center;
  height: 40px;
}

.wsosnach-img {
  width: 100%;
  background-image: url(reszta-zdjec/tlo.jpg);
  background-repeat: no-repeat;
  background-position-y: -200px;
  height: 600px;
  background-attachment: fixed;
  background-size: cover;
}

.wsosnach-napis {
  display: flex;
  align-items: center;
  color: white;
  font-size: 3.5rem;
  margin-left: 50px;
  text-align: left;
  height: 600px;
}

.info {
  width: 70%;
  margin: 0 auto;
}
.o-nas {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}

.o-nas h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.o-nas-grupa {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 30px;
}

.o-nas-grupa .zdjecie,
.o-nas-grupa .napis {
  flex: 1 1 0;
  max-width: 50%;
  min-width: 0;
  transition: all 0.3s ease-in-out;
}

.o-nas-grupa .zdjecie img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.o-nas-grupa .napis {
  padding: 30px;
  display: flex;
  align-items: center;
  font-size: clamp(0.9rem, 2.5vw, 1.5rem);
  line-height: 1.6;
}

@media (max-width: 700px) {
  .info {
    width: 100%;
  }

  .o-nas {
    width: 100%;
    margin: 0 auto;
  }

  .o-nas-grupa {
    flex-wrap: nowrap;
    flex-direction: row;
  }

  .o-nas-grupa .zdjecie,
  .o-nas-grupa .napis {
    max-width: 50%;
  }

  .o-nas-grupa .napis {
    font-size: clamp(0.8rem, 3vw, 1.2rem);
    padding: 15px;
  }
}

.linia {
  width: 75%;
  margin: 30px auto 20px auto;
}
    .nasza-oferta {
  max-width: 100%;
  padding: 20px;
  text-align: center;
}

.nasza-oferta h2 {
  font-size: 2.5rem;
  margin: 20px;
}

.nasza-oferta-napis {
  padding: 20px;
  margin: 0 auto 30px auto;
  font-size: clamp(0.8rem, 3vw, 1.2rem);
  width: 80%;
}

.nasza-oferta-napis p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 0;
}

.nasza-oferta-zdjecie .zdjecia {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.nasza-oferta-zdjecie img {
  width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.nasza-oferta-zdjecie img:hover {
  transform: scale(1.2);
  border: 1px solid black;
  margin: 20px;
}

@media (max-width: 800px) {
  .nasza-oferta-napis p {
    font-size: 1rem;
  }

  .nasza-oferta-zdjecie img {
    width: 70%;
    height: auto;
  }
}

.parking {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.parking h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.parking-boxes {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.parking-box {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  flex: 1 1 0;
  min-width: 150px;
  max-width: 400px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.parking-box h3 {
  border: 1px solid black;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.parking-box p {
  font-size: 1rem;
  color: #333;
}

.parking img {
  max-width: 70%;
  height: auto;
  margin-top: 30px;
  border-radius: 10px;
}

@media (max-width: 800px) {
  .parking-boxes {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .parking-box {
    flex: 0 0 auto;
    width: 45%;
  }
}

.jadalnia {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.jadalnia h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.jadalnia-content {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.jadalnia-napis {
  flex: 1;
  text-align: right;
  font-size: 1.3rem;
  color: #333;
}

.jadalnia-zdjecia {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.jadalnia-zdjecia img {
  width: 48%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.jadalnia-zdjecia img:hover {
  transform: scale(1.2);
  transition: 1s ease-in-out;
  border: 1px solid black;
  margin: 10px 0;
}

@media (max-width: 800px) {
  .jadalnia-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .jadalnia-napis {
    text-align: center;
    margin-bottom: 20px;
  }

  .jadalnia-zdjecia {
    flex-direction: column;
    width: 100%;
  }

  .jadalnia-zdjecia img {
    width: 80%;
    margin: 0 auto;
  }
}

.atrakcje {
  max-width: 1200px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.atrakcje h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.atrakcje-content {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.atrakcje-napis {
  flex: 1;
  text-align: left;
  font-size: 1.3rem;
  color: #333;
}

.atrakcje-zdjecia {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.atrakcje-zdjecia img {
  width: 48%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.atrakcje-zdjecia img:hover {
  transform: scale(1.2);
  transition: 1s ease-in-out;
  border: 1px solid black;
  margin: 10px 0;
}

@media (max-width: 768px) {
  .atrakcje-content {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }

  .atrakcje-napis {
    text-align: center;
    margin-top: 20px;
  }

  .atrakcje-zdjecia {
    flex-direction: column;
    width: 100%;
  }

  .atrakcje-zdjecia img {
    width: 80%;
    margin: 0 auto;
  }
}

.footer {
  background-color: #1c1c1c;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px;
  flex-wrap: nowrap;
  height: auto;
}

.footer-left,
.footer-right {
  flex: 1 1 0;
  min-width: 200px;
  max-width: 50%;
  padding: 10px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 5vw, 100px);
  text-align: center;
}

.footer-icons {
  display: flex;
  gap: clamp(20px, 5vw, 100px);
  justify-content: center;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.footer-icons img {
  width: clamp(30px, 6vw, 80px);
  height: auto;
}

.footer-left p {
  margin: 0;
  font-size: clamp(12px, 2vw, 16px);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(20px, 5vw, 40px);
}

.footer-right img {
  max-width: clamp(100px, 15vw, 150px);
  height: auto;
}

.footer-divider {
  width: 1px;
  background-color: #555;
  height: clamp(150px, 30vw, 250px);
  margin: 0 clamp(10px, 4vw, 30px);
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
  overflow-x: auto;
}

@media (max-width: 500px) {
  .footer {
    padding: 20px 10px;
  }
}
.rezerw {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: blue;
  text-align: center;
  color: white;
  padding: 5px;
  border-radius: 10px;
  font-size: 1rem;
  animation: miganie 1.8s ease-in-out infinite;
  transition: transform 0.3s ease;

}
@keyframes miganie {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}
.rezerw:hover {
  transform: scale(1.1);
  transition: 0.3s ease-in;
}

header a {
  display: flex;
  align-items: center;
  height: 40px;
}