/* 
Theme Name: AgroProcessing Theme
Theme URI: http://yourwebsite.com/agro-processing-theme
Author: Your Name
Author URI: http://yourwebsite.com
Description: A clean, modern theme for Agro-Processing Business
Version: 1.0
License: GPL-2.0+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: agro-processing-theme
*/

/* Import Google Fonts: Poppins and Merriweather */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&family=Merriweather&display=swap');

/* Reset some default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Basic theme styling */
body {
  font-family: 'Merriweather', serif;
  background-color: #f1f1f1;
  color: #333;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  color: #4c9f38; /* Earthy Green */
}

a {
  color: #79c000; /* Fresh Lime */
  text-decoration: none;
}

a:hover {
  color: #8b5a2b; /* Rich Brown */
}

header {
  background-color: #79c000; /* Fresh Lime */
  padding: 20px 0;
}

header .logo {
  font-size: 1.5rem;
  color: #fff;
}

nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav a {
  color: #fff;
  text-transform: uppercase;
}

nav a:hover {
  color: #f1f1f1;
}

/* Hero Section */
.hero {
  background: url('assets/images/hero-bg.jpg') no-repeat center center;
  background-size: cover;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
  color: white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

button.cta-button {
  background-color: #79c000;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

button.cta-button:hover {
  background-color: #4c9f38;
}
