
/* Full-page loader overlay */
#loader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loader .loader-spinner {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 25px 25px 75px rgba(0,0,0,0.55);
    border: 1px solid #6091a7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

#loader .loader-spinner::before {
    content: '';
    position: absolute;
    inset: 20px;
    background: transparent;
    border: 1px dashed #6091a7;
    border-radius: 50%;
    box-shadow: inset -5px -5px 25px rgba(0,0,0,0.25), inset 5px 5px 35px rgba(0,0,0,0.25);
}

#loader .loader-spinner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px dashed #6091a7;
    box-shadow: inset -5px -5px 25px rgba(0,0,0,0.25), inset 5px 5px 35px rgba(0,0,0,0.25);
}

#loader .loader-spinner span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 100%;
    background: transparent;
    transform-origin: top left;
    animation: radar82 2s linear infinite;
    border-top: 1px dashed #fff;
}

#loader .loader-spinner span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #6091a7;
    transform-origin: top left;
    transform: rotate(-55deg);
    filter: blur(30px) drop-shadow(20px 20px 20px #6091a7);
}

@keyframes radar82 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont_wght.ttf'); /* Adjust the path as needed */
    font-weight: 100; /* or 400 */
    font-style: normal; /* or italic, if it's an italic font */
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat3';
    src: url('../fonts/Montserrat-VariableFont_wght.ttf'); /* Adjust the path as needed */
    font-weight: normal; /* or 400 */
    font-style: normal; /* or italic, if it's an italic font */
    font-display: swap;
}
.button-cenovnik, .button-brosure{
    width: 50vh;
    padding: 7px;
    background-color: white;
}
.button-brosure{
    margin-left:  20px !important;
}
#container-info{
    margin-top: 70px;
    margin-bottom: 70px;
    width: 100%;
}

.button-cenovnik,.button-brosure {
    appearance: none;
    text-transform: uppercase;
    background-color: transparent;
    border: 0.125em solid #003b63;
    box-sizing: border-box;
    color: #3B3B3B;
    cursor: pointer;
    display: inline-block;
    font-family: 'Synco', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    min-height: 3.75em;
    min-width: 0;
    outline: none;
    padding: 1.5em 2.3em;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    will-change: transform;
    margin-top: 20px;
   }
   
   .button-cenovnik:disabled {
    pointer-events: none;
   }
   
   .button-cenovnik:hover {
    color: #fff;
    background-color: #003b63;
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
   }
   
   .button-cenovnik:active {
    box-shadow: none;
    transform: translateY(0);
   }

   .button-brosure:disabled {
    pointer-events: none;
   }
   
   .button-brosure:hover {
    color: #fff;
    background-color: #003b63;
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
   }
   
   .button-brosure:active {
    box-shadow: none;
    transform: translateY(0);
   }

   .text-between-lines {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center; /* Center the text */
    padding: 10px 0; /* Add some padding above and below the text */
    margin-top: 20px; /* Space between the button and the text */
    text-transform: uppercase;
    position: relative;
    font-size: 30px;
    font-family: 'Synco',sans-serif;
}

