/* ================= OGÓLNE ================= */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    color: #222;
    display: flex;
    flex-direction: column;
  }
  
  main {
    flex: 1;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }
  
  /* ================= HEADER ================= */
  header {
    position: relative;
    top: 0;
    z-index: 100;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0 0 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  header h1 {
    margin: 0;
  }
  
/* ================= LOGO ================= */
.logo-full {
    display: block;
    width: 100%;            /* wypełnia szerokość kontenera/nagłówka */
    max-width: 1200px;      /* maksymalna szerokość, żeby nie było gigantyczne */
    height: auto;           /* zachowuje proporcje wysokości */
    max-height: 180px;      /* ogranicza maksymalną wysokość */
    margin: 0 auto 20px auto;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    object-fit: contain;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.logo-full:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* ================= RESPONSYWNOŚĆ ================= */
@media (max-width: 1200px) {
    .logo-full {
        max-height: 130px;   /* dostosowanie wysokości do mniejszych ekranów */
    }
}

@media (max-width: 900px) {
    .logo-full {
        max-height: 120px;
    }
}

@media (max-width: 600px) {
    .logo-full {
        max-height: 90px;
        border-radius: 12px;
    }
}

  /* ================= MENU ================= */
  .menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
  }
  
  .menu-item {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #6a5af9, #3b2fd8);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: skewX(-25deg);
    transition: all 0.4s ease;
  }
  
  .menu-item:hover::before {
    left: 125%;
  }
  
  .menu-item:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 15px rgba(0,0,0,0.25);
  }
  
  /* ================= TABS - CENNIK ================= */
  .tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    justify-content: center;
  }
  
  .tab-button {
    padding: 12px 25px;
    border: none;
    border-radius: 15px;
    background: linear-gradient(135deg, #6a5af9, #3b2fd8);
    color: white;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  
  .tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: skewX(-25deg);
    transition: all 0.5s ease;
  }
  
  .tab-button:hover::before {
    left: 125%;
  }
  
  .tab-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 20px rgba(0,0,0,0.3);
  }
  
  .tab-button.active {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 18px rgba(0,0,0,0.25);
  }
  
  /* ================= TAB CONTENT ================= */
  .tab-content {
    border-radius: 12px;
    background-color: #eef0ff;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
  }
  
  .tab-content div {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    margin-bottom: 10px;
    background-color: #f8f9ff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  /* ================= GALERIA ================= */
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
  }
  
  .gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  
  .gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
  }
  
  /* ================= KONTAKT ================= */
  .contact-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .contact-info {
    flex: 1 1 300px;
  }
  
  .mapa {
    flex: 2 1 400px;
  }
  
  .mapa iframe {
    width: 100%;
    height: 300px;
    border-radius: 8px;
  }
  
  /* ================= FOOTER ================= */
  footer {
    text-align: center;
    padding: 20px;
    background-color: #f5f7ff;
    font-weight: 500;
  }
  
  /* ================= LIGHTBOX ================= */
  .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    justify-content: center;
    align-items: center;
    z-index: 999;
  }
  .lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
  }
  .lightbox .close {
    position: absolute;
    top: 18px;
    right: 28px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
  }
  
  /* ================= MEDIA QUERIES ================= */
  @media (max-width: 700px) {
    nav {
      display: none;
      flex-direction: column;
      gap: 10px;
    }
    #menu-btn {
      display: block;
    }
  }
  
  #menu-btn {
    display: none !important;
  }
  
  @media (max-width: 700px) {
    #menu-btn {
      display: block !important;
    }
  }
ul li {
  margin-bottom: 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
}

ul li i {
  margin-right: 8px;
  color: #d63384; /* np. różowy akcent */
}