* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
   font-family: "Courgette", cursive;
  font-weight: 400;
  font-style: normal;
}
.courgette-regular {
  font-family: "Courgette", cursive;
  font-weight: 400;
  font-style: normal;
}


body {
  background-color: #f4f4f4;
  color: #333;
}

/* HEADER i NAV */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 1000;
}

.menu_gl { 
  display: flex;
  flex-direction: row;
  height: clamp(60px, 8vw, 100px);
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  z-index: 1000; 
  font-weight: 500;
  background: rgba(38, 146, 255, 0.5); /* Twój kolor z przezroczystością */
  backdrop-filter: blur(5px);          /* efekt rozmycia tła */
  -webkit-backdrop-filter: blur(10px);  /* Safari */
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* delikatna linia */
  z-index: 1000; 
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* cień pod spodem */ /* miękki cień */
}

.rightSection {
  display: flex;
  align-items: center;
  padding-left: clamp(10px, 7vw, 80px);
  padding-right: clamp(5px, 7vw, 80px);
  
}

.logo {
  height: clamp(60px, 8vw, 100px);
}

.midleSection {
  font-size: clamp(10px, 4vw, 22px);
  flex: 1;
  height: clamp(60px, 8vw, 100px);
  display: flex;
  align-items: center;  
  justify-content: center;
  padding-right: 10px;
}

.el_menu {
  /*background-color: #7fbfff;*/
  font-family: "Courgette", cursive;
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.el_menu a:link, .el_menu a:visited {
  color: #000000; /* złoty */
  text-decoration: none;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  transition: background-color 0.5s ease;
}

.el_menu a:hover {
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;

}


/* ODSTEP DLA NAGŁÓWKA */

body {
  padding-top: clamp(50px, 7vw, 100px);
}

/* RESZTA STYLI */

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

nav a {
  color: white;
  text-decoration: none;
}

.hero {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: auto;
  display: block;
}
.zdj_gl {
  position: relative;
}

.zdj_gl img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
  filter: brightness(75%); /* lekko przyciemnia obraz dla lepszej czytelności tekstu */
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: clamp(18px, 4vw, 48px);
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
  width: 90%;
  max-width: 800px;
  text-align: center;
  line-height: 1.3;
}
.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.section p {
  margin: 0 auto 20px auto;
  line-height: 1.8;
  font-size: 1rem;
  text-align: justify;
}


.section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}
.about-section {
  padding: 40px 20px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.about-content .text {
  flex: 1 1 400px;
  max-width: 600px;
}

.about-content .image {
  flex: 1 1 400px;
}

.about-content .image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cabins {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center; /* To centrowanie kolumn */
}

.cabin {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 100%;
  margin: 0 auto; /* To centrowanie zawartości kolumny */
}

.cabin img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.gallery-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 10px;
  }

  .gallery-container {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    scroll-behavior: smooth;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
  }

  .gallery-container::-webkit-scrollbar {
    display: none;
  }

  .gallery-container img {
    width: 100px;
    max-height: 150px;
    border-radius: 8px;
    scroll-snap-align: center;
    object-fit: cover;
  }
  .gallery-container :hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    filter: brightness(65%);
  }

  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(38, 146, 255, 0.5);
    color: white;
    border: none;
    padding: 10px 12px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
  }

  .arrow.left {
    left: 5px;
  }

  .arrow.right {
    right: 5px;
  }
 
.cabin .info {
  padding: 20px;
}


.reviews, .contact {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-top: 30px;
}

.reviews blockquote {
  margin: 20px;
  font-style: italic;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background: rgba(38, 146, 255, 0.5);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  background: #17252a;
  color: white;
  padding: 20px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}

.footer-section {
  flex: 1;
  padding: 10px;
}

.footer-section.left {
  text-align: left;
}

.footer-section.center {
  text-align: center;
}

.footer-section.right {
  text-align: right;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.highlight {
  color: #ffffff;
}

.muted {
  color: #bbbbbb;
}

.muted a {
  color: #bbbbbb;
}

/* Responsywność */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 10px;
  }

  .footer-section {
    text-align: center !important;
  }
}


.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  flex-direction: column;
}

.modal.hidden {
  display: none;
}

.modal img {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
}

.modal .close-btn {
  color: white;
  font-size: 2rem;
  position: absolute;
  top: 20px;
  right: 30px;
  cursor: pointer;
}

.modal-nav {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.modal-nav button {
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

#galeria .gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

 #galeria .gallery-container img {
  
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.reviews-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.review-card {
  background: #ebebeb;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-style: italic;
}

.review-card p {
  margin-bottom: 1em;
  font-size: 1.1em;
  color: #333;
}

.review-card footer {
  text-align: right;
  font-weight: bold;
  font-style: normal;
  color: #555;
  background-color: #ebebeb;
  
}

.more-reviews {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ffffff; /* opcjonalnie delikatna linia oddzielająca */
  font-size: 1.1em;
}

.more-reviews a {
  color: #0073e6;
  text-decoration: none;
  font-weight: 600;
}

.more-reviews a:hover {
  text-decoration: underline;
}

.reservation {
  border: 1px solid #ccc;
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  background-color: #f8f8f8;
}
.fc-disabled-date {
  background-color: #eee !important;
  pointer-events: none;
  color: #999 !important;
}
.zdj_atrakcje {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  box-sizing: border-box;
}

.zdj_atrakcje img {
  flex: 1 1 calc(25% - 10px);
  max-width: 25% ;
  height: auto;
  object-fit: cover;
  box-sizing: border-box;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
  .zdj_atrakcje img {
    flex: 1 1 calc(33.33% - 10px);
    max-width: calc(33.33% - 10px);
  }
}

@media (max-width: 768px) {
  .zdj_atrakcje img {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  .zdj_atrakcje img {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.contact-card {
  flex: 1 1 200px;
  max-width: 250px;
  padding: 1rem;
  background-color: #f4f4f4;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-card i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #1e88e5;
}

.contact-card a {
  color: inherit;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}
.centered {
  text-align: center !important;
}
.centered-list {
  list-style-position: inside;
  text-align: center;
  padding: 0;
  margin: 0 auto;
}
#galeria, #kontakt, #onas, #rezerwuj{
  scroll-margin-top: 100px ;
}
