/* Menu Page Styles - Editable CSS File */
/* Access via: http://localhost:3000/css/menu.css */
/* This file controls the styling for menu pages like /menu/horticulture, /menu/agriculture, etc. */

/* ===== Main Container ===== */
.menu-page-main {
  flex-grow: 1 !important;
  padding: 3rem 0 !important;
  /* ⭐ Add your custom styles here */
}

.menu-page-container {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 1rem !important;
  /* ⭐ Add your custom styles here */
}

/* ===== Menu Contents Wrapper ===== */
.menu-contents-wrapper {
  display: flex !important;
  flex-direction: column !important;
  gap: 3rem !important;
  /* ⭐ Add your custom styles here */
}

/* ===== Menu Content Article ===== */
.menu-content-article {
  max-width: 56rem !important;
  margin: 0 auto !important;
  /* ⭐ Add your custom styles here */
}

/* ===== Featured Image ===== */
.menu-featured-image-wrapper {
  position: relative !important;
  height: 24rem !important;
  margin-bottom: 2rem !important;
  border-radius: 0.75rem !important;
  overflow: hidden !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  /* ⭐ Change image container height, border radius, shadow, etc. */
}

.menu-featured-image {
  object-fit: cover !important;
  /* ⭐ Add your custom styles here */
}

/* ===== Content Card ===== */
.menu-content-card {
  background: white !important;
  border-radius: 0.75rem !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  padding: 2rem !important;
  /* ⭐ Change card background, padding, shadow, etc. */
}

@media (min-width: 768px) {
  .menu-content-card {
    padding: 3rem !important;
  }
}

/* ===== Title ===== */
.menu-content-title {
  font-size: 2.25rem !important;
  font-weight: 700 !important;
  color: #1f2937 !important;
  margin-bottom: 1.5rem !important;
  /* ⭐ Change title size, color, weight, etc. */
}

@media (min-width: 768px) {
  .menu-content-title {
    font-size: 3rem !important;
  }
}

.menu-content-icon {
  margin-right: 0.75rem !important;
  /* ⭐ Change icon size, spacing, etc. */
}

.menu-content-title-text {
  display: inline-block !important;
  /* ⭐ Add your custom styles here */
}

/* ===== Description ===== */
.menu-content-description-wrapper {
  margin-bottom: 2rem !important;
  padding-bottom: 1.5rem !important;
  border-bottom: 1px solid #e5e7eb !important;
  /* ⭐ Change border color, spacing, etc. */
}

.menu-content-description {
  font-size: 1.125rem !important;
  color: #4b5563 !important;
  line-height: 1.75 !important;
  /* ⭐ Change description font size, color, line height, etc. */
}

.menu-content-description-text {
  display: inline-block !important;
  /* ⭐ Add your custom styles here */
}

/* ===== Content Body ===== */
.menu-content-body {
  display: flex !important;
  flex-direction: column !important;
  gap: 2rem !important;
  /* ⭐ Add your custom styles here */
}

/* ===== Content Text ===== */
.menu-content-text {
  font-size: 1.125rem !important;
  color: #374151 !important;
  line-height: 1.75 !important;
  max-width: none !important;
  /* ⭐ Change text font size, color, line height, etc. */
}

/* ===== Images ===== */
.menu-content-images {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
  /* ⭐ Add your custom styles here */
}

.menu-content-image-item {
  position: relative !important;
  width: 100% !important;
  border-radius: 0.75rem !important;
  overflow: hidden !important;
  cursor: pointer !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease !important;
  /* ⭐ Change image item shadow, border radius, etc. */
}

.menu-content-image-item:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  /* ⭐ Change hover shadow */
}

.menu-content-image-wrapper {
  position: relative !important;
  width: 100% !important;
  min-height: 400px !important;
  max-height: 600px !important;
  /* ⭐ Change image wrapper dimensions */
}

.menu-content-image {
  object-fit: contain !important;
  transition: transform 0.5s ease !important;
  /* ⭐ Add your custom styles here */
}

