@import url('https://fonts.googleapis.com/css2?family=Karla:wght@400;700&display=swap');
body {
    margin: 0;
    font-family: 'Karla', sans-serif;
    background-color: #ffffff;
    color: #000000;
    padding: 10px;
    line-height: 1.6;
}



/* Dla treści, żeby nie zasłaniało */
body {
  padding-top: 80px; /* wysokość headera */
}




html {
    scroll-behavior: smooth;
}


@media (max-width: 767px) {
  header {
    transition: transform 0.6s ease-in-out; /* dłuższy czas animacji */
  }
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #d7ebe5, #b6d4c8);
    color: #1b3a2a;
    padding: 15px 20px;
    height: 100px;
    border-radius: 0 0 15px 15px;
    gap: 50px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* tylko cień, bez ramki */
    font-weight: 600;
    font-size: 1.15rem;
}

header .logo img {
    height: 130px;
    filter: drop-shadow(0 0 8px #1b3a2a);
    transition: transform 0.3s ease;
}

header .logo img:hover {
    transform: scale(1.05);
}

header nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 30px;
}

header nav ul li a {
    position: relative;
    color: #1b3a2a;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 8px 12px;
    transition: color 0.3s ease;
    display: inline-block;
    font-smooth: always;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, #1b3a2a 0%, #4c6b5c 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease-in-out;
}

header nav ul li a:hover {
    color: #0c2e1c;
}

header nav ul li a:hover::after {
    transform: scaleX(1);
}


header nav {
    max-width: 600px;
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    header nav ul li a {
        font-weight: 600;
        font-size: 1.1em;
    }
}

.nav-links li a {
  font-size: 1em;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    gap: 30px;
    flex-wrap: wrap;
}



.slideshow {
    position: relative;
    width: 100%;
    height: 900px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: opacity 1s ease;
    opacity: 0;
}

.slide:nth-child(1) {
    opacity: 1;
}

.caption {
    text-align: center;
    background: none; /* Usunięcie tła */
    padding: 20px;
    border-radius: 15px;
    max-width: 80%;
    color: #ffffff;
}


.caption h1 {
    font-family: 'Lora', serif;
    font-size: 3.2em; /* Większa i bardziej wyrazista */
    font-weight: 700;
}

.caption p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6em;
}
.button-transparent-white {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.button-transparent-white:hover {
  background-color: rgba(0, 255, 0, 0.15); /* Jasnozielony */
  cursor: pointer;
}

@keyframes slide-animation {
    0% { opacity: 1; }
    25% { opacity: 0; }
    50% { opacity: 0; }
    75% { opacity: 0; }
    100% { opacity: 1; }
}

.about {
    max-width: 70%;
    margin: 50px auto;
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 20px;
    border: 2px solid #2e6b3d;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about h1 {
    font-size: 3em;
    color: #05330f;
    margin-bottom: 25px;
    font-weight: bold;
}

.about p {
    font-size: 1.3em;
    color: #1a1a1a;
    line-height: 1.8;
    margin-bottom: 30px;
}
.about {
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery { display: flex; justify-content: space-around; gap: 15px; flex-wrap: wrap; margin-top: 30px; } .gallery img { width: 28%; height: auto; border-radius: 12px; box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3); transition: transform 0.4s ease, box-shadow 0.4s ease; }


.gallery img:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .about {
        max-width: 85%;
        padding: 30px;
    }

    .gallery img {
        width: 45%;
    }
}
.about, .gallery img, .map, .footer-container {
    max-width: 100%;
}


@media (max-width: 480px) {
    .gallery img {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .element {
        width: 100%; /* Dopasowanie do ekranu telefonu */
        padding: 15px; /* Mniejszy padding, żeby było schludniej */
        text-align: center; /* Wyśrodkowanie tekstu */
    }
}

.wieczory-klimat {
  text-align: center;
  padding: 2rem;
}

.video-wrapper {
  max-width: 1200px;
  margin: 2rem auto 0;
}

.video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

@media (max-width: 600px) {
  .wieczory-klimat h2 {
    font-size: 1.4rem;
  }
  .intro-text {
    font-size: 0.95rem;
  }
}

.klimat-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.klimat-foto {
  flex: 1 1 300px;
  max-width: 500px;
}

.klimat-foto img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.klimat-foto img:hover {
  transform: scale(1.02);
}

.foto-caption {
  margin-top: 10px;
  font-style: italic;
  color: #555;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
  .klimat-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .wieczory-klimat h2 {
    font-size: 1.5rem;
  }

  .wieczory-klimat .intro-text {
    font-size: 1rem;
    padding: 0 10px;
  }
}

.map {
    text-align: center;
    padding: 40px 20px;
    background: none; /* Usunięcie zielonego tła */
}

.address-box {
    text-align: center;
    font-size: 1.4em;
    font-weight: bold;
    color: #05330f;
    padding: 10px;
    margin-bottom: 20px;
    border: none; /* Usunięcie ramki wokół adresu */
    box-shadow: none; /* Jeśli była cieniem, usuń */
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none; /* Usunięcie ramki wokół mapy */
}


.kontakt-footer {
  background-color: #dceee7;
  color: #204b34;
  text-align: center;
  padding: 3rem 1rem;
  font-family: 'Arial', sans-serif;
}

.kontakt-content {
  max-width: 800px;
  margin: 0 auto;
}

.kontakt-footer .logo {
  width: 120px;
  margin-bottom: 1rem;
  
}

.contact-info p,
.footer-links,
.footer-copy {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.footer-links a {
  color: #1a5e34;
  text-decoration: underline;
  margin: 0 0.4rem;
}

.footer-socials img {
  width: 28px;
  margin: 0 0.5rem;
  filter: none; /* zachowaj oryginalne kolory lub użyj zielonych ikon */
}

.footer-copy {
  margin-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.8;
}
a {
    text-decoration: none; /* Usuwa podkreślenie */
    color: rgb(0, 0, 0); /* Zmienia kolor tekstu na biały lub dowolny inny */
}

a:hover {
    color: #ccc; /* Możesz dodać efekt zmiany koloru przy najechaniu */
}



@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

#scrollToTop {
    display: none; /* Ukryty domyślnie */
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#scrollToTop:hover {
    background-color: #05330f;
}

.counters {
    background: #eef6f3;
    padding: 60px 20px;
    text-align: center;
}

.counters h2 {
    font-size: 2.2rem;
    color: #2a4b43;
    margin-bottom: 40px;
}

.counters-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.counter-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    width: 180px;
    transition: transform 0.3s ease;
}

