*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-family:'conforetaa', sans-serif;
    -webkit-user-select: none;
    user-select: none ;
    scroll-behavior: smooth;
}
::-webkit-scrollbar
{
    width: 7px;
    background-color: #ffffffb1;
}
::-webkit-scrollbar-thumb
{
    width: 7px;
    background-color: #48a90f;
    border-radius: 2px;
}


nav
{
display: flex;
position: fixed;
align-items: center;
justify-content: space-around;
height: 70px;
background-color: rgba(255,255,255,0.703);
-webkit-backdrop-filter: blur(30px) ;
backdrop-filter: blur(30px);
width: 100%;
z-index: 1;
}
.logo
{
display: flex;
align-items: center;
}
i{
    font-size: 30px;
    color: #06501e;
}
.logo h3
{
color: #2c5539;
font-size: 30px;
}
.logo
{
text-decoration: none;
}

.nav a
{
text-decoration: none;
color: #1f733a;
font-size: 20px;
font-weight: 700;
margin: 20px;
padding: 13px;
transition: all 0.1s ease;
}
.nav a:hover
{
border:none ;
background-color: #108134;
color: aliceblue;
border-radius: 50px;
}
.homepage {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 600px;
    background: url(../img/fruits.jpg);  
    background-size: cover;  
    background-position: center;  
    background-attachment: fixed;  
}

.content {
    color: white;  
    text-align: left; 
    margin-left: 50px;  
}

.content h2 {
    font-size: 40px;
    font-weight: bold;
}

.content h1 {
    font-size: 100px;
    color: #FF8000;
    margin: 30px 0;
    text-shadow: 0 0 10px #FF8000, 0 0 20px #FF8000; 
}

.content h3 {
    font-size: 30px;
    margin: 20px 0;
}

