html
{
    scroll-behavior: smooth;
}

*
{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* Width */
::-webkit-scrollbar {
    width: 1.2vw;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    backdrop-filter: blur(5px);
    background: rgba(188, 188, 188, 1);
}

header
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 7rem;
    /* background-color: var(--main-color); */
    z-index: 1;
    transition: 0.3s;
}

header.scroll
{
    position: fixed;
    top: -10rem;
    left: 0;
    width: 100%;
    height: 7rem;
    /* background-color: var(--main-color); */
    z-index: 1;
    transition: 0.3s;
}

.navbar{
    position: fixed;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: transparent;
    width: 100%;
    height: 140px;
    z-index: 10;
}

nav
{
    position: relative;
    display: flex;
    padding: 2% 6% 0%;
    justify-content: space-between;
    z-index: 2;
    width: 100%;
}

nav img
{
    width: 130px;
    height: auto;
    filter: brightness(1.1);
}

.nav-links
{
    flex: 1;
    text-align: right;
    padding-top: 20px;
}

.nav-links ul li
{
    list-style: none;
    display: inline-block;
    padding: 8px 20px;
    position: relative;
    margin: 0px 2.5px;
    border-radius: 10px;
    background-color: rgba(83, 83, 83, 0.2);
    backdrop-filter: blur(5px);
}

.nav-links ul li a
{
    color: rgb(255, 255, 255);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;

    /* text-shadow: 1px 1px 5px #000, 1px 1px 5px #000; */
    /* mix-blend-mode:multiply; */
}

.nav-links .active
{
    background-color: rgba(15, 184, 0, 0.5);
    backdrop-filter: blur(5px);
}

.nav-links .menu-close
{
    display: none;
}

.nav-links .active:hover
{
    background-color: rgba(16, 161, 2, 0.5);
    backdrop-filter: blur(5px);
}

.nav-links ul li:hover
{    
    background-color: rgba(121, 121, 121, 0.5);
}

.menu-icon
{
    display: none;
}

/* Media Querey */
@media (max-width: 700px) 
{
    nav
    {
        justify-content: center;
    }

    nav img
    {
        width: 130px;
        height: auto;
    }

    .logo
    {
        display: none;
    }

    nav a
    {
        transform: translateY(60%);
    }

    .nav-links
    {
        padding: 0;
        position: fixed;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        height: 100vh;
        width: 100%;
        top: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2;
        transform: scale(0);
        transition: all 0.2s;
        /* display: none; */
    }

    .nav-links ul li
    {
        display: block;
        text-align: center;
        margin: 20% 0%;
        background-color: transparent;
        backdrop-filter: none;
    }

    .nav-links .menu-close
    {
        display: block;
        background-color: rgba(161, 2, 2, 0.5);
        margin: 20% 20%;

    }

    .menu-icon
    {
        position: fixed;
        display: block;
        top: 0;
        right: 0;
        transform: translate(-20px, 40px);
        color: #ffffff;
    }

    .menu-icon img
    {
        height: auto;
        width: 30px;
        background-color: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(20px);
        border-radius: 5px;
        padding: 1px 3px;
        transition: all 1s;

    }
}

    /* Nav Menu */
/* Nav complete, add js part later */
.hero
{
    min-height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url('images/background-foliage-4.jpg');
    background-position: top;
    background-size: cover;
    background-attachment: fixed;
    background: rotate(90deg);
    position: relative;
}

.text-box
{
    width: 90%;
    color: #ffffff;
    position: absolute;
    bottom:5%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box img
{
    display: none;
}

.text-box h1
{
    font-size: 62px;
    font-weight: 600;
}

.text-box p
{
    margin: 10px 0 40px;
    font-size: 18px;
    color: #ffffff;
}

.hero-btn
{
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 12px 34px;
    font-size: 15px;
    background: transparent;
    position: relative;
    transition: all 0.5s;
}

.hero-btn:hover
{
    border: 1px solid rgba(16, 161, 2, 0.5);
    background-color: rgb(15, 161, 2, 0.7);
    transform: scale(1.1);
    transition: all 0.5s;
}


@media (max-width: 700px)  
{
    .hero
    {
        min-height: 20vh;
        width: 100%;
        background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url('images/background-foliage-4.jpg');
        background-position: right;
        background-size: cover;
        background-attachment: fixed;
        background: rotate(90deg);
        position: relative;
    }

    .text-box
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        top: 50%
    }
    .text-box img
    {
        display: block;
        height: 130px;
        padding: 30px 0px;
        /* transform: translateX(50%); */
    }

    .text-box h1
    {
        font-size: 30px;
    }

    .text-box p
    {
        margin: 0px 0 40px;
    }
}       

/* Sections */
.section
{
    width: 85%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}

h1
{
    font-size: 36px;
    font-weight: 600;
}

p
{
    color: rgb(66, 66, 66);
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    padding: 20px 30px;
}

.row
{
    padding: 2.5% 0% 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* background-color: rgba(0, 0, 0, 0.2); */
    border-radius: 10px;
}

.column
{
    text-align: justify;
    /* flex-basis: 31%; */
    width: 100%;
    /* background: rgba(199, 199, 199, 0.5); */
    backdrop-filter: blur(10px);
    border-radius: 10px;
    /* padding: 20px 10px; */
    box-sizing: border-box;
    transition: all 1s;
    display: flex;
    justify-content: center;
}

h3
{
    padding-left: 10px;
    color: rgba(0, 0, 0, 0.87);
    text-align: center;
    font-weight: 600;
    margin: 10px 0px;
    /* text-shadow: 0px 0px 20px black; */
}

/* Cards */
.card
{
    width: 70%;
    height: 50vh;
    background: linear-gradient(rgba(4, 9, 30, 0.8), rgba(4, 9, 30, 0.8)), url('images/pot-plants.jpg');
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.card:hover
{
    transform: scale(1.01);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 1);
}

.card h1
{
    font-size: 60px;
    color: #ffffff;
}

.column a:visited 
{
    color: rgba(0, 0, 0, 0.87);  
}

@media (max-width: 700px) 
{   
    .card
    {
        width: 100%;
        height: 40vh;
    }
    
    .card h1
    {
        font-size: 30px;
        text-align: center;
        color: #ffffff;
    }
    
    .column a:visited 
    {
        color: rgba(0, 0, 0, 0.87);  
    }
    
}


/* Footer Section */
footer
{
    padding-bottom: 10px;
    width: 100%;
}

footer .section img
{
    width: 15px;
}

@media (max-width: 700px) 
{
    p
    {
        font-size: 15px;
    }
    footer .section
    {
        padding: 0;
    }
    
    footer .section img
    {
        width: 12px;
    }
    
}