    
    @font-face {
    font-family: 'Sora';
    src: url('/fonts/Sora-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Sora';
    src: url('/fonts/Sora-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Sora';
    src: url('/fonts/Sora-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* Dodaj pozostałe warianty czcionki w zależności od potrzeb */

@font-face {
    font-family: 'Sora';
    src: url('/fonts/Sora-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Sora';
    src: url('/fonts/Sora-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

    
    body {
    font-family: 'Sora', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: bold;
}

p {
    font-family: 'Sora', sans-serif;
    font-weight: normal;
}

    body {
         font-family: 'Sora', sans-serif;
        background: rgb(106,199,255);
        background: radial-gradient(circle, #3173bd 0%, rgb(49 115 189) 100%);
        color: #f0f0f0;
        margin: 0;
        padding: 0;
    }

      header {
        position: sticky;
        top: 0;
        background-color: #3173bd;
        color: #f0f0f0;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
            height: 60px;
        z-index: 1000;
        box-shadow: 0 2px 5px #24529f;
    }

        header .logo {
            display: flex;
            align-items: center;
        }

        header .logo img {
            height: 50px;
            vertical-align: middle;
        }

        .menu {
            display: flex;
            justify-content: center;
        }

       .menu a {
        color: #f0f0f0;
        text-decoration: none;
        margin: 0 15px;
        padding: 10px 20px;
        background-color: rgba(36,82,159,1);
        border-radius: 5px;
        transition: background-color 0.3s ease;
        margin-top:2px;
        margin-bottom:2px;
    }

        .menu a:hover {
            background-color: #5577cc;
        }

        .menu-toggle {
            display: none;
        }
         .offcanvas-menu {
                display: none; 
            }

        @media (max-width: 768px) {
            .menu {
                display: none;
            }

            .menu-toggle {
                display: block;
                font-size: 2rem;
                cursor: pointer;
            }

            .offcanvas-menu {
                display: flex;
                position: fixed;
                top: 0;
                right: -5px;
                height: 100%;
                width: 50%;
                background-color: #3173bd;
                color: #f0f0f0;
               box-shadow: -5px 0 1px #3173bd;
                z-index: 10000;
                       padding: 20px 20px 40px 20px;
                transform: translateX(100%);
                transition: transform 0.3s ease;
                flex-direction: column;
                        overflow: scroll;
                        
                        
            }

            .offcanvas-menu.active {
                transform: translateX(0);
            }

            .offcanvas-close {
                font-size: 2rem;
                cursor: pointer;
                margin-bottom: 20px;
            }

            .offcanvas-menu a {
                display: block;
                margin-bottom: 20px;
                font-size: 0.9rem;
                color: #f0f0f0;
                text-decoration: none;
            }
        }

       .slider {
    position: relative;
    max-width: 100%;
    height: 510px;
    margin-bottom: 0px;
    overflow: hidden;
}
.slider-text {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);

    color: #ffffff9e;
    padding: 2px 6px;
    font-size: 10px;
    border-radius: 5px;
    white-space: nowrap;
}

.slider .slide {
    display: none;
    position: relative;
    height: 100%;
}

.slider .slide.active {
    display: block;
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
      box-shadow: -5px 0 1px #3173bd;
}

.overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 15px;
    border-radius: 10px;
}

.overlay h1 {
    margin: 0;
    font-size: 2rem;
}

.overlay p {
    margin: 5px 0 0;
    font-size: 1.2rem;
}


        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
          padding: 60px 20px 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
             background-color: white;
                 border-radius: 20px;
                 box-shadow: 0 2px 5px #ecf0f1;
                 border:0.5px solid #ecf0f1;
            
        }

.grid-item {
    background-color: #3173bd;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    box-shadow: 0 4px 10px rgb(36 82 159);
    color: #d3e8f9;
}

        .grid-item:hover {
            transform: translateY(-10px);
        }

           .filter-menu {
            text-align: center;
            margin-bottom: 2px;
            display: flex;
            overflow: auto;
            padding: 25px;
            justify-content: center;
        }

        .filter-menu a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            padding: 10px 20px;
            background-color: #3173bd;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .filter-menu a.active {
            background-color: #5577cc;
        }

/* Nowy układ Masonry dla galerii */
.gallery-grid {
    column-count: 4; /* Liczba kolumn */
    column-gap: 1em; /* Odstęp między kolumnami */
    margin: 1em;
}

.gallery-item {
    break-inside: avoid; /* Unikaj łamania wewnątrz elementów */
    margin-bottom: 1em; /* Odstęp między elementami */
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    border:0.5px solid #f1f1f1;
}
@media (max-width: 1200px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        column-count: 1;
    }
}



        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 10px;
        }

        .lightbox.active {
            display: flex;
        }

        .contact-button {
            background-color: #6699ff;
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.5rem;
            display: inline-block;
            margin-top: 20px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .contact-button:hover {
            background-color: #5577cc;
        }

   footer {
    text-align: center;
    padding: 20px;
    background-color: #3173bd;
    color: #d3e8f9;
    margin-top: 40px;
}
        /* Sekcja Angebote */
.angebote-section {
    padding: 40px;
    background-color: white;
    color: #f0f0f0;
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 20px;
}

.angebote-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #6699ff;
}

.angebote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.angebote-item {
    background-color: #3173bd;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px #24529f;
    transition: transform 0.3s ease;
    text-align: left;
}

.angebote-item:hover {
    transform: translateY(-10px);
}

.angebote-item h3 {
    color: #f1f1f1;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.angebote-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d3e8f9;
}
/* Sekcja Kontakt */
.contact-section {
    padding: 40px;
    background-color: #24529f;
    color: #f0f0f0;
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
    border-radius: 20px;
}

.contact-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #6699ff;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #d3e8f9;
    border: none;
    border-radius: 5px;
    color: #24529f;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.contact-button {
    background-color: rgb(73 175 243);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    border-color: #d3e8f9;
    font-size: 1.5rem;
    display: inline-block;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #5577cc;
}
.gallery-container{
        padding: 20px;
    background-color: white;
    color: #f0f0f0;
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 20px;
}
.image-slider {
    position: relative;
    height: 200px; /* Możesz dostosować wysokość */
    overflow: hidden;
    border-radius: 10px;
}

.image-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Submenu Styling */
.submenu {
    position: relative;
    display: flex;
}

.submenu-content {
    display: none;
    position: absolute;
    min-width: 200px;
    z-index: 1;
}

.submenu-content a {
    color: #f0f0f0;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.submenu-content a:hover {
    background-color: #5577cc;
}

.submenu:hover .submenu-content {
    display: block;
}
.offcanvas-submenu-content {
    display: none;
    font-size: 0.6rem!important;
    padding-left: 20px;
}

.offcanvas-submenu:hover .offcanvas-submenu-content {
    display: block;
}
.submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.submenu-icon {
    font-size: 12px;
    transition: transform 0.3s;
}

.submenu-open .submenu-icon {
    transform: rotate(-180deg);
}

.submenu-open .offcanvas-submenu-content {
    display: block;
    
}

.full-text {
    display: none;
}

a.read-more {
    color: rgb(73 175 243);
    cursor: pointer;
    text-decoration: underline;
}

.logo-link {
    color: rgb(241 241 241);
    cursor: pointer;
    text-decoration: underline;
}
.grid-item {
    position: relative;
    padding: 20px;
}

.grid-image {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px; /* Dostosuj rozmiar obrazka */
    height: 32px; /* Dostosuj rozmiar obrazka */
}

h3 {
    display: block;
    font-size: 1.25em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
   color:white;
   
}

.tooltip-trigger {
    position: relative;
    cursor: pointer;
    color: #383E42; /* Kolor tekstu RAL7016 */
    text-decoration: underline;
}

.tooltip {
    visibility: hidden;
    width: 100px;
    background-color: #383E42; /* Kolor RAL7016 */
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Pozycja nad tekstem */
    left: 50%;
    margin-left: -50px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #383E42 transparent transparent transparent;
}

.tooltip-trigger:hover .tooltip,
.tooltip-trigger:focus .tooltip {
    visibility: visible;
    opacity: 1;
}

  .selected, .hovered  {
          background-color: rgb(36 82 159);
        }
 .iframe-container {
            max-width: 1200px;
            margin: 40px auto;
            background-color: #ffffff;
            border-radius: 20px;
            box-shadow: 0 4px 10px rgb(36 82 159);
            overflow: hidden;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .iframe-wrapper {
            width: 100%;
            height: 600px; /* Możesz dostosować wysokość iframu */
            border: none;
            border-radius: 10px;
        }

        @media (max-width: 768px) {
            .iframe-container {
                padding: 10px;
            }
            .iframe-wrapper {
                height: 500px; /* Mniejsza wysokość iframu na urządzeniach mobilnych */
            }
        }
        .logo-text{
              line-height: 6px;
        }
