* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    color: #333;
}

/* Header */
header {
    background: #0a1101;
    color: white;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    width: 100%;
    height: 80px;
    cursor: pointer;
}

/* Desktop Nav */
nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

.buy-btn {
    background: #5D6B2F;
    padding: 10px 22px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.buy-btn:hover {
    background: #4a5426;
}

/* Mobile Menu Button */
#menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
}

/* Mobile Menu */
#mobile-menu {
    position: fixed;
    width: 100%;
    z-index: 200;
    background: #8a9b4f !important;
    text-align: center;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: 0.3s;
}

#mobile-menu a {
    display: block;
    padding: 12px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-bottom: 1px solid #5D6B2F;
}

#mobile-menu a:hover {
    background: #3d4523;
}

/* Show menu */
#mobile-menu.show {
    max-height: 400px;
    opacity: 1;
}

/* Hero Section */


#hero-banner h1 {
    font-size: 70px;
    font-family: Georgia, serif;
    font-weight: 300;
}

#hero-banner p {
    font-size: 20px;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Inner preview box */
.preview-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    max-width: 600px;
    margin: 40px auto 0;
}

.preview-box img {
    width: 100%;
    border-radius: 10px;
    margin-top: 10px;
}


/* Responsive */
@media (max-width: 900px) {

    nav,
    .buy-btn {
        display: none;
    }

    #menu-toggle {
        display: block;
    }

    #hero-banner h1 {
        font-size: 40px;
    }
}



.product-card {
    background: linear-gradient(145deg, #abbd87, #e7e9da);
    border-radius: 20px;
    border: 1px solid #d8dcc4;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    cursor: pointer;
    text-align: center;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 15px 40px rgba(77, 88, 40, 0.35);
    border-color: #4d5828eb;
}

.product-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}



.product-card p {
    color: #555;
    font-size: 17px;
    margin-bottom: 6px;
}

.product-card span {
    display: block;
    font-size: 20px;
    color: #7d8860;
    margin-bottom: 18px;
    font-weight: 600;
}

.product-card:hover::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 2px solid rgba(77, 88, 40, 0.2);
    box-shadow: 0 0 25px rgba(77, 88, 40, 0.3);
    transition: 0.4s ease;
}

.highlight-section {
    margin-top: 50px;
    padding: 60px 20px;
    text-align: center;
    font-family: "DM Sans", sans-serif;
}

.highlight-title {
    font-size: 32px;
    font-weight: 700;
    color: #4d5828eb;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}



.highlight-box {
    padding: 25px;
    background: linear-gradient(145deg, #5d6b2f, #8fa54a);
    border: 1px solid #d8dcc4;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.highlight-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 35px rgba(77, 88, 40, 0.25);
    border-color: #4d5828eb;
}

.highlight-box h3 {
    font-weight: 600;
    font-size: 28px;
    color: #ffffff;
    line-height: 1.6;
}

.highlight-box p {
    font-size: 15px;
    color: #ffffff !important;
    line-height: 1.6;
}

.site-footer {
    background: linear-gradient(135deg, #a1c96dab, #c8d98eeb);
    color: #233105;
    padding: 60px 20px 30px;
    font-family: "DM Sans", sans-serif;
}


.footer-about img {
    width: 60px;
    height: 60px;
}

.footer-about h3 {
    margin-top: 15px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #303b0b;
    ;
}

.footer-about p {
    line-height: 1.6;
    color: #000000ad;
}

.footer-contact h4,
.footer-social h4 {
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 10px;
    color: #5d6b2f;
}

.footer-contact p,
.footer-social ul li {
    color: #000000ad;
    font-size: 15px;
    margin-bottom: 6px;
}

.footer-social ul {
    list-style: none;
    padding: 0;
}

.footer-social ul li a {
    color: #000000ad;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
}

.footer-social ul li a:hover {
    color: #000000;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(5, 50, 4, 0.523);
    padding-top: 20px;
    margin-top: 30px;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 14px;
    color: #042002;
}


@media(max-width: 767px) {

    .footer-about img {
        width: 85px;
        height: 85px;
    }

    .highlight-box h3 {
        font-weight: 600;
        font-size: 25px !important;
        color: #ffffff;
        line-height: 1.6;
    }

    .footer-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;

        margin: auto;
    }

    .footer-about h3 {
        font-size: 20px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .highlight-grid {
        margin-top: 50px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
    }

    .div-container {
        text-align: center;
        padding: 50px 40px;
    }

    .highlight-box {
        padding: 18px;
    }

    .div-container h2 {

        font-size: 28px;
        font-family: Georgia, serif;
        font-weight: 800;
        color: #325a1d;
    }

    .div-container p {
        font-size: 16px;
        color: #666;
        margin-top: 8px;
    }

    .product-container {
        margin-top: 50px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;

        font-family: "DM Sans", sans-serif;
    }

    #hero-banner {
        background-color: #4d5828eb;
        background-image: url('./images/blur-img.png');
        background-size: cover;
        background-blend-mode: multiply;
        padding: 50px 20px;
        text-align: center;
        color: white;
        min-height: 60vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .product-card h3 {
        margin: 15px 0 5px;
        font-size: 22px;
        font-weight: 700;
        color: #4d5828;
        letter-spacing: 0.5px;
    }
}

@media(min-width: 768px) and (max-width: 900px) {
    .div-container {
        text-align: center;
        padding: 60px 80px;
    }

    .div-container h2 {

        font-size: 30px;
        font-family: Georgia, serif;
        font-weight: 800;
        color: #325a1d;
    }

    .div-container p {
        font-size: 18px;
        color: #666;
        margin-top: 8px;
    }

    .product-container {
        margin-top: 50px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        padding: 35px;
        font-family: "DM Sans", sans-serif;
    }

    .footer-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: auto;
    }

    .highlight-grid {
        margin-top: 50px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    #hero-banner {
        background-color: #4d5828eb;
        background-image: url('./images/blur-img.png');
        background-size: cover;
        background-blend-mode: multiply;
        padding: 80px 20px;
        text-align: center;
        color: white;
        min-height: 80vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .product-card h3 {
        margin: 15px 0 5px;
        font-size: 24px;
        font-weight: 700;
        color: #4d5828;
        letter-spacing: 0.5px;
    }
}

@media (min-width: 901px) {
    .footer-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: auto;
    }

    .highlight-grid {
        margin-top: 50px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .div-container {
        text-align: center;
        padding: 60px 160px;
    }

    .div-container h2 {

        font-size: 47px;
        font-family: Georgia, serif;
        font-weight: 800;
        color: #325a1d;
    }

    .div-container p {
        font-size: 18px;
        color: #666;
        margin-top: 8px;
    }

    .product-container {
        margin-top: 50px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        padding: 35px;
        font-family: "DM Sans", sans-serif;
    }

    #hero-banner {
        background-color: #4d5828eb;
        background-image: url('./images/blur-img.png');
        background-size: cover;
        background-blend-mode: multiply;
        padding: 80px 20px;
        text-align: center;
        color: white;
        min-height: 80vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .product-card h3 {
        margin: 15px 0 5px;
        font-size: 24px;
        font-weight: 700;
        color: #4d5828;
        letter-spacing: 0.5px;
    }
}
.img-div img{
    width: 70px;
    height: 70px;
}
