/* Basic reset and typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Navigation */
.navbar {
  background-color: #4CAF50;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}
.navbar .logo {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}
.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.navbar .nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.navbar .nav-links a:hover {
  text-decoration: underline;
}

/* Hero section */
.hero {
  background-image: url('https://via.placeholder.com/1600x800?text=Delray+Mango+Growers');
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: #fff;
  margin-bottom: 2rem;
}
.hero-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 8px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Sections */
.section {
  padding: 4rem 0;
}
.alt-bg {
  background-color: #e9f5e9;
}
.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #333;
}
.section p {
  margin-bottom: 1rem;
}

/* Farm list */
.farm-list {
  list-style: disc inside;
  margin-left: 1rem;
}
.farm-list li {
  margin-bottom: 0.5rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Events list */
.events-list {
  list-style: disc inside;
  margin-left: 1rem;
}
.events-list li {
  margin-bottom: 0.5rem;
}

/* Address */
address {
  font-style: normal;
  line-height: 1.5;
}
address a {
  color: #4CAF50;
  text-decoration: none;
}
address a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}
.footer p {
  margin: 0;
  font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .navbar .nav-links {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .hero {
    height: 60vh;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}