/*
Theme Name: Brick Street Farms Clone
Theme URI: https://yourdomain.com/
Author: Your Name
Author URI: https://yourdomain.com/
Description: A custom theme inspired by Brick Street Farms homepage and Talent Marketplace.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: brickstreetclone
*/

/* Reset and Base Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Header */
.site-header {
  background: #1c1c1c;
  color: #fff;
  padding: 20px 0;
}
.logo a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}
.main-nav a {
  color: #fff;
  text-decoration: none;
}
.submenu {
  display: none;
  position: absolute;
  background: #333;
  padding: 10px;
}
.main-nav li:hover .submenu {
  display: block;
}

/* Hero */
.hero {
  background: url('https://source.unsplash.com/1600x600/?farm,greens') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}
.hero h1 {
  font-size: 48px;
  margin: 0;
}
.hero p {
  font-size: 20px;
  margin: 10px 0;
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #6db65b;
  color: #fff;
  text-decoration: none;
  margin-top: 20px;
}

/* Search */
.search-section {
  padding: 40px 0;
  background: #f5f5f5;
}
.search-section input {
  width: 100%;
  padding: 15px;
  font-size: 16px;
}

/* Categories */
.categories {
  padding: 60px 0;
}
.categories h2 {
  text-align: center;
  margin-bottom: 40px;
}
.category-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.category-card {
  width: 300px;
  text-align: center;
}
.category-card img {
  width: 100%;
  border-radius: 10px;
}
.category-card h3 {
  margin-top: 10px;
}

/* Footer */
.site-footer {
  background: #1c1c1c;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}