.text-between-lines::before,
.text-between-lines::after {
    content: '';
    flex: 1 0;
    height: 1px;
    background-color: #003b63;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}

.text-between-lines.is-visible::before,
.text-between-lines.is-visible::after {
    transform: scaleX(1);
}

.text-between-lines span {
    margin: 0 15px;
    background-color: #fff;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 1s ease, transform 1s ease;
}

.text-between-lines.is-visible span {
    opacity: 1;
    transform: translateY(0);
}

.specifications-row {
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 20px; /* Adjust as needed */
   
}

.specification {
    flex: 1;
    margin: 0 20px; /* Spacing around each specification */
}

.spec-label {
    display: block; /* Label above value */
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    font-family: 'Synco', sans-serif;
}

.spec-value {
    /* Styling for the value */
    font-size: 30px;
    text-transform: uppercase;
    font-family: 'Synco', sans-serif;
}

.spec-divider {
    border-left: 1px solid #000; /* Vertical line */
    height: 70px; /* Adjust the length of the line */
    margin: 0 10px; /* Spacing around the divider */
}

   /* Add this media query for screens smaller than 1024px */
@media (max-width: 1024px) {
    .button-cenovnik, .button-brosure {
        width: auto; /* Adjust width for smaller screens */
        margin-left: 0 !important; /* Remove left margin for .button-brosure */
        display: block; /* Stack buttons vertically */
        margin-bottom: 10px; /* Add some space between the buttons */
    }
}
.vertical-specifications .specification {
    display: flex;
    justify-content: space-between; /* This will put the label on the left and value on the right */
    align-items: center;
    margin-top: 10px; /* Space between each specification */
}

.ver-spec-label {
    font-family: 'Montserrat3', sans-serif;
    font-size: 16px;
    text-transform: uppercase;

}

.ver-spec-value {
    /* Styling for the value */
    text-align: right; /* Aligns the value to the right */
    font-family: 'Montserrat3', sans-serif;
    font-size: 16px;
    text-transform: uppercase;

}
.spec-divider {
    border: 0;
    height: 1px;
    background-color: #000; /* Change color as needed */
    margin-top: 10px; /* Space above the line */
    margin-bottom: 10px; /* Space below the line */
}
.image-gallery img {
    width: 100%; /* Make images take full width of the grid column */
    height: 300px;
    object-fit: cover; /* Cover the grid area */
    cursor: pointer; /* Indicates the image can be clicked */
}
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Adjust the minmax values as needed */
    gap: 10px; /* Space between images */
    margin-top: 20px; /* Space above the gallery */
}

/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.55);
    align-items: center;
    justify-content: center;
}
.modal.open {
    display: flex;
}

/* Modal Content */
.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.mySlides {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.mySlides.active {
    display: flex;
}
.mySlides img {
    max-width: 90vw;
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* The Close Button */
.close {
    position: fixed;
    top: 16px;
    right: 20px;
    color: white;
    font-size: 28px;
    font-weight: 400;
    cursor: pointer;
    z-index: 1051;
    line-height: 1;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.45);
    border-radius: 50%;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.close:hover {
    background-color: rgba(0,0,0,0.75);
    transform: scale(1.1);
}

/* Next & previous buttons */
.prev, .next {
    text-decoration: none;
    cursor: pointer;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    background-color: rgba(0,0,0,0.45);
    border-radius: 50%;
    transition: background-color 0.2s ease, transform 0.2s ease;
    user-select: none;
    -webkit-user-select: none;
    z-index: 1051;
}
.prev {
    left: 16px;
}
.next {
    right: 16px;
}
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.75);
    transform: translateY(-50%) scale(1.1);
}

.equipment-list {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
    list-style-type: disc;
    padding-left: 20px;
    font-family: 'Montserrat3', sans-serif;
    font-weight: 500;
}

.equipment-section {
    margin-bottom: 1.2rem;
}

.equipment-section-heading {
    font-family: 'Montserrat3', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a0845c;
    margin-bottom: 0.4rem;
}

.equipment-sublist {
    list-style-type: disc;
    padding-left: 1.2rem;
    margin: 0;
    font-family: 'Montserrat3', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
}

.equipment-standalone-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
}

.equipment-standalone {
    font-family: 'Montserrat3', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0.2rem 0;
}

@media (max-width: 576px) {
    .equipment-standalone-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {
    .close {
        top: 10px;
        right: 10px;
    }
    .prev { left: 8px; }
    .next { right: 8px; }
    .modal-content {
       margin-top: 0;
    }
    .specifications-row, .vertical-specifications {
        flex-direction: column;
        align-items: flex-start;
    }

    .specification {
        width: 100%; /* Full width within the container */
        margin: 0; /* Adjust margin as needed */
    }

    .spec-label, .spec-value {
        text-align: left; /* Align text to the left */
        display: block; /* Stack label and value */
        width: 100%; /* Full width for label and value */
    }
    .spec-value{
        font-size: 20px;
    }
    .spec-divider {
        width: 100%; /* Full width for horizontal dividers */
        margin-left: 0;
        margin-right: 0;
    }

    .button-cenovnik, .button-brosure {
        width: 100%; /* Full width for buttons */
    }
    .ver-spec-label, .ver-spec-value{
        font-size: 13px;
    }

    /* Adjust other elements as needed for smaller screens */
}

/* Additional adjustments to ensure container fits the viewport width */
.container {
    width: 100%; /* Full width of the viewport */
    padding: 0 15px; /* Add padding if needed */
    box-sizing: border-box; /* Include padding in the width calculation */
}