.counter-box:hover {
    transform: scale(1.05);
}

.counter {
    font-size: 2.8rem;
    color: #1e6154;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}
.section-alt {
    background-color: #eef6f3;
}
.section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-in-out;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.burger {
    position: absolute;
    top: 50%;
    right: 70px; /* Zwiększona wartość przesunięcia w lewo */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background-color: transparent;
    padding: 10px;
    border: none;
    z-index: 1002;
}



.burger div {
    width: 30px;
    height: 4px;
    background-color: #2a4b43;
    transition: all 0.3s ease;
}

/* Animacja zmiany ikony */
.burger.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active div:nth-child(2) {
    opacity: 0;
}

.burger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
.burger {
    display: none; /* Domyślnie ukryty */
}

/* Pokazujemy burger menu tylko na telefonie */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }
}


/* Na dużych ekranach menu jest widoczne */
@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
        justify-content: space-around;
    }
}

/* Na telefonach menu jest ukryte domyślnie */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 10px; /* Drobne przesunięcie, aby było czytelne */
        width: 90%; /* Zmniejszenie szerokości */
        background-color: white;
        padding: 10px; /* Zmniejszony padding */
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
    }

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001; /* Nagłówek zawsze na samej górze */
}


/* Po kliknięciu burgera */
.nav-links.show {
        display: flex;
        opacity: 1;
    }


    /* Styl dla burgera */
    .burger {
        display: flex;
    }
}



@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
        justify-content: space-around;
    }
    
  .nav-links a {
        font-size: 1.1em; /* Nieco mniejsze */
        padding: 8px 0;
    }
}

    .nav-links a:hover {
        color: #05330f;
        transform: scale(1.1);
    }
.nav-links li {
    margin: 10px; /* Dodaje odstępy między linkami */
}


  
    header nav ul li {
      margin: 10px 0;
    }
  
  @media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }
}
@media (max-width: 600px) {
    .about {
        padding: 20px;
    }
}
@media (max-width: 600px) {
    h1 {
        font-size: 1.8em;
    }
    h2 {
        font-size: 1.5em;
    }
}

html, body {
    margin: 0;
    padding: 0;
    background-color: #eef6f3;
}

.about,
.wieczory-klimat,
.counters,
.kontakt-footer,
.map,
.section-alt {
    background-color: #eef6f3;
    margin: 0;
    padding-top: 40px;
    padding-bottom: 40px;
}
html, body {
    margin: 0;
    padding: 0;
    background-color: #eef6f3;
}

.about,
.wieczory-klimat,
.counters,
.kontakt-footer,
.map,
.section-alt {
    background-color: #eef6f3;
    margin: 0;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* --- OGÓLNY UKŁAD HEADERA --- */
.main-header {
  background: linear-gradient(135deg, #eef6f3, #d7ebe5);
  position:sticky;           /* jeśli chcesz przyklejony do góry */
  top:0; z-index:999;
}

.header-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;                  /* odstęp m‑i‐ logo/przycisk/burger */
  padding:0.5rem 1rem;
}

/* LOGO: niech obraz nie rozpycha headera */
.logo img { height:48px; }

/* --- PRZYCISK REZERWACJI --- */
.btn-reserv {
  padding:0.55rem 1.4rem;
  font-weight:600;
  border:2px solid #ffffff;
  border-radius:9999px;      /* pełne zaokrąglenie = „pigułka” */
  background:#ffffff;
  color:#1c1c1c;
  text-decoration:none;
  transition:all .25s;
}
.btn-reserv:hover,
.btn-reserv:focus {
  background:transparent;
  color:#000000;
}

/* --- BURGER --- */
.burger {
  display:none;              /* schowany na desktopie */
  flex-direction:column;
  gap:4px;
  background:transparent;
  border:0;
  cursor:pointer;
}
.burger span {
  width:25px; height:3px;
  background:#fff;
  transition:.3s;
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width:768px) {
  /* burger widoczny */
  .burger { display:flex; }

  /* przycisk i logo zostają w wierszu, menu rozwijane */
  .nav-links {
    position:absolute;
    top:100%; left:0; right:0;
    background:#1c1c1c;
    flex-direction:column;
    align-items:center;
    gap:1rem; padding:1rem 0;
    display:none;            /* pokazujesz .show w JS tak jak masz */
  }
  .nav-links a { font-size:1.1rem; }

  /* (opcjonalnie) lekko zmniejsz przycisk na bardzo wąskich ekranach */
  @media (max-width:420px) {
    .btn-reserv { padding:0.45rem 1.1rem; font-size:.9rem; }
  }
}

