@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 10vh; /* Dodajemy padding-top równy wysokości nagłówka */
}


.price-list {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 40px;
    background-color: #fff;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto; /* Dodajemy marginesy, aby odsunąć ramkę od góry i dołu, oraz wyśrodkować ją */
    text-align: left; /* Przywracamy wyrównanie tekstu wewnątrz ramki do lewej, jeśli tego potrzebujesz */
    width: 50%; /* Dodaj szerokość, jeśli chcesz kontrolować szerokość ramki */
}
h3 {
    padding: 10px;
}
h2 {
    color: #333;
    margin-top: 0;
    text-align: center; /* Wyśrodkowanie nagłówka wewnątrz ramki */
    line-height: 1.4; /* Dostosowanie odstępu w nagłówku */
    padding: 10px;
}
p {
    padding: 10px;
    margin-bottom: 15px; /* Zwiększamy margines dolny dla paragrafów */
    line-height: 1.6; /* Zwiększenie odstępu między wierszami w paragrafach */
    text-align: center; /* Wyśrodkowanie tekstu w paragrafach */
}
.prices-table {
    width: 95%;
    border-collapse: collapse;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}
.prices-table th, .prices-table td {
    border: 1px solid #ddd;
    padding: 12px; /* Zwiększamy padding w komórkach */
    text-align: center; /* Wyśrodkowujemy tekst */
    line-height: 1.6; /* Zwiększamy odstęp między wierszami tekstu w komórce */
}
.prices-table th {
    background-color: #f0f0f0;
    font-weight: bold; /* Możesz też pogrubić nagłówki */
}
.extra-charges {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}
.important {
    font-weight: bold;
    color: #d35400;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed; /* Zmieniamy na fixed, aby było przyklejone */
    top: 0;
    left: 0;
    width: 100%;
    height: 10vh;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    z-index: 90;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #007bff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    border: 0;
    background: transparent;
    padding: 10px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: transform 0.3s ease-in-out;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}


/* Style dla mniejszych ekranów */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 60px; /* Wysokość nagłówka */
        left: 0;
        background-color: rgba(0, 0, 0, 0.9);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }
}
@media (max-width: 768px) {
    .menu ul {
        display: none;
        position: fixed; /* Абсолютное позиционирование для мобильного меню */
        top: 10vh; /* Под хедером */
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9); /* Темный фон для мобильного меню */
        flex-direction: column; /* Вертикальное расположение пунктов меню */
        align-items: flex-start; /* Выравнивание по левому краю */
        padding: 20px;
        box-sizing: border-box;
        height: 90vh;
        z-index: 100;
    }
    .menu.active ul {
        display: flex;
        transform: translateX(0);
    }
    .menu ul li {
        margin: 20px 0; /* Увеличенное расстояние между пунктами меню */
    }
    .menu ul li a{
        font-size: 1.2em;
    }
    header {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .logo{
        color: #000;
    }
    .prices-table {
        width: 95%;
        border-collapse: collapse;
        margin-bottom: 2px;
        margin-left: auto;
        margin-right: auto;
    }
    .price-list {
        border: 1px solid #ccc;
        border-radius: 8px;
        padding: 2px;
        background-color: #fff;
        box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
        margin: 0px auto;
        text-align: left; 
        width: 97%; 
    }

    .extra-charges  {
        margin-top: 20px;
        border-top: 1px solid #eee;
        padding-top: 15px;
        font-size: small;
    }
    .extra-charges li  {
        margin-top: 20px;
        margin-left: 40px;
        margin-right: 20px;
        font-size: small;
    }
    .extra-charges h3{
        font-size: 15px;
        margin-left: 5px;
    }


}

.napis {
    margin-top: 10vh;
}

.iframe-crop {
    max-width: 100%;
    overflow: hidden;
    height: 1500px; 
    position: relative;
    border-bottom: 1px  #020202;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .iframe {
    position: relative;
    padding-bottom: 75%; 
    height: 0;
    max-width: 100%;
  }
  
  .iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  
  @media (max-width: 600px) {
    .iframe-crop {
      height: 150vw; 
    }
  
    .iframe {
      padding-bottom: 100%; 
    }
  
  }

  footer {
    background-color: #f8f9fa;
    padding: 20px;
    margin-top: auto;
    border-top: 1px solid #ddd;
   margin-top: 10px;
    text-align: center; 
    line-height: 1.6; 
}