.content button {
    margin-top: 30px;
    height: 70px;
    width: 190px;
    border: none;
    background-color: #FF8000;
    color: white;
    border-radius: 40px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.content button:hover {
    box-shadow: 0 10px 50px 5px rgba(255, 128, 0, 0.5); 
}
.section2
{
    background-color: white;
    box-shadow: 0 -150px 80 px 80 px rgb(255, 255,255);
    display: flexbox;
    margin-bottom: 50px;
}
.header1
{
    width: 80%;
    margin-left: 10%;
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    height: 70px;
    align-items: center;
    padding-top: 70px;
}
.header1 button
{
    height: 70px ;
    width: 180px;
    background-color: #3fa603;
    color: aliceblue;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.categories {
    display: flex; 
    justify-content: space-between; 
    gap: 10px; 
    margin-top: 50px;
    padding: 0 10%;
}

.item {
    width: 18%; 
    background-color: #6ccd461e;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    padding: 10px;
}

.item img {
    width: 100%; 
    height: 150px;
    object-fit: cover; 
    border-radius: 8px; 
}

.item h3 {
    font-size: 18px;
    color: #0b5962;
    margin-top: 10px;
}

.item h4 {
    font-size: 14px;
    color: #88b64c;
    margin-top: 5px;
}

.item:hover {
    background-color: #b0502949; 
}
.header {
    text-align: center;
    margin-top: 50px;
}

.header h1 {
    font-size: 30px;
}

.header button {
    height: 50px;
    width: 180px;
    background-color: #3fa603;
    color: white;
    font-size: 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header button:hover 
{
    background-color: #2f8a02;
}
.section3
{
margin-top: 80px;
}
.header2
{
 width: 80%;
margin-left: 10%;
margin-top: 0px;
display: flex;
justify-content: space-between;
height: 70px;
align-items: center;
padding-top: 70px;
}
.header2 button
{
height: 70px;
width: 180px;
background-color: #3fa603;
color: aliceblue;
font-size: 20px;
font-weight: 700;
border: none;
border-radius: 35px;
cursor: pointer;
transition: all 0.3s ease;
}
.products
{
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 80%;
    margin-left: 10%;
    gap: 20px;
}

.products div
{
    width: 100%;
    margin-top: 30px;
    box-shadow: 1px 2px 11px 4px rgb(14 55 54 /15%);
    border-radius: 8px;
    position: relative;
    cursor: pointer;
}

.products img
{
    width: 100%;
    height: 250px;
    margin-left: 0;
    object-fit: cover;
}

.products h4
{
    margin-left: 20px;
}
.products h2
{
 margin-left: 20px;
 margin-top: 20px;
}
.products h3
{
margin-left: 20px;
margin-top: 30px;
margin-bottom: 30px;
font-size: 22px;
}
.products h3 span
{
    color: #2F8000;
}
.products .fa-cart-shopping
{
    position: absolute;
    right: 0px;
    bottom: 0px;
    background-color: #3fa603;
    color: white;
    padding: 10px;
    border-radius: 10px 0 10px 0;
}
.products .fa-cart-shopping:hover
{
    background-color: #FF8000;
    transition: all 0.1s;
}
.products .fa-heart
{
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 25px;
    color: #2F8000;
}
.products .offer
{
    position: absolute;
    top: 15px;
    left: 0px;
    padding: 4px 10px;
    width: 50px;
    background-color: #FF8000;
    color: white;
    font-weight: 700;
    clip-path: polygon(100% 0 , 82% 51% , 100%, 0% 100%, 0 50%, 0% 0%);
}
.about {
    display: flex;
    margin-top: 50px;
    width: 80%; 
    margin-left: 10%; 
    justify-content: space-between;
    align-items: center;
    flex-direction: row; 
}

.img {
    width: 47%; 
}

.img img {
    width: 100%;
    border-radius: 10px; 
    -webkit-user-drag: none; 
    object-fit: cover;
}
.content3 {
    width: 47%; 
    text-align: left;
}

.content3 h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #165f28; 
}

.content3 h2 {
    font-size: 18px;
    line-height: 1.6; 
    color: #7b8b52; 
}
.contact {
    width: 80%;
    margin: 50px auto;
    text-align: center;
    font-family: Arial, sans-serif;
}

.contact h1 {
    font-size: 36px;
    color: #2c5539;
    margin-bottom: 20px;
}
/* Contact Section */
.contact-section {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 50px 10%;
    gap: 50px;
    background-color: #f9f9f9;
}

.contact-left {
    width: 40%;
}

.contact-left h1 {
    font-size: 36px;
    color: #2c5539;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

input, textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

textarea {
    resize: none;
    height: 100px;
}

button {
    background-color: #3fa603;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #2f8a02;
}

.error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

/* Footer Section */
footer {
    background-color: #333;
    color: white;
    padding: 20px 10%;
    text-align: center;
}

.footer-content h3 {
    font-size: 24px;
    color: #FF8000;
    margin-bottom: 10px;
}

.footer-content p {
    margin: 0 auto 20px auto;
    max-width: 600px;
}

.socials {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0 0 0;
}

.socials li {
    display: inline-block;
}

.socials li a {
    color: white;
    font-size: 20px;
    transition: color 0.3s ease;
}

.socials li a:hover {
    color: #FF8000;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
}
/* ================= RESPONSIVE ================= */

/* Desktop - 3 products */
.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Tablet */
@media (max-width: 900px) {

    .products {
        grid-template-columns: repeat(2, 1fr);
        width: 90%;
        margin-left: 5%;
    }

    .categories {
        flex-wrap: wrap;
        justify-content: center;
    }

    .item {
        width: 40%;
    }

    .about {
        width: 90%;
        margin-left: 5%;
    }
}

/* Mobile */
@media (max-width: 600px) {

    nav {
        height: auto;
        min-height: 70px;
        flex-direction: column;
        padding: 10px 0;
    }

    .nav a {
        font-size: 15px;
        margin: 5px;
        padding: 8px;
    }

    .homepage {
        height: 600px;
        background-attachment: scroll;
    }

    .content {
        margin-left: 25px;
        margin-right: 25px;
    }

    .content h2 {
        font-size: 28px;
    }

    .content h1 {
        font-size: 55px;
    }

    .content h3 {
        font-size: 22px;
    }

    .content button {
        width: 160px;
        height: 55px;
    }

    /* Categories */
    .categories {
        padding: 0 5%;
        gap: 15px;
    }

    .item {
        width: 100%;
    }

    /* Products */
    .products {
        width: 90%;
        margin-left: 5%;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .products div {
        width: 100%;
    }

    .products img {
        width: 100%;
        height: 250px;
        margin-left: 0;
        object-fit: cover;
    }

    /* About */
    .about {
        width: 90%;
        margin-left: 5%;
        flex-direction: column;
    }

    .img,
    .content3 {
        width: 100%;
    }

    .content3 {
        margin-top: 30px;
    }

    /* Contact */
    .contact-section {
        flex-direction: column;
        padding: 40px 5%;
    }

    .contact-left {
        width: 100%;
    }

    input,
    textarea {
        width: 100%;
        box-sizing: border-box;
    }
}