html,
body {
    font-size: 16px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #00360e;
    scroll-behavior: smooth;
    color: aliceblue;
    overflow-x: hidden;
}

#load {
    background-color: #00360e;
    width: 100%;
    height: 100%;
    z-index: 999;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

body.loading {
    overflow: hidden;
}

.centriraj {
    text-align: center;
}

.loader {
    width: 100px;
    height: 40px;
    --g: radial-gradient(farthest-side, #0000 calc(95% - 3px), #fff calc(100% - 3px) 98%, #0000 101%) no-repeat;
    background: var(--g), var(--g), var(--g);
    background-size: 30px 30px;
    animation: l9 1s infinite alternate;
}

@keyframes l9 {
    0% {
        background-position: 0 50%, 50% 50%, 100% 50%;
    }

    20% {
        background-position: 0 0, 50% 50%, 100% 50%;
    }

    40% {
        background-position: 0 100%, 50% 0, 100% 50%;
    }

    60% {
        background-position: 0 50%, 50% 100%, 100% 0;
    }

    80% {
        background-position: 0 50%, 50% 50%, 100% 100%;
    }

    100% {
        background-position: 0 50%, 50% 50%, 100% 50%;
    }
}

::selection {
    background-color: #000000;
    color: #ffffff;
}

.link {
    color: aliceblue;
    text-decoration: none;
}

.hr-divider {
    border: 0 solid aliceblue;
    border-top-width: 1px;
    height: 0;
    margin: 60px auto;
    display: block;
    width: 50%;
}

#scrolltotop {
    display: none;
    position: fixed;
    bottom: 32px;
    right: 0;
    transform: translateX(-50%);
    z-index: 99;
    font-size: 22px;
    background-color: #091314;
    border: 1px solid black;
    color: white;
    cursor: pointer;
    padding: 20px;
    transition: 0.5s;
}

#scrolltotop:hover {
    color: black;
    background-color: aliceblue;
}

#scrolltotop:active {
    scale: 0.7;
}

.header {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.header img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%);
}

.header h1 {
    font-size: 7rem;
    padding: 5rem;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    margin: 0;
    margin-top: 10%;
    z-index: 1;
}

.header h3 {
    width: 70%;
    text-align: center;
    margin: 0;
    z-index: 1;
}

.header .icon {
    font-size: 3em;
    margin: 2%;
    cursor: pointer;
    z-index: 1;
}

@media only screen and (max-width: 768px) {
    .header h1 {
        font-size: 4rem;
        margin-bottom: 15%;
        padding: 0;
    }

    .header h3 {
        width: 100%;
        font-size: 0.9rem;
    }

}

@media only screen and (min-width: 769px) and (max-width: 1367px) {
    .header h1 {
        font-size: 8rem;
    }
}



.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.navbar {
    background-color: rgba(240, 248, 255, 0.575);
    color: black;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0px;
}

#logo-container {
    display: flex;
    flex-direction: row;
    cursor: pointer;
}

#logo-container img {
    width: 80px;
    height: auto;
}

#logo-container span {
    font-family: kerimFont;
    font-size: 2rem;
    display: block;
    margin: auto;
    margin-left: 5%;
}

.center {
    display: flex;
    justify-content: center;
    margin: 0;
    margin-left: auto;
}

.center li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.navbar li a {
    display: block;
    text-align: center;
    padding: 16px 25px;
    margin-left: 10px;
    font-size: large;
    color: #000;
    text-decoration: none;
    transition: 0.4s;
}

.navbar li a:hover {
    background-color: #00360e;
    color: hsl(0, 0%, 100%);
    box-shadow: #000 0px 7px 29px 0px;
}

.mobile-menu {
    display: none;
    background-color: aliceblue;
    padding: 20px;
    margin-top: -10px;
}

.mobile-menu li {
    list-style-type: none;
    margin: 10px;
    text-align: center;
}

.mobile-menu li a {
    display: block;
    text-align: center;
    padding: 16px 25px;
    margin-left: 10px;
    font-size: large;
    color: #000;
    text-decoration: none;
    transition: 0.4s;
}

.mobile-menu li a:hover {
    color: aliceblue;
    background-color: #091314;
}

.mobile-menu li img {
    width: 25px;
    height: auto;
}

.menu-icon {
    display: none;
    position: absolute;
    flex-direction: column;
    cursor: pointer;
    margin-left: 10px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 4px 0;
    transition: 0.4s;
}

.menu-icon:hover .bar {
    width: 35px;
    height: 3px;
    background-color: #000;
    margin: 4px 0;
    transition: 0.4s;
}


