html {
    scroll-behavior: smooth;
}

body {
    background-color: green;
    font-family: 'Noto Sans', sans-serif;
    color: #E1EEBC;
    margin: 0;
}

.site-wrapper {
    min-width: 1440px;
    min-height: 1440px;
    /* ili neka fiksna širina koju koristiš */
    margin: 0 auto;
}

.barlow {
    font-family: "Barlow Semi Condensed", sans-serif;
}

.hero-wrapper {
    background-image: url('pictures/background-picture.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}

.logo-wrapper {
    padding-top: 2vh;
    padding-bottom: 1vh;
}

.top-bar {
    display: flex;
    width: 100%;
    height: 6vh;
    justify-content: space-around;
    align-items: center;
    background-color: #437057;
}

.info-wrapper {
    display: flex;
    gap: 3%;
    align-items: center;
    width: auto;
}

.info-wrapper p {
    font-size: clamp(0.5rem, 0.8vw, 8rem);
    white-space: nowrap;
}

.info-wrapper img {
    height: 3.8vh;
}

.nav-bar {
    display: flex;
    height: 8vh;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background-color: #67AE6E;
    opacity: 0.95;
}

.logo-wrapper {
    margin-left: 5%;
}

.nav-bar a:hover {
    color: red;
    transition: all 0.5s ease;
    text-decoration: underline;
}

.nav-bar img {
    height: 8vh;
}

.links-wrapper {
    display: flex;
    width: 40%;
    justify-content: space-between;
    margin-right: 5%;
}

.links-wrapper a {
    font-family: 'Noto Sans', sans-serif;
    color: #FFFFFF;
    text-decoration: none;
    font-size: clamp(0.5rem, 1vw, 8rem);
}

.hero-content {
    display: flex;
    flex-direction: column;
    margin-left: 5%;
    margin-top: 18vh;
    height: 50vh;
    justify-content: space-around;
}

.hero-content p {
    font-size: clamp(1rem, 1.4vw, 4rem);
}

.hero-content h1 {
    font-size: clamp(2rem, 2.8vw, 8rem);
    margin: 0;
}

.btn {
    display: inline-block;
    padding: 1vh 1%;
    background: #437057;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    width: 8%;
    border: 4px solid #E1EEBC;
    text-align: center;
    align-items: center;
}

.btn a {
    text-decoration: none;
    color: #E1EEBC;
    font-weight: bold;
    font-size: clamp(1rem, 1.2vw, 4rem);
}

.btn:hover {
    background: #335542;
    transform: translateY(-2px);
}

.about-us-wrapper {
    min-height: 100vh;
    background-color: #E1EEBC;
    overflow: hidden;
    margin-bottom: 0;
}

.intro {
    min-height: 50px;
    width: 100%;
    height: 8vh;
    background-color: #67AE6E;
    font-weight: bold;
    justify-content: space-between;
}

.intro p {
    font-size: clamp(1rem, 1.6vw, 6rem);
}

.intro-wrapper {
    display: flex;
    width: 90%;
    justify-content: space-between;
    margin-left: 5%;
    align-items: center;
    height: 8vh;
}

.about-us-content {
    display: flex;
    justify-content: space-between;
}

.about-us-pictures {
    height: 60vh;
    width: fit-content;
    display: flex;
    gap: 3%;
    align-items: center;
    margin-top: 18vh;
    margin-left: 5%;
    width: 34%;
    z-index: 0;
}

.img-1-wrapper img {
    height: 48vh;
    width: auto;
}

.imgs-2-3-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

.imgs-2-3-wrapper img {
    height: 28vh;
    width: auto;
}

.about-us-p {
    display: flex;
    flex-direction: column;
    z-index: 6;
    width: 40%;
    margin-right: 10%;
    height: 60vh;
    margin-top: auto;
}

.about-us-p h2 {
    color: black;
    font-size: clamp(1.2rem, 1.8vw, 5rem);
}

.about-us-p h3 {
    font-size: clamp(1rem, 1.4vw, 4rem);
    color: #437057;

}

.about-us-p p {
    font-size: clamp(1rem, 1.4vw, 4rem);
    color: black;
    margin-bottom: 0
}

.services-wrapper {
    height: 100vh;
    margin: 0;
    background: radial-gradient(closest-side,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.6) 100%),
}

.services-intro {
    height: 15vh;
    background-image: url(pictures/services-intro-bg.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    margin-top: -3vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-intro h1 {
    font-size: clamp(2rem, 2.8vw, 8rem);
}

.services-content {
    height: 85vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: linear-gradient(-70.71deg,
            rgba(0, 0, 0, 0.41) 13.377495110034943%,
            rgba(71, 108, 64, 0.59) 100%,
            rgba(59, 108, 49, 0.6) 100%),
        radial-gradient(closest-side,
            rgba(0, 0, 0, 0.41) 0%,
            rgba(52, 86, 45, 0.6) 100%),
        linear-gradient(to left, #437057, #437057);
}

.row {
    display: flex;
    width: 80%;
    margin-left: 10%;
    justify-content: space-between;
    margin-top: auto;
    margin-bottom: auto;

}

.rectangle-10 {
    width: 13vw;
    height: 35vh;
    position: relative;
}

.rectangle-102 {
    background: #e1eebc;
    border-radius: 100px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.rectangle-102 img {
    height: 60%;
    width: 100%;
    object-fit: cover;
    margin: 0;
    margin-top: -1vh;
}

.rectangle-102 p {
    color: #437057;
    font-size: clamp(1rem, 1.4vw, 4rem);
    text-align: center;
    height: 40%;

    /* Center vertically */
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-intro {
    height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #214531;
}

.contact-intro h1 {
    font-size: clamp(2rem, 2.4vw, 8rem);
    margin-bottom: 0;
}

.contact-intro p {
    font-size: clamp(1rem, 1.4vw, 6rem);
}

.contact-intro img {
    width: 20%;
}

.contact-pics {
    height: 50vh;
    align-items: center;
    display: flex;
    justify-content: center;
    background-color: #E1EEBC;
}

.contact-pics-wrapper {
    width: 80%;
    display: flex;
    justify-content: space-between;
}

.rectangle-22 {
    background: #67ae6e;
    border-radius: 20px;
    height: 35vh;
    width: 20%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;


}

.rectangle-22 img {
    margin-top: 2vh;
    width: 25%;
}

.rectangle-22 h1 {
    color: #E1EEBC;
    font-weight: bold;
    font-size: clamp(1rem, 1.4vw, 5rem);
}

.rectangle-22 p {
    font-size: clamp(1rem, 1vw, 5rem);
    width: 90%;
}

.white {
    color: white;
}

.footer {
    display: flex;
    background-color: #1A251F;
    justify-content: space-around;
}

.footer-contact {
    width: 20%;
}

.footer-services {
    width: 20%;
}

.footer-logo {
    width: 20%;
}

.footer-logo img {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}


@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .hero-wrapper {
        background-image: url("pictures/phone-bg.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .site-wrapper {
        min-width: auto;
        min-height: auto;
        width: 100%;
        margin: 0;
    }


    .site-wrapper {
        min-width: 100vw;
        width: 100vw;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }

    .phone-hide {
        display: none;
    }

    .top-bar,
    .nav-bar,
    .intro-wrapper,
    .about-us-content,
    .about-us-pictures,
    .services-content,
    .row,
    .contact-pics-wrapper,
    .footer {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
    }

    .menu-toggle {
        display: block;
        font-size: 28px;
        background: none;
        color: white;
        border: none;
        text-align: right;
        cursor: pointer;
    }

    .logo-menu-wrapper {
        z-index: 99999;
        height: 20vh;
        width: 100%;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #67AE6E;
    }

    .logo-menu-wrapper img {
        margin-left: 5%;
    }

    .logo-menu-wrapper button {
        margin-right: 5%;
    }

    .links-wrapper {
        background-color: #214531;
        width: 100%;
        margin: 0;
        opacity: 0;
        transition: all .9s ease;
        transform: translate(0, -40vh);
    }

    .links-wrapper.show {
        opacity: 1;
        display: flex;
        transform: translate(0px, 0px);
    }

    .links-wrapper a {
        text-align: center;
        display: block;
        padding: 10px;
        width: 100%;
        font-size: 0.8rem;
    }

    .links-wrapper {
        flex-direction: column;
        gap: 1vh;
        width: 100%;
        align-items: center;
    }

    .logo-wrapper {
        margin: 0;
    }

    .hero-content {
        margin: 20vh auto;
        align-items: center;
        text-align: center;
    }

    .hero-content p {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .btn {
        width: 60%;
        padding: 1vh 2vw;
    }

    .btn a {
        font-size: 1.5rem;
    }

    .intro p {
        font-size: 1.5rem;
    }

    .about-us-content {
        gap: 5vh;
        padding-top: 5vh;
        padding-bottom: 10vh;
    }

    .about-us-pictures,
    .about-us-p {
        width: 90%;
        height: auto;
        margin: 0;
    }

    .imgs-2-3-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1vh;
    }

    .img-1-wrapper img,
    .imgs-2-3-wrapper img {
        height: 25vh;
        width: auto;
    }

    .services-intro {
        height: auto;
        padding: 2vh 0;
    }

    .services-content {
        height: auto;
        padding-bottom: 5vh;
    }

    .about-us-p h2 {
        font-size: 2rem;
    }

    .about-us-p h3 {
        font-size: 1.5rem;
    }

    .about-us-p p {
        font-size: 1.2rem;
    }

    .row {
        flex-direction: column;
        gap: 3vh;
        width: 100%;
        align-items: center;
        margin: 0;
    }

    .intro {
        height: fit-content;
        padding-bottom: 1rem;
    }

    .intro-wrapper {
        height: fit-content;
    }

    .rectangle-10 {
        width: 80%;
        height: 50vh;
        margin-top: 10vh;
    }

    .contact-pics {
        flex-direction: column;
        height: auto;
        padding: 3vh 0;
    }

    .rectangle-102 p {
        font-size: 2rem;
    }

    .footer {
        flex-direction: column;
        gap: 3vh;
        align-items: center;
        padding: 3vh 0;
    }

    .contact-intro img {
        width: 60%;
    }

    .contact-intro p {
        text-align: center;
        font-size: 2rem;
    }

    .rectangle-22 {
        width: 80%;
        margin-bottom: 5vh;
        height: fit-content;
    }

    .rectangle-22 h1 {
        font-size: 2rem;
        margin-top: 0;
        margin-bottom: 1vh;
    }

    .rectangle-22 p {
        font-size: 1.5rem;
    }

    .footer-contact,
    .footer-services,
    .footer-logo {
        width: 80%;
        text-align: center;
    }

    .footer-contact {
        align-items: center;
        justify-content: center;
    }

    .footer-contact h1 {
        font-size: 3rem;
    }

    .info-wrapper {
        margin-left: 20%;
        width: 60%;
        display: flex;
    }

    .info-wrapper p {
        font-size: 1rem;
    }

    .footer-logo img {
        width: 60%;
    }
}