/* styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* styles.css */

header {
    background-color: #006400; /* Change this color */
    color: white;
    text-align: center;
    padding: 1em 0;
    /* Add text shadow for better readability */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

nav a {
    color: white;
    margin: 0 1em;
    text-decoration: none;
    flex: 1;
    text-align: center;
}

.hero {
    position: relative;
    background-image: url('index.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4em 1em;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3em;
    margin: 0;
    color: #ffffff; /* White text */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); /* Text shadow for readability */
}

.hero p {
    font-size: 1.5em;
    margin: 0.5em 0;
    color: #ffffff; /* White text */
}


.sections {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 2em 0;
}

.container {
    flex: 1;
    padding: 2em;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.section {
    flex: 1;
    margin: 1em;
    padding: 2em;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s;
}

.section:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
}

.section a {
    text-decoration: none;
    color: inherit;
}

footer {
    background-color: #006400; /* Change this color */
    color: white;
    text-align: center;
    padding: 1em 0;
    margin-top: auto; /* Ensures the footer stays at the bottom if content is short */
}

h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
    text-align: center;
}

p {
    margin: 1em 0;
    line-height: 1.6;
}

hr {
    border: none;
    height: 1px;
    background-color: #ddd;
    margin: 2em 0;
}

.contact-info {
    max-width: 600px;
    margin: 2em auto;
    padding: 1em;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    margin-bottom: 1em;
}

.contact-info p {
    margin: 0.5em 0;
    font-size: 1.1em;
    line-height: 1.5;
}

.contact-info a {
    color: #006400;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}








.container2 {
    max-width: 800px;
    margin: 0 auto;
    padding: 2em;
    background-color: white; /* White container background */
    box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Subtle shadow for container */
    border-radius: 8px; /* Rounded corners */
}
.product-categories {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
.product-category {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 10px;
    padding: 20px;
    width: 220px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}
.product-category:hover {
    transform: scale(1.05);
}
.product-category h3 {
    text-align: center;
    color: #444;
}
.product-category ul {
    list-style: none;
    padding: 0;
}
.product-category ul li {
    padding: 5px 0;
    text-align: center;
}

.spacer {
    display: inline-block;
    width: 0.5cm;
}

footer a {
    color: white;
    text-decoration: none;
}