/* Base Styles */
:root {
    --primary-color: #d35400; /* Earthy Orange */
    --secondary-color: #2c3e50; /* Dark Blue/Grey */
    --bg-color: #fbf8f1; /* Wheat Cream */
    --text-color: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Navigation */
header {
    background-color: #ffffff;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(rgba(242, 233, 222, 0.9), rgba(242, 233, 222, 0.9)), url('https://via.placeholder.com/1920x1080?text=Wheat+Field+Background') center/cover;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #555;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #e67e22;
}

/* Custom Creative Banner Section */
.creative-banner {
    padding: 40px 5%;
    text-align: center;
    background-color: #fff;
}

.creative-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Why Us Section */
.features {
    padding: 80px 5%;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Products Section */
.products {
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 80px 5%;
    text-align: center;
}

.products h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: #ffffff;
    color: var(--text-color);
    padding: 40px 20px;
    border-radius: 8px;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: #1a252f;
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    nav ul {
        display: none; 
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}
