﻿/* ===== Components ===== */

.cssNote {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
}

/* ===== Hero Section ===== */
.hero {
  background: url("https://album.bangtech.com/share/digital/gm/2021/2021-08-10-NeiNei-Watch-Gourds.jpg") no-repeat center center;
  background-size: cover;
  color: white;
  padding: 4rem 1.5rem;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}


/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  
  /* Hero */
  .hero {
    padding: 3rem 1rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
}

/* ===== Social Media ===== */

.social {
  background-color: #13b1e7;
  color: #fff;
  padding: 1rem 1rem 0;
  text-align: center;
}

.social h3 {
  font-weight: 400;
  padding-bottom: .25rem;
}

.socialIcons {
  font-size: 200%;
  padding: 1rem 0;
}

.socialIcons a {
  color: #223055;
  padding: 0 .5rem;
}

.socialIcons a:hover {
  color: #ffc107;
}


/* Video Section */
.video-section {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: var(--space-lg);
  box-shadow: var(--box-shadow);
}

.video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: var(--space-md);
  position: relative;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-info {
  padding: var(--space-sm);
}

.video-info h3 {
  margin-top: 0;
}

.video-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

/* Guide Cards */
.guide-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.guide-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: var(--space-lg);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Calendar Display */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin: var(--space-md) 0;
}

.calendar-item {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8eeff 100%);
  padding: var(--space-md);
  border-radius: 8px;
  border-left: 4px solid var(--clr-brand-blue);
}

.calendar-item h4 {
  margin: 0 0 var(--space-xs) 0;
  font-size: 1.1rem;
}

.calendar-date {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--clr-brand-blue);
  margin: var(--space-xs) 0;
}

.calendar-desc {
  font-size: 0.9rem;
  color: var(--clr-text-gray);
  margin: 0;
}

/* Variety Tags */
.variety-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.variety-tag {
  background: var(--clr-tomato-red);
  color: white;
  padding: var(--space-xs) var(--space-sm);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.variety-tag:hover {
  background: var(--clr-primary-dark);
  transform: translateY(-1px);
  border-color: var(--clr-tomato-red);
}

.variety-tag.determinate {
  background: var(--clr-success);
}

.variety-tag.indeterminate {
  background: var(--clr-tomato-yellow);
}

.variety-tag.heirloom {
  background: var(--clr-accent-orange);
}

.variety-tag.cherry {
  background: var(--clr-info);
}

/* Status Pills */
.pill-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.pill {
  padding: var(--space-xs) var(--space-sm);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pill i {
  font-size: 0.8rem;
}

.pill-good {
  background: #d4edda;
  color: #155724;
}

.pill-warn {
  background: #fff3cd;
  color: #856404;
}

.pill-warm {
  background: #fde9d9;
  color: #a8642c;
}

.pill-info {
  background: #d1ecf1;
  color: #0c5460;
}

.pill-important {
  background: #f8d7da;
  color: #721c24;
}

/* Lists & Checklists */
.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  padding-left: var(--space-xl);
  position: relative;
  margin-bottom: var(--space-sm);
}

.checklist li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-success);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Feature Informational Sections */
.care-section {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid var(--clr-accent-green);
}

.care-section h3 {
  margin-top: 0;
  color: var(--clr-accent-green);
}

.care-section ul {
  padding-left: var(--space-lg);
  margin: var(--space-sm) 0;
}

.pest-prevention {
  background: #fff8e1;
  border-color: var(--clr-accent-gold);
}

.pest-prevention h3 {
  color: var(--clr-accent-gold-darker);
}

.harvest-info {
  background: #e8f5e9;
  border-color: var(--clr-success);
}

.harvest-info h3 {
  color: var(--clr-success);
}

.note {
  background: #e3f2fd;
  border-left: 4px solid var(--clr-brand-blue);
  padding: var(--space-md);
  margin: var(--space-md) 0;
  border-radius: 0 8px 8px 0;
}

/* Quick Links Footer/Sidebar Component */
.quick-links {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: var(--space-lg);
  margin-top: var(--space-lg);
  box-shadow: var(--box-shadow);
}

.quick-links ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-sm);
}

.quick-links a {
  display: block;
  padding: var(--space-sm);
  background: #f8f9fa;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.quick-links a:hover {
  background: var(--clr-brand-blue-lighter);
  text-decoration: none;
  transform: translateX(4px);
}


/* plant Types */
.plant-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.plant-type-card {
  background: white;
  border-radius: 8px;
  padding: var(--space-md);
  border: 2px solid var(--clr-border);
  transition: all 0.3s ease;
}

.plant-type-card:hover {
  border-color: var(--clr-plant-red);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.1);
}

.plant-type-card h4 {
  color: var(--clr-plant-red);
  margin-bottom: var(--space-xs);
}

.plant-type-card .icon {
  font-size: 1.5rem;
  color: var(--clr-plant-red);
  margin-bottom: var(--space-sm);
}


/* Plant Facts */
.plant-fact {
  background: #fff;
  border-radius: 8px;
  padding: var(--space-md);
  margin: var(--space-md) 0;
  border: 2px dashed var(--clr-purple);
}

.plant-fact h4 {
  color: var(--clr-purple);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.plant-fact h4 i {
  color: var(--clr-purple);
}


/* Seed Starting Section */
.seed-starting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-lg) 0;
}

.seed-step {
  background: white;
  padding: var(--space-lg);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.seed-step h4 {
  color: var(--clr-red);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.seed-step-number {
  background: var(--clr-red);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-xs);
}


/* Growth Stage Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: 8px;
  border-left: 4px solid var(--clr-purple-light);
}

.timeline-number {
  background: var(--clr-purple);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

/* Care Sections */
.care-section {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid var(--clr-green);
}

.care-section h3 {
  margin-top: 0;
  color: var(--clr-green);
}

.care-section ul {
  padding-left: var(--space-lg);
  margin: var(--space-sm) 0;
}

.care-section li {
  margin-bottom: var(--space-xs);
}


.tip {
  background: #e8f4fc;
  border-left: 4px solid var(--clr-brand-blue);
  padding: var(--space-md);
  margin: var(--space-md) 0;
  border-radius: 0 8px 8px 0;
}

.tip h4 {
  color: var(--clr-brand-blue);
  margin-top: 0;
}

/* Succession Planting Chart */
.succession-chart {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.succession-item {
  background: white;
  padding: var(--space-sm);
  border-radius: 6px;
  text-align: center;
  border: 1px solid var(--clr-border);
}

.succession-date {
  font-weight: bold;
  color: var(clr-plant-success);
}

/* Checklists */
.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  padding-left: var(--space-xl);
  position: relative;
  margin-bottom: var(--space-sm);
}

.checklist li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-success);
  font-weight: bold;
  font-size: 1.1rem;
}

  /* Temperature guide */
  .temp-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-sm);
    margin: var(--space-md) 0;
  }
  .temp-item {
    background: white;
    padding: var(--space-sm);
    border-radius: 6px;
    text-align: center;
    border: 1px solid var(--clr-border);
  }
  .temp-value {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--clr-plant-secondary);
    margin-bottom: 2px;
  }
  .temp-label {
    font-size: 0.9rem;
    color: var(--clr-text-gray);
  }