@media only screen and (max-width: 768px) {
    .navbar {
        background-color: rgba(240, 248, 255, 0.603);
        color: black;
        display: block;
    }

    .center {
        display: none;
    }

    .menu-icon {
        display: flex;
        position: fixed;
        right: 10%;
        top: 35%;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1500px) {

    .navbar li a {
        padding: 5px;
        margin-left: 5px;
        font-size: medium;
    }

    #logo-container span {
        display: none;
    }
}

/*Home Start*/
#home {
    display: flex;
    margin: 1%;
    flex-direction: row;
    margin-top: 50px;
    padding-top: 150px;
}

#home>* {
    flex: 1 1 30%;
}

#home .home-text {
    display: block;
    margin: auto;
    padding: 5%;
    padding-top: 0%;
    opacity: 0;
}

#home .home-text h1 {
    font-size: 4em;
    text-align: center;
}

#home .home-text a {
    font-size: 1.5em;
    text-decoration: none;
    color: #000;
    padding: 12px;
    margin: auto;
    width: 50%;
    margin: 5%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: block;
    border-radius: 12px;
    background-color: aliceblue;
    transition: 0.4s;
}

#home .home-text a:hover {
    letter-spacing: 3px;
    background-color: #00360e;
    color: hsl(0, 0%, 100%);
    box-shadow: #fff 0px 7px 29px 0px;
}

#home .home-text a:active {
    width: 80%;
}

#home img {
    width: 50%;
    height: auto;
    margin-top: 10%;
    display: block;
    margin: auto;
    border: 3px solid aliceblue;
    transition: 0.3s;
    opacity: 0;
}

#home img:hover {
    width: 80%;
    background-color: #00360e;
    color: hsl(0, 0%, 100%);
    box-shadow: #fff 0px 7px 29px 0px;
}

@media only screen and (max-width: 768px) {
    #home {
        flex-direction: column;
        text-align: center;
        margin-top: 0px;
        padding-top: 0px;
    }

    #home>* {
        flex: 1 0 auto;
        width: 100%;
        margin-top: 25%;
    }

    #home .home-text {
        padding: 0%;
    }

    #home .home-text a {
        width: 90%;
    }

    #home .home-text h1 {
        font-size: 3.5em;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1367px) {
    #home .home-text {
        padding: 0%;
    }

    #home .home-text a {
        width: 80%;
    }
}

/*Home End*/

/*COUNTER*/

#counter {
    text-align: center;
    padding: 40px 20px;
    color: white;
}

#counter h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.counters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.counter {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.counter:hover {
    transform: scale(1.05);
}

.counter strong {
    font-size: 2.5em;
    color: #00360e;
    display: block;
    margin-bottom: 10px;
}

.counter span {
    font-size: 1em;
    color: #666;
    line-height: 1.5;
}

#counter h2 {
    font-size: 1.5em;
    color: #000;
}

#counter i {
    font-size: 3em;
    color: #000;
}

#counter h3 a {
    color: gold;
    text-decoration: none;
    font-weight: bold;
}

#counter h3 a:hover {
    text-decoration: underline;
}

/*about*/
#about {
    background: url('../assets/gallery/about.jpg') no-repeat center center/cover;
}

#about h1 {
    font-size: 3rem;
    text-align: center;
    font-weight: bold;
    padding: 2%;
    color: #fff;
    text-decoration: underline;
}

.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    color: #fff;
    position: relative;
}

.about .box {
    width: 45%;
    position: relative;
    overflow: hidden;
    background-color: #0000009c;
    padding: 2%;
}

.about img {
    width: 25%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.about h2 {
    position: relative;
    z-index: 1;
    font-size: 1.8rem;
    margin-top: 20px;
    margin-bottom: 20px;
}

.about p {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about {
        display: block;
        padding: 16px;
    }

    .about .box {
        width: 100%;
        position: relative;
        overflow: hidden;
        background-color: #0000009c;
        padding: 2%;
    }

    .about img {
        width: 90%;
    }
}

#gallery {
    padding: 20px;
    text-align: center;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.gallery-item {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Modal Style */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(1);
    }
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #f00;
}



/*CONTACT*/
#contact {
    background: url('../assets/gallery/contact2.jpg') no-repeat center center/cover;
    padding: 50px 20px;
    color: #fff;
    display: flex;
    margin: 0 auto;
}

#contact article {
    background-color: #00360e9d;
    padding: 2%;
    width: 46%;
}

#contact h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #f1c40f;
}

#contact p {
    margin: 10px 0;
    font-size: 1.1rem;
}

#contact a {
    color: #f1c40f;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

