/*
COLORS:

Light green: #b8d0c8
Medium green: #409080
Dark green: #006850

*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: #fff;
    color: #555;
    font-family: 'poppins', sans-serif;
    font-weight: 300;
    font-size: 62.5%;
    text-rendering: optimizeLegibility;
}

/*  REUSABLE COMPONENTS  ============================================================================= */

section {
    padding: 80px 0;
}

/* ----- HEADINGS ----- */
h1,
h2,
h3 {
    font-weight: 300;
    text-transform: uppercase;
}

h2 {
    font-size: 4rem;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

h2:after {
    display: block;
    height: 2px;
    background-color: #7ed56f;
    content: " ";
    width: 100px;
    margin: 0 auto;
    margin-top: 30px;
}

.adress i {
    color: #006850;
    padding-right: 10px;
}

/*  HERO  ============================================================================= */

.container {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(30deg, rgba(0, 104, 80, 1) 34%, rgba(184, 208, 200, 0.0035364487591911242) 100%), url(../css/img/background.jpg);
    background-size: cover;
    background-position: center;
    padding: 0 8%;
    position: relative;
}

nav {
    display: flex;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    padding: 5px 0;
}

.logo {
    width: 120px;
    cursor: pointer;
    margin-left: 120px;
}

nav ul {
    flex: 1;
    text-align: right;
    padding-right: 30px;
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 30px;

    font-size: 1.4rem;
}

nav ul li a {
    color: #006850;
    text-decoration: none;
    position: relative;
    font-size: 1.6rem;
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translate(-50%);
    background: #fff;
    transition: width .3s;
}

nav ul li a:hover::after {
    width: 50%;
}

.text-box {
    color: #fff;
    position: absolute;
    bottom: 8%;
}

.text-box p {
    font-size: 50px;
    font-weight: 600;
    font-size: 3rem;
}

.text-box h1 {
    font-size: 100px;
    line-height: 160px;
    margin-left: -10px;
    margin-top: 0;
    margin-bottom: 0;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    background: url(../img/back.png);
    -webkit-background-clip: text;
    background-position: 0 0;
    animation: back 20s linear infinite;
}

@keyframes back {

    100% {
        background-position: 2000px 0;
    }

}

.text-box h3 {
    font-size: 40px;
    font-weight: 500;
    font-size: 1.6rem;
}

.text-box .btn-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.text-box a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    margin-right: 20px;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    font-size: 1.6rem;
}

.text-box a:hover {
    color: #006850;
    border: 2px solid #fff;
    background-color: #fff;
}

/*---------------------
.text-box span{
    font-size: 30px;
    line-height: 15px;
    margin-left: 5px;
    font-size: 1.8rem;
}
----------------------*/
.social-icons {
    position: absolute;
    right: 5%;
    bottom: 8%;

    display: flex;
    flex-direction: column;
}

.feature-icon {
    //width: 50px;
    //height: 50px;
    //float: left;
    font-size: 3rem;
    //line-height: 50px;
    //text-align: center; 
    color: #fff;
    margin-right: 30px;
    margin-top: 5px;
}

.social-icons img {
    width: 25px;
    display: block;
    margin: 25px 5px;
}


/*  DESCRIPTION  ============================================================================= */
.description-box {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.description-box p {
    font-size: 1.8rem;
    line-height: 1.8;
}

/*  MASONRY GALERIJA  =================================================================== */

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 60%;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    display: block;
    width: 100%;
    filter: saturate(0%) brightness(100%) contrast(100%);
    transition: all .4s;
}

.gallery-item img:hover {
    filter: none;
    transform: scale(1.08);
}

.gallery-img img:hover {}

/*  CONTACT ============================================================================= */

.contact {
    width: 100%;
    height: 100vh;
    background-color: #006850;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-wrapper {
    width: 60%;
    height: 78rem;
    display: flex;
    box-shadow: 0 3rem 7rem rgb(0 0 0 / 50%);
}

.contact-left {
    width: 35%;
    background: linear-gradient(rgba(15, 15, 15, 0.3), rgba(22, 22, 22, 0.6)), url(../img/footer-bckg.jpg) center no-repeat;
    background-size: cover;
}

.contact-right {
    width: 65%;
    background-color: #eee;
    padding: 3rem 10rem 10rem 10rem;
}

.contact-heading {
    //font-family: "Baloo Da 2", serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #272727;
    margin-bottom: 9rem;
    text-align: center;
}

input[type=text],
input[type=email],
select,
textarea {
    width: 100%;
    padding: 14px;
    border-radius: 3px;
    border: 1px solid #ccc;
    margin: 5px;
    font-size: 1.4rem;
}

.checkbox {
    margin: 10px 5px 10px 5px;
    font-size: 2rem;
}

.accept {
    font-size: 1.2rem;
}

button[type=submit] {
    background-color: #04AA6D;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.5rem;
    margin-left: 5px;
}

button[type=submit]:hover {
    background-color: #45a049;
}