.menu-content-image-item:hover .menu-content-image {
  transform: scale(1.05) !important;
}

.menu-content-image-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0) !important;
  transition: background-color 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  /* ⭐ Add your custom styles here */
}

.menu-content-image-item:hover .menu-content-image-overlay {
  background: rgba(0, 0, 0, 0.1) !important;
}

.menu-content-image-zoom-icon {
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(4px) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 9999px !important;
  /* ⭐ Add your custom styles here */
}

.menu-content-image-item:hover .menu-content-image-zoom-icon {
  opacity: 1 !important;
}

/* ===== Videos Section ===== */
.menu-content-videos-section {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
  /* ⭐ Add your custom styles here */
}

.menu-content-videos-title {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #1f2937 !important;
  margin-bottom: 1rem !important;
  /* ⭐ Change videos title size, color, etc. */
}

.menu-content-videos-grid {
  display: grid !important;
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  gap: 1.5rem !important;
  /* ⭐ Add your custom styles here */
}

@media (min-width: 768px) {
  .menu-content-videos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

.menu-content-video-wrapper {
  position: relative !important;
  aspect-ratio: 16/9 !important;
  border-radius: 0.5rem !important;
  overflow: hidden !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  background: #111827 !important;
  /* ⭐ Change video wrapper border radius, shadow, etc. */
}

.menu-content-video {
  width: 100% !important;
  height: 100% !important;
  /* ⭐ Add your custom styles here */
}

/* ===== Empty Content State ===== */
.menu-empty-content {
  margin-bottom: 2rem !important;
  /* ⭐ Add your custom styles here */
}

.menu-empty-title {
  font-size: 2.25rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
  margin-bottom: 1rem !important;
  /* ⭐ Change empty title size, color, etc. */
}

@media (min-width: 768px) {
  .menu-empty-title {
    font-size: 3rem !important;
  }
}

.menu-empty-icon {
  margin-right: 0.75rem !important;
  /* ⭐ Add your custom styles here */
}

.menu-empty-title-text {
  display: inline-block !important;
  /* ⭐ Add your custom styles here */
}

.menu-empty-category-filter {
  color: #4b5563 !important;
  margin-bottom: 1.5rem !important;
  /* ⭐ Add your custom styles here */
}

.menu-empty-category-name {
  font-weight: 600 !important;
  /* ⭐ Add your custom styles here */
}

.menu-empty-message {
  text-align: center !important;
  padding: 3rem !important;
  background: #f9fafb !important;
  border-radius: 0.75rem !important;
  border: 2px dashed #d1d5db !important;
  /* ⭐ Change empty message background, border, etc. */
}

.menu-empty-message-title {
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: #111827 !important;
  margin-bottom: 0.5rem !important;
  /* ⭐ Change empty message title size, color, etc. */
}

.menu-empty-message-text {
  color: #4b5563 !important;
  /* ⭐ Add your custom styles here */
}

/* ===== Image Modal ===== */
.menu-image-modal {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.9) !important;
  z-index: 50 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1rem !important;
  /* ⭐ Add your custom styles here */
}

.menu-image-modal-content {
  position: relative !important;
  max-width: 80rem !important;
  max-height: 90vh !important;
  width: 100% !important;
  height: 100% !important;
  /* ⭐ Add your custom styles here */
}

.menu-image-modal-image {
  object-fit: contain !important;
  /* ⭐ Add your custom styles here */
}

.menu-image-modal-close {
  position: absolute !important;
  top: 1rem !important;
  right: 1rem !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  padding: 0.75rem !important;
  border-radius: 9999px !important;
  backdrop-filter: blur(4px) !important;
  transition: background-color 0.3s ease !important;
  /* ⭐ Add your custom styles here */
}

.menu-image-modal-close:hover {
  background: rgba(255, 255, 255, 0.2) !important;
}

