/* Farm Cultivation Gallery - Main Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* Header Styles */
header {
  background: linear-gradient(135deg, #2d5016, #5d8a3a);
  color: #fff;
  padding: 1.5em 1em;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

header p {
  font-size: 1.2em;
  opacity: 0.9;
}

/* Navigation Styles */
nav {
  background: #2d5016;
  color: #fff;
  position: sticky;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1em 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2em;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1em;
  padding: 0.5em 1em;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

nav a:hover, nav a.active {
  background-color: #5d8a3a;
}

/* Main Content Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em 1em;
}

/* Section Styles */
.section {
  margin-bottom: 3em;
  background: #fff;
  padding: 2em;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.section h2 {
  color: #2d5016;
  margin-bottom: 1em;
  font-size: 2em;
  border-bottom: 3px solid #5d8a3a;
  padding-bottom: 0.5em;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2em;
  margin-top: 2em;
}

.gallery-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.item-content {
  padding: 1.5em;
}

.item-content h3 {
  color: #2d5016;
  margin-bottom: 0.5em;
  font-size: 1.3em;
}

.item-content p {
  color: #666;
  line-height: 1.6;
}

.item-tag {
  display: inline-block;
  background: #5d8a3a;
  color: #fff;
  padding: 0.3em 0.8em;
  border-radius: 15px;
  font-size: 0.85em;
  margin-top: 1em;
}

/* Cultivation Process Section */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5em;
  margin-top: 2em;
}

.process-step {
  text-align: center;
  padding: 1.5em;
  background: #f8f9fa;
  border-radius: 10px;
  border: 2px solid #e9ecef;
}

.process-step .step-number {
  background: #5d8a3a;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 auto 1em;
}

.process-step h4 {
  color: #2d5016;
  margin-bottom: 0.5em;
}

/* Footer */
footer {
  background: #2d5016;
  color: #fff;
  text-align: center;
  padding: 2em 1em;
  margin-top: 3em;
}



/* Responsive Design - Keep desktop layout for all screen sizes */
@media (max-width: 768px) {
  header h1 {
    font-size: 2em;
  }
  
  header p {
    font-size: 1em;
  }
  
  .container {
    padding: 1em;
  }
  
  .section {
    padding: 1.5em;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1em;
  }
  
  nav ul {
    flex-direction: column;
    gap: 0.5em;
  }
}

@media (max-width: 480px) {
  .gallery-item img,
  .gallery-item video {
    height: 200px;
  }
  
  .item-content {
    padding: 1em;
  }
  
  .section h2 {
    font-size: 1.5em;
  }
}

/* Filter Buttons */
.filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-bottom: 2em;
  justify-content: center;
}

.filter-btn {
  background: #f8f9fa;
  border: 2px solid #5d8a3a;
  color: #2d5016;
  padding: 0.75em 1.5em;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1em;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: #5d8a3a;
  color: #fff;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: #2d5016;
  color: #fff;
  box-shadow: 0 4px 8px rgba(45, 80, 22, 0.3);
}

/* Video Placeholder Styles */
.video-placeholder {
  position: relative;
  cursor: pointer;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  transition: all 0.3s ease;
}

.video-placeholder:hover .play-button {
  background: rgba(45, 80, 22, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

/* About Section Highlights */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
  margin-top: 2em;
}

.highlight-item {
  background: #f8f9fa;
  padding: 2em;
  border-radius: 10px;
  border-left: 4px solid #5d8a3a;
  text-align: center;
}

.highlight-item h3 {
  color: #2d5016;
  margin-bottom: 1em;
  font-size: 1.2em;
}

/* Contact Info Grid */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
  margin-top: 2em;
}

.contact-item {
  background: #f8f9fa;
  padding: 1.5em;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #e9ecef;
}

.contact-item h3 {
  color: #2d5016;
  margin-bottom: 0.5em;
  font-size: 1.1em;
}

.contact-item a {
  color: #5d8a3a;
  text-decoration: none;
  font-weight: 500;
}

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

/* Loading State */
.loading {
  text-align: center;
  padding: 3em;
  color: #666;
  font-size: 1.2em;
}

