@font-face {
    font-family: 'Poppins';
    src: url('/css/fonts/poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/css/fonts/poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/css/fonts/poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

        body {
    font-family: 'Poppins', sans-serif;
}


       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        header {
            background: linear-gradient(135deg, #2c5f7f 0%, #3a7ca5 100%);
            color: white;
            padding: 2rem 1rem;
            text-align: center;
            position: relative;
        }

        header nav {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        header nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        header nav a:hover {
            color: #b8d946;
        }

        .hero {
            text-align: center;
            padding: 2rem 1rem 1rem 1rem;
	}

        .leaf-branch {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 0 auto -1rem;
}

        h1 {
            font-size: 3rem;
            color: white;
            margin-bottom: 1rem;
            margin-top: -4.5rem;
	    font-weight: 300;
            letter-spacing: 3px;
        }

        .tagline {
            font-size: 1.8rem;
            color: #d4af37;
            margin-bottom: 2rem;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .section {
            padding: 3rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-tile {
    background-color: #f9f9f9;
    border-radius: 16px;
    padding: 4rem 1.5rem;
    text-align: center;
}

            .section-tile h2 {
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.section-tile p {
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.9;
    font-weight: 400;
}

    .about-content {
    text-align: center;
}

.about-content h2 {
    font-weight: 500;      /* matches Community */
    margin-bottom: 1.5rem;
}

.about-content p {
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.9;
    font-weight: 400;
}

    .about {
    background-color: #f9f9f9;
    padding: 4rem 0;   /* vertical spacing only */
}
        .about h2 {
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.about p {
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.9;
}

        .products {
            background-color: white;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .product-card {
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s;
        }

        .product-card:hover {
            box-shadow: 0 8px 20px rgba(44, 95, 127, 0.15);
            border-color: #b8d946;
            transform: translateY(-4px);
        }

        .product-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .product-card h3 {
            color: #2c5f7f;
            margin-bottom: 0.8rem;
            font-size: 1.3rem;
        }

        .product-card p {
            color: #666;
            margin-bottom: 1.2rem;
            font-size: 0.95rem;
        }

        .price {
            font-size: 1.8rem;
            color: #b8d946;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .add-to-cart {
            background-color: #2c5f7f;
            color: white;
            border: none;
            padding: 0.6rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .add-to-cart:hover {
            background-color: #3a7ca5;
        }

        footer {
            background-color: #2c5f7f;
            color: white;
            text-align: center;
            padding: 2rem 1rem;
            margin-top: 3rem;
        }

        footer p {
            margin-bottom: 0.5rem;
        }

        .social-links {
            margin-top: 1rem;
        }

        .social-links a {
            color: #b8d946;
            text-decoration: none;
            margin: 0 1rem;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            .tagline {
                font-size: 1.3rem;
            }

            header nav {
                gap: 1rem;
            }

            .product-grid {
                grid-template-columns: 1fr;
            }
        }

	.community {
    text-align: center;
}

.community h2 {
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.community p {
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.9;
}

.community-cta {
    margin-top: 2rem;
}

.community-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    background: #2c5f7f; /* ocean tone */
    color: #ffffff;
    transition: opacity 0.3s, transform 0.2s;
}

.community-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;       /* subtle border */
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;     /* white inputs on light background */
    color: #333;                   /* text color */
}

#contactForm textarea {
    min-height: 120px;             /* taller textarea */
}

#contactForm button {
    padding: 0.75rem 2rem;
    border-radius: 30px;
    border: none;
    background: #7a9b76; /* moss color */
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.2s;
}

#contactForm button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

#contactFormMessage {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #333; /* darker text for visibility */
}

.contact-form-container {
    max-width: 500px;
    margin: 1.5rem auto;
    text-align: center;
    background-color: #ffffff;   /* add a white card */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

