/* Osnovni stilovi */
body {
    background-color: #1E1E1E;
    font-family: "Manrope", serif;
    font-weight: 400;
    font-optical-sizing: auto;
}

.navbar {
    background-color: transparent !important;
    box-shadow: none !important;
}

.nav-link {
    color: white !important;
    font-weight: 500;
}

.nav-link:hover {
    color: #f8f9fa !important;
}

/* Ograničenje širine navigacije */
.navbar .container {
    max-width: 1600px;
}

/* Uklanjanje pozadine i prilagodba boje ikone toggle gumba */
.navbar-light .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.6); /* Postavi bijeli border s prozirnošću */
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); /* Ikona crtice u bijeloj boji */
}


.btn-outline-success {
    color: white !important;
    border-color: white !important;
    font-weight: 600;
}

.btn-outline-success:hover {
    background-color: white;
    color: #0d6efd;
}

header {
    height: 100vh;
    background-image: url("img/bg-1 1.png");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    margin-top: -80px;
}

header h1 {
    font-weight: 600;
    font-size: 48px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container-about {
    display: flex;
    flex-direction: row;
    padding: 120px 0px;
    font-family: "Manrope", serif;
    font-weight: 300;
    max-width: 1200px;
    margin: auto;
    justify-content: center;
    align-items: center;
}

.text {
    padding: 50px;
}

.image img {
    height: auto;
    width: 400px;
}

.text {
    color: white;
    font-weight: 400;
}

.text ul {
    list-style: none;
    padding: 0;
}

.text li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    text-align: left;
}

.text li i {
    color: white; /* boja ikone */
    margin-right: 8px; /* razmak između ikone i teksta */
    font-size: 1.2em; /* veličina ikone */
}


.statistic-section{
    background: black;
}

.container-statistic {
    background-color: black;
    color: white;
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1600px; /* Ograničava maksimalnu širinu */
    padding: 50px 124px;
    font-weight: 400;
    margin: 0 auto; /* Centriranje sadržaja */
}

.number {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 2px solid white;
    width: 400px;
}


.accordion {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-item {
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: 500;
}

.accordion-item:first-child {
    border-top: none;
}

.accordion-item .title {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.accordion-content {
    display: none;
    padding: 15px;
    border-top: 1px solid #ddd;
    background-color: #f9f9f9;
    font-size: 0.5rem;
    font-weight: 300;
}

.accordion-button {
    border: none;
    background: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    color: #333;
    padding: 0;
    outline: none;
    font-weight: 500;
}

.accordion-button.rotate {
    transform: rotate(90deg);
}

.accordion-item .title {
    font-weight: 300;
    font-size: 2rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accordion-content {
    font-size: 1rem;
    background: #1E1E1E;
    color: white;
    font-family: "Manrope", serif;
}

.accordion-button {
    color: rgba(255, 255, 255, 0.8);
}

.title h1 {
    text-align: center;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gallery {
    margin: auto;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 10px;
}

.gallery-item {
    flex: 1 1 calc(33% - 20px);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    opacity: 0.6;
    height: 220px;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item:hover img {
    opacity: 1;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    display: flex;
    margin: 10% auto;
    padding: 20px;
    background: #fff;
    max-width: 70%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.modal-left img {
    max-width: 100%;
    height: auto;
    float: left;
    border-radius: 10px;
}

.modal-right {
    margin-left: 20px;
    padding: 0 2em;
    width: 40%;
}

.modal-right p {
    margin: 0;
}

.close {
    position: absolute;
    top: 15px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

.nav-btn {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 5px;
}

.nav-btn:hover {
    background-color: #555;
}

.container-services {
    padding: 50px 124px;
}

    .contact-section {
            max-width: 1600px;
            margin: 0 auto;
            padding: 40px 20px;
            text-align: center;
        }

        .contact-icon-container {
            display: inline-block;
            background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.3) 100%);
            padding: 15px;
            border-radius: 50%;
        }

        .contact-icon {
            font-size: 3rem;
            color: white;
        }

        .contact-text {
            font-size: 1.1rem;
            color: #ffffff; /* Bijela boja za tekst */
            margin-top: 10px;
        }

        .contact-link {
            color: #ffffff;
            text-decoration: none;
        }

        .map-container iframe {
            width: 100%;
            height: 400px;
            border: 0;
            margin-top: 30px;
        }
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 40px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin: 20px;
}

.footer-logo h2 {
    margin-bottom: 10px;
}

.footer-links,
.footer-services,
.footer-contact {
    flex: 1;
    min-width: 250px;
    margin: 20px;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600; /* semibold */
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-services li {
    line-height: 2;
}

.footer-links a,
.footer-services a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.footer-contact p {
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #aaaaaa;
}

/* Responzivni stilovi */
@media (max-width: 1440px) {
    header h1 {
        font-size: 40px;
    }

    .container-about {
        padding: 80px 60px;
    }

    .number {
        width: 300px;
    }

    .gallery-item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 1024px) {
    header h1 {
        font-size: 36px;
    }

    .container-about {
        flex-direction: column;
        align-items: center;
        padding: 60px 30px;
        justify-content: center;
        margin: auto;
    }

    .image {
        margin: auto;
    }

    .text p {
        text-align: left;
    }

    .text {
        text-align: center;
    }

    .gallery-item {
        flex: 1 1 calc(33% - 20px);
    }


}

@media (max-width: 768px) {
    .gallery-item {
        flex: 1 1 calc(50% - 20px);
        margin: 0px 23px;
    }

    .modal-content {
        flex-direction: column;
    }

    .modal-right {
        margin-left: 0;
        margin-top: 20px;
        width: 80%;
        padding: 0;
    }

    .nav-btn {
        margin-top: 10px;
    }

    .container-services {
        padding: 0px 10px;
    }

    .accordion-item .title,
    .accordion-content {
        font-weight: 300;
        font-size: 1rem;
        background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.3) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .image img {
        height: auto;
        width: 300px;
    }

}

@media (max-width: 480px) {
    header h1 {
        font-size: 28px;
    }

    .gallery-item {
        flex: 1 1 100%;
    }

    .footer {
        padding: 20px 0;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo,
    .footer-links,
    .footer-services,
    .footer-contact {
        margin: 10px 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container-statistic {
        flex-direction: column; /* Prebacujemo na vertikalno slaganje na manjim ekranima */
        align-items: center; /* Centriramo sadržaj */
        padding: 30px 20px; /* Manje paddinga za manje ekrane */
    }

    .number {
        border-right: none; /* Uklanjamo desnu granicu */
        width: 100%; /* Širina se prilagođava */
        margin-bottom: 20px; /* Razmak između elemenata */
    }

    .number:last-child {
        margin-bottom: 0; /* Uklanjamo razmak nakon zadnjeg elementa */
    }
}

