:root
{
    --green-vdark: rgb(0, 20, 0);
    --green-light: rgb(0, 255, 26);
    --green-mid: rgb(0, 135, 0);
    --green-dark: rgb(0, 80, 0);
    --orange: rgb(255, 200, 0);
    --Background: conic-gradient(from 270deg at 50% 50% ,white, green);
}

*
{
    padding: 0;
    margin: 0;
}
html
{
    margin: 0;
    padding: 0;
    width: 100dvw;
    height: 100dvh;
    scroll-snap-type: y mandatory;
    scroll-padding-top: 10px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body
{
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    scroll-snap-type: y-mandatory;
}
main, section,footer
{
    scroll-snap-align: start;
    scroll-padding-top: 0px;
}

header
{
    margin: 0;
    top: 1dvh;
    padding: 0;
    left: 50dvw;
    width: 90dvw;
    height: 50px;
    z-index: 200;
    display: flex;
    position: fixed;
    align-items: center;
    border-radius: 20px;
    flex-direction: row;
    justify-content: center;
    transform: translateX(-50%);
    backdrop-filter: blur(5px);
    background-color: #ffffff26;
    box-shadow: 2px 2px 10px 5px #00000029;
    border: solid 1px rgba(255, 255, 255, 0.179);
}

.hd-name
{
    width: 20%;
    height: 100%;
    display: flex;
    font-size: 2dvw;
    padding-left: 2%;
    color: #004d00;
    font-weight: 900;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
}
.hd-name img
{
    height: 110%;
    width: auto;
    padding-right: 10px;
}
.tabs
{
    justify-content: space-around;
    color: var(--color2);
    align-items: center;
    border-radius: 50px;
    display: flex;
    height: 95%;
    width: 70%;
    overflow: hidden;
    animation: box-reveal 1s ease-in-out forwards;
}
a
{
    list-style-type: none;
    text-decoration: none;
}
.tabs .tab
{
    width: 15%;
    height: 100%;
    display: flex;
    color: green;
    font-weight: 600;
    font-size: 1.5dvw;
    align-items: center;
    padding: 0 5px 0 10px;
    justify-content: center;
    font-family: Banshcrift, sans-serif;
}
.tabs li a
{
    width: 100%;
    height: 100%;
    display: flex;
    color:white;
    transition: 0.4s;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
}
.tabs .tab a:hover
{
    color: var(--green-mid);
    border-bottom: solid 6px var(--green-mid);
}

main
{
    background: linear-gradient(to top left, #046b04, #abe9ab);
    border: solid 5px green;
    border-radius: 10px;
    width: 99.5%;
    height: 99%;
    padding: 0;
    margin: 0;
}

.main-bg
{
    top: 50%;
    left: 50%;
    z-index: 1;
    display: flex;
    --rd-space: 50px;
    aspect-ratio: 1/1;
    position: absolute;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: translate(-50%,-50%);
    width: clamp(300px, 50dvw, 600px);
    background-image: url('image-removebg-preview (9).png');
    /*box-shadow: 0 0 0px calc(var(--rd-space)*1) #4caf50, 0 0 0px calc(var(--rd-space)*2) #83ee86, 0 0 0px calc(var(--rd-space)*3) #96e298;*/
}

.hero
{
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 90%;
    height: 70%;
    display: flex;
    position: absolute;
    align-items: start;
    flex-direction: column;
    justify-content: space-between;
    transform: translate(-50%,-50%);
}
.main-h1
{
    top: 50%;
    left: 50%;
    z-index: 0;
    font-size: 20dvw;
    font-weight: 300;
    background: url("media/image-removebg-preview\ \(8\).png") no-repeat center center/cover;
    -webkit-background-clip: text;   /* For Chrome, Safari */
    -webkit-text-fill-color: transparent;
    background-clip: text;           /* Standard property */
    color: transparent;              /* For Firefox */
    width: fit-content;
    position: absolute;
    height: fit-content;
    transform: translate(-50%,-50%);
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.second
{
    z-index: 100;
    color: #032b0364;
}

.hero .slogan
{
    min-width: 50%;
    font-size: 3.5dvw;
    color: var(--green-mid);
    animation: slideleft 1s ease-in-out forwards;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.hero .cta
{
    color: white;
    font-weight: 700;
    transition: 0.5s;
    overflow: hidden;
    font-size: medium;
    padding: 15px 30px;
    border-radius: 30px;
    border: solid 2px var(--green-dark);
    font-family: Banshcrift, sans-serif;
    animation: zoomfade 1s ease-in-out forwards;
    background: conic-gradient(from 270deg at 50% 50%, var(--green-mid), var(--green-light), var(--green-mid), var(--green-light), var(--green-mid));
}
.hero .cta:hover
{
    background: conic-gradient(from 90deg at 50% 50%, var(--green-light), var(--green-mid), var(--green-light), var(--green-mid), var(--green-light));
    border: solid 2px var(--green-light);
    color: var(--green-dark);
}

.sub-heading
{
    font-family: 'Agency FB', 'Arial Narrow', Arial, sans-serif;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 80%;
    left: 50%;
    font-size: 40px;
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}

main .contents
{
    right: 0;
    top: 50%;
    width: 40%;
    height: 70%;
    display: flex;
    position: absolute;
    align-items: center;
    padding-right: 10px;
    flex-direction: column;
    transform: translateY(-50%);
    justify-content: space-around;
}
.contents .content
{
    width: 90%;
    height: 20%;
    display: flex;
    overflow: hidden;
    align-items: center;
    flex-direction: column;
    color: var(--green-dark);
    backdrop-filter: blur(5px);
    justify-content: space-around;
    border-top: solid var(--green-mid) 5px;
    border-bottom: solid var(--green-mid) 5px;
    animation: box-reveal 1s ease-in-out forwards;
}
.content h2
{
    font-size: 30px;
    font-weight: 900;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.content p
{
    font-weight: 900;
    font-size: 1,5dvw;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.organic-badge 
{
    top: 20%;
    left: 10%;
    padding: 5px;
    width: 100px;
    margin-top: 2rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    position: absolute;
    backdrop-filter: blur(2px);
    border: solid 2px #002d00;
    transform: translate(-50%, -50%);
    animation: pulse 2s ease-in-out infinite;
    background-color: rgba(255, 255, 255, 0.5);
    /*animation: badge ease-in-out forwards;
    animation-timeline: scroll();*/
}

.organic-badge textPath 
{
    fill: #002d00;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 4px;
    font-family: sans-serif;
    text-transform: uppercase;
}

.organic-badge circle 
{
    stroke-width: 2;
    fill: none;
}

.organic-badge .icon 
{
    stroke:#002d00;
    stroke-width: 5px;
    fill: #abd6ab00;
}
.hook
{
    left: 50%;
    width: 60%;
    bottom: 1dvh;
    display: flex;
    --color: white;
    font-weight: 700;
    font-size: large;
    overflow: hidden;
    position: absolute;
    border-radius: 20px;
    align-items: center;
    color: var(--color);
    transform: translateX(-50%);
    justify-content: space-around;
    font-family: Arial, Helvetica, sans-serif;
    animation: tabs-reveal 1s ease-in-out forwards;
    hr
    {
        border: solid 1px var(--color);
        width: 20%;
    }
}

.main-socials
{
    top: 50%;
    right: 0px;
    height: 70%;	
    width: 50px;
    z-index: 100;
    display: flex;
    position: absolute;
    align-items: center;
    border-radius: 25px;
    flex-direction: column;
    justify-content: space-around;
    transform: translate(-50%,-50%);

    .line
    {
        border: solid 1px rgba(255, 255, 255, 0.434);
        height: 20%;
    }
    .social
    {
        background-color: rgba(255, 255, 255, 0.134);
        border: solid rgba(255, 255, 255, 0.51) 1px;
        box-shadow: 0 0 2px 1px white inset;
        animation: slideright 1s ease-in-out forwards;
        color: rgba(255, 255, 255, 0.51);
        backdrop-filter: blur(5px);
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        aspect-ratio: 1/1;
        transition: 0.4s;
        font-size: 2dvw;
        cursor: pointer;
        display: flex;
        padding: 3px;
        width: 40px;
        i
        {
            display: flex;      
            aspect-ratio: 1/1; 
            border-radius: 50%;
            align-items: center;
            justify-content: center;
        }
    }
}

#services-list
{
    gap: 30px;
    display: flex;
    width: 100dvw;
    height: 100dvh;
    flex-wrap: wrap;
    overflow-y: scroll;
    align-items: center;
    background-size: cover;
    justify-content: center;
    background: url(media/istockphoto-1301520562-1024x1024.jpg) center center fixed;
}
.service-card
{
    justify-content: space-around;
    backdrop-filter: blur(50px);
    flex-direction: column;
    border-radius: 10px;
    align-items: center;
    color: white;
    display: flex;
    width: 250px;
    padding: 7px;
    height: 30%;
}
.service-card:hover 
{
    background: conic-gradient(from 135deg at 50% 50%, var(--green-dark), var(--green-light), var(--green-dark), var(--green-light), var(--green-dark));
    box-shadow: 0px 0px 50px 10px var(--green-vdark);
    transition: 0.5s;
}
.service-card h2
{
    z-index: 1;
    width: 80%;
    text-align: center;
    font-weight: bolder;
    border-radius: 10px;
    color: var(--green-vdark);
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.service-card p 
{
    width: 90%;
    z-index: 1;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


#products-list
{
    font-family: 'Inter', sans-serif;
    background-color: #f9fdfb;
    color: #333;
    padding: 2rem;
    height: 90dvh;
    background: url(media/image-removebg-preview\ \(10\).png) no-repeat center center fixed;
    background-size: cover;
}

#products-list h1 
{
    background-color: #17a51728;
    backdrop-filter: blur(20px);
    border-radius: 50px;
    text-align: center;
    color: #2a5934;
    margin-top: 20px;
    color: black;
    padding: 5px;
}
.products 
{
    justify-content: center;
    align-items: center;
    overflow-y: scroll;
    flex-wrap: wrap;
    display: flex;
    height: 90%;
    gap: 20px;
}
.product-card 
{
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
    border: 1px solid #e0e4e2;
    backdrop-filter: blur(10px);
    background: #ffffff8d;
    flex-direction: column;
    border-radius: 12px;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    display: flex;
    width: 150px;
    height: 40%;
}
.product-card:hover 
{
    transform: translateY(-5px);
}
.product-icon 
{
    font-size: 2rem;
    color: #4caf50;
    margin-bottom: 1rem;
}
.product-title 
{
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.product-desc 
{
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.product-price 
{
    font-size: 1rem;
    font-weight: 600;
    color: #2a5934;
}
.about-section 
{
    background-image: url(media/c12c3f0e5d0e249ab41ef6371027b9e0.jpg);
    background-color: #032b03;
    text-align: center;
    overflow-y: hidden;
    padding-top: 70px;
    padding: 2rem;
    height: 90dvh;
}
.about-section h3 
{
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: #007000;
}
img.hero-image 
{
    max-width: 100%;
    height: auto;
}
.about-container 
{
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    backdrop-filter: blur(10px);
    background: #ffffff6e;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}
h1 
{
    font-size: 2rem;
    color: #2a5934;
    margin-bottom: 1rem;
    text-align: center;
}
h2 
{
    color: #4caf50;
    margin-top: 2rem;
    font-size: 1.2rem;
}
p 
{
    margin-bottom: 1rem;
}


.contact-section 
{
    margin: 0;
    padding: 0;
    height: 90dvh;
    position: relative;
    background: url() no-repeat center  fixed;
}

.contact-section h3 
{
    top: 40px;
    left: 50%;
    z-index: 6;
    width: 200px;
    display: flex;
    padding: 10px;
    margin-top: 30px;
    font-weight: bold;
    color: #001100aa;
    margin-bottom: 10%;
    position: absolute;
    align-items: center;
    border-radius: 50px;
    justify-content: center;
    backdrop-filter: blur(10px);
    transform: translateX(-50%);
    background-color: #4caf4f18;
    border: solid #4caf4f70 1px;
    font-family: Arial, Helvetica, sans-serif;
}

form 
{
    width: clamp(300px, 60dvw, 600px);
    transform: translate(-50%, -50%);
    flex-direction: column;
    align-items: center;
    position: absolute;
    margin: 0 auto;
    display: flex;
    z-index: 5;
    left: 50%;
    top: 60%;
}

form input, form textarea 
{
    color: white;
    padding: 0.8rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: bolder;
    backdrop-filter: blur(50px);
    border: 1px solid #00ff37;
    background-color: #0012001e;
    font-family: Arial, Helvetica, sans-serif;
}
form input
{
    width: 80%;
}
form textarea 
{
    resize: vertical;
    width: 90%;
    border-bottom-right-radius: 0px;
}
form button 
{
    background-color: #007000;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    padding: 0.8rem;
    color: white;
    border: none;
    width: 150px;
}
.con-bg
{
    top: 0px;
    gap: 5%;
    left: 50%;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #001200;
    transform: translateX(-50%);
    box-shadow: 0 0 20px 5px #004d0029,
                0 0 40px 5px #d2e0d2;
}
.con-bg-graphic
{
    --con-bg-color: #00ff37;
    height: 200px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: solid 1px var(--con-bg-color);
    background-color: var(--con-bg-color);
    box-shadow: 0 0 100px 5px var(--con-bg-color);
}
footer 
{
    background: #004d00;
    text-align: center;
    color: white;
    padding: 1rem;
}
  
@keyframes badge
{
    0%
    {
        left: 50%;
        top: 50%;
    }
    50%
    {
        left: 30%;
        top: 70%;
    }
    100%
    {
        left: 80%;
        top: 50%;
    }

}
@keyframes rotate-clockwise
{
    0%
    {
        transform: rotate(0deg);
    }
    100%
    {
        transform: rotate(360deg);
    }
}
@keyframes box-reveal
{
    0%
    {
        width: 0%;
        height: 0%;
    }
    50%
    {
        transform: scaleX(100%);
        height: 0%;
    }
    100%
    {
        transform: scale(100%);
    }
}
@keyframes tabs-reveal
{
    0%
    {
        width: 0%;
    }
    100%
    {
        width: 80%;
    }
}
@keyframes  pulse/*Makes the object change size in a pulsating motion*/
{
    0%, 100%{transform: scale(0.95);}
    50%{transform: scale(1);}
    /*animation: pulse 2s ease-in-out infinite;*/
}
@keyframes bounce
{
    0%, 100%{transform: translateY(0);}
    50%{transform: translateY(-10px);}
    /*animation: bounce 2s ease-in-out infinite;*/
}
@keyframes revolution
{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
    /*animation: revolution 2s infinite linear;*/
}
@keyframes disp-rev
{
    0%{transform: rotateZ(0deg);}
    100%{transform: rotateZ(360deg);}
    /*animation: revolution 2s infinite linear;*/
}
@keyframes antirevolution
{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(-360deg);}
    /*animation: antirevolution 2s infinite linear;*/
}
@keyframes slidein
{
    0%{transform: translateX(-100%);}
    100%{transform: translateX(0);}
    /*animation: slidein 2s forwards infinite;*/
}
@keyframes slideup
{
    0%{transform: translateY(-100%);}
    100%{transform: translateY(0);}
    /*animation: slidein 2s forwards infinite;*/
}
@keyframes popslideup
{
    0%{transform: translateY(-100%);}
    100%{transform: translateY(0);}
    /*animation: slidein 2s forwards infinite;*/
}
@keyframes slideleft /*Slides In from the far Left*/
{
    0%{transform: translateX(-100%);}
    100%{transform: translateX(0);}
}
@keyframes slideright
{
    0%{transform: translateX(100%);}
    100%{transform: translateX(0);}
}
@keyframes zoomfade
{
    0%
    {
        transform: scale(0.001);
        opacity: 0;
    }
    50%
    {
        opacity: 0.5;
    }
    100%
    {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes downbounce
{
    0%{transform: translateY(-100%);}
    60%{transform: translateY(10%);}
    80%{transform: translateY(-10%);}
    100%{transform: translateY(0);}
}
@keyframes slidedown
{
    0%{transform: translateY(-150%);}
    100%{transform: translateY(0);}
}
@keyframes opening
{
    0%{z-index: 300;}
    75%{
        z-index:300;
        transform: translateY(0);
    }
    100%
    {
        transform: translateY(-150dvh);
    }
}
