/* styl_updated.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f0f6ff;
    color: #223A5E;
  }
  
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #c8f2ff  ;
    padding: 1rem;
    position: relative;
  }
  
  .logo {
    text-align: center;
    height: 60px;
  }
  
  .tytul {
    flex: 1;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .menu-toggle {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
  }
  
  .bar {
    height: 4px;
    background: #223A5E;
    border-radius: 2px;
    transition: 0.4s;
  }
  
  .menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 10px;
    background: #fff;
    border: 1px solid #ccc;
    z-index: 999;
    padding: 10px;
  }
  
  .menu a {
    margin: 0.5rem 0;
    text-decoration: none;
    color: #223A5E;
  }
  
  .menu.show {
    display: flex;
  }
  
  .slider {
    width: 100%;
    height: 300px;
    overflow: hidden;
  }
  
  .slider img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    animation: fade 1s ease-in-out;
  }
  
  @keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .wydarzenia {
    padding: 2rem;
    text-align: center;
  }
  
  .zdjecia {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    margin-top: 1rem;
    padding: 1rem 0;
  }
  
  .zdjecia img,
  .galeria-zdjecia img {
    height: auto;
    width: 100%;
    max-width: 300px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  
  .zdjecia img:hover,
  .galeria-zdjecia img:hover {
    transform: scale(1.05);
  }
  
  section.hidden {
    display: none;
    text-align: center;
  }
  
  #galeria img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    margin: 5px;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  #galeria img:hover {
    transform: scale(1.1);
  }
  
  #kontakt {
    text-align: center;
  }
  
  #lightbox {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
    z-index: 9999;
    flex-direction: row;
  }
  
  #lightbox img {
    max-width: 90%;
    max-height: 90%;
    border: 5px solid white;
    border-radius: 10px;
  }
  
  #lightbox .prev,
  #lightbox .next {
    color: white;
    font-size: 2rem;
    cursor: pointer;
    user-select: none;
    padding: 1rem;
  } 
 table , tr, td , tbody,thead{
    border: 1px solid #223A5E;
    text-align: center;
  }
