html
{
    scroll-behavior: smooth;
}

*
{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.hero
{
    min-height: 100vh;
    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: center;
    background-size: cover;
    background-attachment: fixed;
    background: rotate(90deg);
    position: relative;
}
/* Nav complete, add js part later */

.text-box
{
    width: 90%;
    color: #ffffff;
    position: absolute;
    top:55%;
    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)  
{
    .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;
    }
}       

/* ------------About Section------------ */
.section
{
    width: 85%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

h1
{
    font-size: 36px;
    font-weight: 600;
}

p
{
    color: rgb(66, 66, 66);
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    padding: 20px 30px;
}

.row
{
    padding: 2.5% 5% 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-color: rgba(0, 0, 0, 0.2); */
    border-radius: 10px;
}

.column
{
    width: 100%;
    background: rgba(199, 199, 199, 0.5);
    background: rgba(199, 199, 199, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px 10px;
    box-sizing: border-box;
    transition: all 1s;
}

h3
{
    padding-left: 10px;
    color: rgba(0, 0, 0, 0.87);
    text-align: center;
    font-weight: 600;
    margin: 10px 0px;
}

.column .hero-btn
{
    width: max-content;
    color: rgb(24, 24, 24);
    font-weight: 500;
    border: 1px solid #777;
    padding: 12px 34px;
}

.column .hero-btn:hover
{
    background-color: rgb(240, 240, 240);
}

@media (max-width: 700px) 
{
    p
    {
        font-size: 15px;
    }
    .row
    {
        flex-direction: column;
    }

    .column
    {
        margin-bottom: 5%;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    }
    
    .column:hover
    {
        box-shadow: 0 0 0;
        transform: scale(1);
    }
}

/* Catalogue Page */
#catalogue
{
    padding-top: 50px;
}

#catalogue .row
{
    padding-top: 0;
    padding-bottom: 0px;
    /* justify-content: center; */
    /* align-items: center; */
}

#catalogue .camp-col p
{
    color: #969696;
}

.row a
{
    text-decoration: none;   
    /* flex-basis: 32%; */
    width: 100%;
}

#last
{
    justify-content: space-around;

}

/* Cards */
#catalogue .row .column
{
    background-color: transparent;
    box-shadow: none;
    margin: 0;
}

.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);  
    }
    
}

.container-btn
{
    color: #ffffff;
    height: fit-content;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    transition: all 0.5s ease-in-out;
}


.ext-catalogue
{
    width: 100%;
    position: relative;
    /* height: 20px; */
    margin: 20px;
    padding: 20px;
    top: 30px;
    /* position: absolute; */
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
    align-items: center;
    color: #fafafa;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border: 1px;
    border-radius: 50px;
    transform: scale(1);
    transition: all 0.5s;
}

.ext-catalogue:hover
{
    /* transform: scale(2);
    border: 2px solid rgba(16, 161, 2, 0.5); */
    transform: scale(1.1);
    background-color: rgba(17, 202, 0, 0.7);
    /* color: rgb(68, 68, 68); */
    
    transition: all 0.5s ease-in-out;
}

#standerds .row .column
{
    flex-basis: 31%;
    height: max-content;
    /* padding-top: 60px; */
}

.column img
{
    width: 30%;
}


/* Call to Action Section */
.container
{
    width: 100%;
    /* height: 50vh; */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/cta-background.jpg');
    margin-bottom: 40px;
    background-position:unset;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fafafa;
}

.container h1
{
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    margin-top: 40px;
    padding: 0px 20px;
    line-height: 48px;
    font-size: 35px;
}

.container h2
{
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    padding: 20px;
    font-size: 16px;
}

.container .hero-btn
{
    backdrop-filter: blur(2px);
    cursor: pointer;
    margin: 30px;
}