/* ===== Related Articles Section ===== */
.menu-related-articles-header {
  margin-bottom: 2rem !important;
  margin-top: 3rem !important;
  /* ⭐ Add your custom styles here */
}

.menu-related-articles-title {
  font-size: 1.875rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
  margin-bottom: 1.5rem !important;
  /* ⭐ Change related articles title size, color, etc. */
}

.menu-related-articles-title-text {
  display: inline-block !important;
  /* ⭐ Add your custom styles here */
}

/* ===== Articles Grid ===== */
.menu-articles-loading-grid {
  display: grid !important;
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  gap: 1.5rem !important;
  /* ⭐ Add your custom styles here */
}

@media (min-width: 768px) {
  .menu-articles-loading-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1024px) {
  .menu-articles-loading-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

.menu-articles-loading-card {
  background: #e5e7eb !important;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  height: 24rem !important;
  border-radius: 0.5rem !important;
  /* ⭐ Add your custom styles here */
}

.menu-articles-grid {
  display: grid !important;
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  gap: 2rem !important;
  /* ⭐ Add your custom styles here */
}

@media (min-width: 768px) {
  .menu-articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1024px) {
  .menu-articles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

.menu-article-card {
  background: white !important;
  border-radius: 0.75rem !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease !important;
  transform: scale(1) !important;
  overflow: hidden !important;
  /* ⭐ Change article card background, shadow, border radius, etc. */
}

.menu-article-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  transform: scale(1.05) !important;
}

.menu-article-image-wrapper {
  position: relative !important;
  height: 12rem !important;
  overflow: hidden !important;
  /* ⭐ Add your custom styles here */
}

.menu-article-image {
  object-fit: cover !important;
  transition: transform 0.5s ease !important;
  /* ⭐ Add your custom styles here */
}

.menu-article-card:hover .menu-article-image {
  transform: scale(1.1) !important;
}

.menu-article-content {
  padding: 1.5rem !important;
  /* ⭐ Add your custom styles here */
}

.menu-article-category {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  margin-bottom: 0.75rem !important;
  /* ⭐ Add your custom styles here */
}

.menu-article-category-text {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  color: #2563eb !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  /* ⭐ Change category text size, color, etc. */
}

.menu-article-title {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
  margin-bottom: 0.75rem !important;
  transition: color 0.3s ease !important;
  /* ⭐ Change article title size, color, etc. */
}

.menu-article-card:hover .menu-article-title {
  color: #2563eb !important;
}

.menu-article-excerpt {
  color: #4b5563 !important;
  margin-bottom: 1rem !important;
  /* ⭐ Change excerpt color, size, etc. */
}

.menu-article-meta {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  font-size: 0.875rem !important;
  color: #6b7280 !important;
  /* ⭐ Add your custom styles here */
}

.menu-article-meta-left {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  /* ⭐ Add your custom styles here */
}

.menu-article-author {
  display: flex !important;
  align-items: center !important;
  gap: 0.25rem !important;
  /* ⭐ Add your custom styles here */
}

.menu-article-date {
  display: flex !important;
  align-items: center !important;
  gap: 0.25rem !important;
  /* ⭐ Add your custom styles here */
}

.menu-article-arrow {
  transition: transform 0.3s ease !important;
  /* ⭐ Add your custom styles here */
}

.menu-article-card:hover .menu-article-arrow {
  transform: translateX(0.25rem) !important;
}

/* ===== Empty Articles State ===== */
.menu-articles-empty {
  text-align: center !important;
  padding: 3rem !important;
  /* ⭐ Add your custom styles here */
}

.menu-articles-empty-icon {
  margin: 0 auto 1rem !important;
  color: #9ca3af !important;
  /* ⭐ Add your custom styles here */
}

.menu-articles-empty-title {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: #111827 !important;
  margin-bottom: 0.5rem !important;
  /* ⭐ Change empty articles title size, color, etc. */
}

.menu-articles-empty-text {
  color: #4b5563 !important;
  /* ⭐ Add your custom styles here */
}