#contact .bi {
    margin-right: 8px;
}

#contact .call {
    display: flex;
}

#contact .call a {
    text-decoration: none;
    padding: 16px;
    font-weight: bold;
    margin: auto;
    border-radius: 6px;
    color: wheat;
}

#contactform {
    max-width: 600px;
    margin: 20px auto;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#contact .feedback-input {
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background: #fff;
    color: #333;
}

#contact .feedback-input:focus {
    outline: none;
    box-shadow: 0 0 5px #f1c40f;
}

#contact #button-green {
    background-color: #f1c40f;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    color: #333;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#contact #button-green:hover {
    background-color: #d4ac0d;
}

@media (max-width: 768px) {
    #contact {
        color: #fff;
        display: block;
    }

    #contact article {
        width: 95%;
    }

    #contact #contact {
        text-align: center;
    }

    #contact form {
        padding: 15px;
    }

    #contact .feedback-input {
        font-size: 0.9rem;
    }
}

/*kartice, types*/

#types {
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 12px;
}

#types h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.card h2 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    color: #444;
}

.card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.card .btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #00360e;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.card .btn:hover {
    background-color: #009427;
}


/*process*/
#proces {
    position: relative;
    max-width: 80%;
    margin: auto;
    text-align: center;
    padding: 20px;
}

#proces h1 {
    font-size: 3rem;
    text-align: center;
    font-weight: bold;
    padding: 2%;
    margin-top: 32px;
    color: #fff;
    text-decoration: underline;
}

.process-slider {
    position: relative;
}

.process-image-container {
    max-width: 100%;
    overflow: hidden;
}

.process-image {
    display: block;
    margin: auto;
    width: 30%;
    height: auto;
}

.process-text {
    font-size: 18px;
    font-weight: bold;
    width: 70%;
    display: block;
    margin: auto;
    margin-top: 15px;
}

.nav-button {
    position: absolute;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    transform: translateY(-50%);
}

#prevBtn {
    left: 10px;
}

#nextBtn {
    right: 10px;
}

@media (max-width: 768px) {

    .process-image {
        display: block;
        width: 70%;
        height: auto;
        margin: 0 auto;
    }

    .process-text {
        width: 100%;
    }
}

/*reviews*/
#reviews {
    background: url('../assets/gallery/outside2.jpg') no-repeat center center/cover;
}

#reviews h1 {
    font-size: 3rem;
    text-align: center;
    font-weight: bold;
    padding: 2%;
    margin-top: 32px;
    color: #fff;
    text-decoration: underline;
}

.reviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.testimonial {
    margin-top: 16px;
    margin-bottom: 16px;
}

.testimonial blockquote {
    margin: 10px 10px 0;
    background: #efefef;
    color: #000;
    padding: 20px 60px;
    position: relative;
    border: none;
    border-radius: 8px;
    font-style: italic;
}

.testimonial blockquote:before,
.testimonial blockquote:after {
    content: "\201C";
    position: absolute;
    font-size: 80px;
    line-height: 1;
    color: #757f9a;
    font-style: normal;
}

.testimonial blockquote:before {
    top: 0;
    left: 10px;
}

.testimonial blockquote:after {
    content: "\201D";
    right: 10px;
    bottom: -0.5em;
}

.testimonial div {
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #efefef;
    margin: 0 0 0 60px;
}

.testimonial p {
    margin: 8px 0 0 20px;
    text-align: left;
    color: #000000;
    background: #efefef;
    width: 15%;
    border-radius: 6px;
    padding: 6px;
    text-align: center;
}


/*CONTACT*/


footer {
    color: #fff;
    padding: 20px 10px;
}

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

.footer-section {
    flex: 1;
    margin: 10px;
    min-width: 20%;
}

.footer-section h3 {
    margin-bottom: 10px;
}

.footer-section p {
    line-height: 1.5;
}

.footer-section img {
    width: 50%;
    border-radius: 6px;
}

.footer-section a {
    color: #fff;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 10px;
    font-size: 16px;
    color: #fff;
    background-color: #4caf50;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.share-btn:hover {
    background-color: #757575;
}

.share-btn i.fa {
    font-size: 18px;
}

.facebook-color {
    background-color: #3b5998;
}

.twitter-color {
    background-color: #1da1f2;
}

.linkedin-color {
    background-color: #0077b5;
}

.whatsapp-color {
    background-color: #25D366;
}

.viber-color {
    background-color: #665CAC;
}

.email-color {
    background-color: #D44638;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .reviews {
        display: block;
    }

    .testimonial p {
        width: 70%;
    }
}