/* Grow a Garden Macro Website Styles */

:root {
  --primary-color: #2e8b57; /* Sea Green */
  --secondary-color: #3cb371; /* Medium Sea Green */
  --accent-color: #98fb98; /* Pale Green */
  --dark-color: #006400; /* Dark Green */
  --light-color: #f8f9fa;
  --white-color: #ffffff;
  --gray-color: #6c757d;
  --dark-gray: #343a40;
}

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

/* Navigation */
.navbar {
  background-color: var(--white-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 40px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--dark-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: var(--primary-color);
}

.navbar-light .navbar-nav .active > .nav-link {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white-color);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--white-color);
  border-radius: 50% 50% 0 0;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-primary {
  background-color: var(--dark-color);
  border-color: var(--dark-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
  padding: 5rem 0;
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
  font-weight: 700;
  color: var(--dark-color);
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

/* Features Section */
.features {
  background-color: var(--light-color);
  padding: 5rem 0;
}

.feature-box {
  background-color: var(--white-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.progress {
  height: 8px;
  margin-bottom: 1rem;
}

.progress-bar {
  background-color: var(--primary-color);
}

/* System Requirements */
.system-requirements {
  padding: 5rem 0;
}

.requirements-table {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.table thead th {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
}

/* Download Section */
.download {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white-color);
  padding: 5rem 0;
  text-align: center;
}

.download h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.download p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.download-btn {
  background-color: var(--white-color);
  color: var(--primary-color);
  padding: 1rem 3rem;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s;
}

.download-btn:hover {
  background-color: var(--dark-color);
  color: var(--white-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* How to Run Section */
.how-to-run {
  padding: 5rem 0;
}

.step-box {
  display: flex;
  margin-bottom: 3rem;
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 1.5rem;
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

/* Detailed Features */
.detailed-features {
  background-color: var(--light-color);
  padding: 5rem 0;
}

.feature-card {
  background-color: var(--white-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.feature-list {
  list-style-type: none;
  padding-left: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Troubleshooting */
.troubleshooting {
  padding: 5rem 0;
}

.accordion .card {
  border: none;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.accordion .card-header {
  background-color: var(--white-color);
  border: none;
  padding: 0;
}

.accordion .btn-link {
  color: var(--dark-color);
  font-weight: 600;
  text-decoration: none;
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
}

.accordion .btn-link:hover,
.accordion .btn-link:focus {
  color: var(--primary-color);
  text-decoration: none;
}

/* FAQ Section */
.faq {
  background-color: var(--light-color);
  padding: 5rem 0;
}

/* Footer */
.footer {
  background-color: var(--dark-gray);
  color: var(--white-color);
  padding: 3rem 0;
}

.footer h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer ul {
  list-style-type: none;
  padding-left: 0;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.footer ul li a:hover {
  color: var(--white-color);
  text-decoration: none;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    text-align: center;
  }
  
  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .step-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out;
}
