/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2c2c2c;
  background: #ffffff;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: linear-gradient(135deg, #f0fff0 0%, #fff8dc 100%);
  border-bottom: 1px solid rgba(46, 139, 87, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(46, 139, 87, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.nav-brand h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #2E8B57;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.nav-search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.9);
  border: 2px solid rgba(46, 139, 87, 0.2);
  border-radius: 24px;
  padding: 8px 16px;
  flex: 1;
  max-width: 400px;
  margin: 0 32px;
  box-shadow: 0 2px 10px rgba(46, 139, 87, 0.1);
}

.search-input {
  border: none;
  background: transparent;
  outline: none;
  flex: 1;
  padding: 8px;
  font-size: 14px;
}

.search-btn {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
}

.nav-menu {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-link {
  color: #666;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #32CD32;
}

.premium-link {
  color: #32CD32;
  font-weight: 600;
}

.login-btn {
  background: linear-gradient(135deg, #32CD32, #228B22);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(50, 205, 50, 0.3);
}

.login-btn:hover {
  background: linear-gradient(135deg, #228B22, #006400);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(50, 205, 50, 0.4);
}

/* Hero Section */
.hero-modern {
  background: linear-gradient(135deg, #f0fff0 0%, #fff8dc 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232E8B57' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 0 20px;
}

.hero-text h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #2E8B57;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-text p {
  font-size: 1.3rem;
  color: #2F4F4F;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.6;
}

.hero-text p:last-of-type {
  font-size: 1.1rem;
  color: #708090;
  margin-bottom: 30px;
}

.hero-text strong {
  color: #FF8C00;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-premium {
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #FF8C00 0%, #FF7F00 50%, #FF6347 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-decoration: none;
  display: inline-block;
}

.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 140, 0, 0.6);
  background: linear-gradient(135deg, #FF7F00 0%, #FF6347 50%, #FF4500 100%);
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  height: 280px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: none;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.stat-card {
  text-align: center;
  background: rgba(255,255,255,0.95);
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  min-width: 140px;
  border: 2px solid rgba(231, 76, 60, 0.1);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #FF8C00;
  margin-bottom: 8px;
}

.stat-card p {
  color: #2E8B57;
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, #32CD32, #228B22);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(50, 205, 50, 0.3);
  display: inline-block;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #228B22, #006400);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(50, 205, 50, 0.4);
}

.btn-secondary {
  background: white;
  color: #2E8B57;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid #32CD32;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(46, 139, 87, 0.2);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #32CD32, #228B22);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(50, 205, 50, 0.4);
}

.hero-image {
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  padding: 25px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(46, 139, 87, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Categories Section */
.categories-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0fff0 0%, #fff8dc 100%);
  position: relative;
  margin-top: 0;
}

.categories-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #2E8B57;
  margin-bottom: 15px;
}

.categories-section p {
  text-align: center;
  color: #708090;
  font-size: 1.2rem;
  margin-bottom: 40px;
  font-weight: 500;
}

.search-container {
  display: flex;
  justify-content: center;
  margin: 40px 0 20px 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.search-container input {
  width: 100%;
  padding: 20px 70px 20px 25px;
  font-size: 1.2rem;
  background: white;
  color: #2E8B57;
  border: 3px solid #32CD32;
  border-radius: 15px;
  outline: none;
  box-shadow: 0 8px 25px rgba(50, 205, 50, 0.2);
  transition: all 0.3s ease;
  font-weight: 500;
}

.search-container input:focus {
  border-color: #FF7F00;
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
  transform: scale(1.02);
}

.search-container button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #32CD32, #228B22);
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(50, 205, 50, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-container button:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.category-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  border-color: #FF6B35;
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.category-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 8px;
}

.category-card p {
  color: #666;
  font-size: 0.9rem;
}

/* Filters Section */
.filters-section {
  background: #f8f9fa;
  padding: 24px 0;
  border-bottom: 1px solid #f0f0f0;
}

.filters {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.filters select {
  padding: 12px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  color: #2c2c2c;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}

.filters select:focus {
  border-color: #32CD32;
  box-shadow: 0 0 0 3px rgba(50, 205, 50, 0.1);
}

/* Recipes Section */
.recipes-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.recipe-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-decoration: none;
  color: #333;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #f0f0f0;
  position: relative;
  display: block;
  z-index: 10;
}

/* Ensure image container clips the zoom effect */
.recipe-card > a:first-child,
.recipe-card .image-wrapper {
  overflow: hidden;
  height: 200px;
  display: block;
}

.recipe-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
  pointer-events: none;
  z-index: 1;
}

.recipe-card:hover::before {
  left: 100%;
}

.recipe-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: #FF6B35;
}

.recipe-card:hover img {
  transform: scale(1.25);
}

.recipe-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transform: scale(1.15);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.recipe-card h3 {
  padding: 20px 20px 8px;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: #2c2c2c;
  position: relative;
  z-index: 2;
}

.recipe-card p {
  padding: 0 20px 20px;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 2;
}

.price {
  font-weight: 600;
  color: #FF6B35;
  font-size: 1.1rem;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.no-results h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #2c2c2c;
}

.no-results p {
  font-size: 1.1rem;
}

/* Premium CTA */
.premium-cta {
  background: linear-gradient(135deg, #f0fff0 0%, #e6ffe6 50%, #fff8dc 100%);
  padding: 80px 0;
  color: #2E8B57;
  position: relative;
  overflow: hidden;
  border-top: 3px solid rgba(46, 139, 87, 0.1);
  border-bottom: 3px solid rgba(46, 139, 87, 0.1);
}

.premium-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232E8B57' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
}

@keyframes float-pattern {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-50px, -50px) rotate(360deg); }
}

.cta-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.cta-text h2 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.cta-text > p {
  font-size: 1.4rem;
  margin-bottom: 32px;
  line-height: 1.5;
  font-weight: 500;
}

.premium-pricing {
  margin: 25px 0;
}

.premium-pricing .price {
  font-size: 3rem;
  font-weight: 900;
  color: #32CD32;
}

.premium-pricing .period {
  font-size: 1.2rem;
  color: #708090;
  margin-left: 5px;
}

.benefits {
  margin-bottom: 32px;
}

.benefit {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.benefit-icon {
  margin-right: 12px;
  font-size: 1.2rem;
}

.btn-stripe {
  background: linear-gradient(135deg, #32CD32, #228B22);
  color: white;
  padding: 20px 45px;
  border: none;
  border-radius: 12px;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(50, 205, 50, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
}

.btn-stripe:hover {
  background: linear-gradient(135deg, #228B22, #006400);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(50, 205, 50, 0.6);
}

.cta-note {
  margin-top: 12px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.cta-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Premium Recipe Showcase */
.premium-recipe-showcase {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  background: linear-gradient(45deg, #f8f9fa, #fff);
}

.recipe-collage {
  position: relative;
  width: 100%;
  height: 400px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
  padding: 10px;
}

.main-recipe-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.main-recipe-img:hover {
  transform: scale(1.02);
}

.mini-recipe-grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}

.mini-recipe-grid > div:first-child,
.mini-recipe-grid > img:first-child {
  grid-row: span 1;
}

.mini-recipe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.mini-recipe:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.more-recipes {
  background: linear-gradient(135deg, #FF6B35, #ff5722);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.more-recipes::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.more-recipes:hover::before {
  left: 100%;
}

.more-recipes:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.more-count {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.more-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.recipe-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 30px 20px 20px;
  color: white;
}

.recipe-preview h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.recipe-preview p {
  font-size: 1rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.recipe-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.recipe-tag {
  background: rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Image loading states */
.premium-recipe-showcase img {
  background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
              linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
              linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
              linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  min-height: 300px;
}

.gallery-grid img {
  background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
              linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
              linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
              linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

/* Lead Magnet Form */
.lead-magnet {
  background: linear-gradient(135deg, #f0fff0 0%, #fff8dc 100%);
  padding: 80px 0;
  border-top: 3px solid rgba(46, 139, 87, 0.1);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}

.form-header p {
  font-size: 1.1rem;
  color: #666;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-field input,
.form-field select {
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus {
  border-color: #32CD32;
  box-shadow: 0 0 0 3px rgba(50, 205, 50, 0.1);
}

.form-submit {
  background: linear-gradient(135deg, #32CD32, #228B22);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 16px;
  box-shadow: 0 6px 20px rgba(50, 205, 50, 0.3);
  text-transform: uppercase;
}

.form-submit:hover {
  background: linear-gradient(135deg, #228B22, #006400);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(50, 205, 50, 0.4);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #2E8B57 0%, #228B22 100%);
  color: #fff;
  padding: 60px 0 30px;
  border-top: 3px solid rgba(46, 139, 87, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #32CD32;
  margin-bottom: 16px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.footer-brand p {
  color: #ccc;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}

.footer-column a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: #32CD32;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 24px;
  text-align: center;
  color: #ccc;
}

.footer-bottom p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

/* Hide only AI labels and watermarks on images - NOT recipe info */
img::before,
img::after {
  display: none !important;
}

/* Additional CSS to hide AI watermarks specifically from Unsplash */
img[src*="unsplash"]::before,
img[src*="unsplash"]::after {
  content: none !important;
  display: none !important;
}

/* Hide ONLY AI-related elements - preserve recipe information */
.ai-label,
.ai-watermark,
.ai-badge,
[class*="ai-generated"],
[class*="AI-generated"],
[data-ai="true"],
[data-AI="true"],
[aria-label="AI generated"],
[aria-label="AI Generated"],
[title="AI generated"],
[title="AI Generated"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Specifically target only AI watermark overlays, not recipe info */
img + .ai-overlay,
img + [class*="ai-"],
.unsplash-badge,
.ai-attribution {
  display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 16px;
  }

  .nav-search {
    order: 3;
    margin: 0;
    max-width: 100%;
  }

  .nav-menu {
    order: 2;
    flex-wrap: wrap;
    justify-content: center;
  }

  .login-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .search-container {
    margin: 30px 20px 20px 20px;
  }

  .search-container input {
    padding: 16px 60px 16px 20px;
    font-size: 1rem;
  }

  .search-container button {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .cta-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .cta-text h2 {
    font-size: 2.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .recipes-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 32px 24px;
  }
}

/* Community Blog Styles */
.blog-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #FF6B35;
  color: #FF6B35;
  background: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #FF6B35;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.community-recipe-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.community-recipe-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.community-recipe-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #FFE8D6, #FFF3E0);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #FF6B35;
}

.community-recipe-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #FF6B35;
  backdrop-filter: blur(10px);
}

.community-recipe-content {
  padding: 20px;
}

.community-recipe-author {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.community-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(45deg, #FF6B35, #f7931e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  margin-right: 10px;
}

.community-author-info h4 {
  margin: 0;
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}

.community-recipe-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #333;
  line-height: 1.3;
}

.community-recipe-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.community-recipe-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
  font-size: 0.8rem;
  color: #888;
}

.community-recipe-meta {
  display: flex;
  gap: 12px;
}

.community-recipe-interactions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.community-rating-stars {
  display: flex;
  gap: 1px;
}

.community-star {
  color: #ffd700;
  font-size: 0.9rem;
}

.community-star.empty {
  color: #ddd;
}

/* Quick Recipe Creation Modal */
.recipe-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.recipe-modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.recipe-modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  transition: color 0.3s ease;
}

.recipe-modal-close:hover {
  color: #333;
}

.recipe-form-group {
  margin-bottom: 20px;
}

.recipe-form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.recipe-form-input,
.recipe-form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.recipe-form-input:focus,
.recipe-form-textarea:focus {
  outline: none;
  border-color: #FF6B35;
}

.recipe-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.recipe-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .recipe-form-row {
    grid-template-columns: 1fr;
  }
  
  .recipe-modal-content {
    padding: 30px 20px;
    margin: 10px;
  }
  
  .blog-actions {
    flex-direction: column;
    gap: 10px;
  }
}

/* Hide AI watermarks and labels from images */
img::after,
img::before,
.ai-label,
.ai-watermark,
[aria-label*="AI"],
[title*="AI"],
[alt*="AI generated"],
[src*="ai-watermark"],
.ai-generated,
.artificial-intelligence {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Hide any text overlay that might contain AI */
.image-overlay,
.watermark-overlay,
.generated-label {
  display: none !important;
}

/* Ensure recipe images are clean */
.recipe-image,
.community-recipe-image,
.recipe-card img {
  position: relative;
  overflow: hidden;
}

.recipe-image::after,
.community-recipe-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
  pointer-events: none;
}

/* Hide any corner labels */
.corner-label,
.top-right-label,
.bottom-right-label {
  display: none !important;
}
