/* ===== SUSTAINABLE GARDENING COURSE - MAIN CSS ===== */

/* Color Palette - 5 Primary Colors + Light/Dark Shades */
:root {
  --primary-green: #2d5a27;
  --primary-green-light: #4a7c59;
  --primary-green-dark: #1a3419;
  
  --accent-sage: #7fb069;
  --accent-sage-light: #9bc47d;
  --accent-sage-dark: #6b9555;
  
  --earth-brown: #8b4513;
  --earth-brown-light: #a0522d;
  --earth-brown-dark: #654321;
  
  --sunshine-yellow: #f4d03f;
  --sunshine-yellow-light: #f7dc6f;
  --sunshine-yellow-dark: #d4ac0d;
  
  --sky-blue: #85c1e9;
  --sky-blue-light: #aed6f1;
  --sky-blue-dark: #5dade2;
  
  --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--accent-sage));
  --gradient-secondary: linear-gradient(135deg, var(--earth-brown), var(--sunshine-yellow));
  --gradient-tertiary: linear-gradient(135deg, var(--sky-blue), var(--accent-sage-light));
  --gradient-hero: linear-gradient(135deg, var(--primary-green-dark), var(--accent-sage), var(--sunshine-yellow-light));
  
  --text-dark: #2c3e50;
  --text-light: #ffffff;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --bg-dark: #212529;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
  
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header Styles */
header {
  background: var(--gradient-primary);
  box-shadow: var(--shadow-md);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

.navbar-brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover {
  color: var(--sunshine-yellow) !important;
  transform: translateY(-2px);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  opacity: 0.8;
  margin-bottom: 2rem;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

/* Decorative Elements */
.hero-blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--gradient-secondary);
  border-radius: 50% 30% 70% 40%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.hero-blob:nth-child(1) {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.hero-blob:nth-child(2) {
  bottom: 10%;
  left: 10%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Section Styles */
.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-feature {
  padding: 2rem;
  background: var(--text-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  margin-bottom: 2rem;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.about-feature i {
  font-size: 3rem;
  color: var(--accent-sage);
  margin-bottom: 1rem;
}

.about-feature h4 {
  font-size: 1.3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.about-feature p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Services Section */
.services {
  background: var(--bg-light);
}

.service-item {
  background: var(--text-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 2rem;
  text-align: center;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.service-item h4 {
  font-size: 1.4rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.service-item p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--earth-brown);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  color: var(--text-muted);
}

.service-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.feature-item {
  background: var(--text-light);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 2rem;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-item i {
  font-size: 3.5rem;
  color: var(--sky-blue);
  margin-bottom: 1.5rem;
}

.feature-item h4 {
  font-size: 1.3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Price Plan Section */
.priceplan {
  background: var(--gradient-tertiary);
  color: var(--text-light);
}

.priceplan .section-title,
.priceplan .section-subtitle,
.priceplan .section-desc {
  color: var(--text-light);
}

.priceplan-item {
  background: var(--text-light);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.priceplan-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.priceplan-item h4 {
  font-size: 1.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.priceplan-item .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--earth-brown);
  margin-bottom: 1rem;
}

.priceplan-item p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.priceplan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.priceplan-features li {
  padding: 0.5rem 0;
  color: var(--text-muted);
}

.priceplan-features li i {
  color: var(--accent-sage);
  margin-right: 0.5rem;
}

/* Team Section */
.team {
  background: var(--bg-light);
}

.team-member {
  background: var(--text-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 2rem;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid var(--accent-sage);
}

.team-member h4 {
  font-size: 1.3rem;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--text-muted);
  font-style: italic;
}

/* Reviews Section */
.reviews-item {
  background: var(--text-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 2rem;
}

.reviews-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.reviews-item .stars {
  color: var(--sunshine-yellow);
  margin-bottom: 1rem;
}

.reviews-item p {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.reviews-item .author {
  font-weight: 600;
  color: var(--primary-green);
}

/* Case Study Section */
.casestudy {
  background: var(--bg-light);
}

.casestudy-item {
  background: var(--text-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 2rem;
}

.casestudy-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.casestudy-item h4 {
  font-size: 1.3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.casestudy-item p {
  color: var(--text-muted);
}

/* Process Section */
.process-item {
  background: var(--text-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 2rem;
  position: relative;
}

.process-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.process-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--text-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.process {
  counter-reset: step-counter;
}

.process-item h4 {
  font-size: 1.3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.process-item p {
  color: var(--text-muted);
}

/* Timeline Section */
.timeline {
  background: var(--bg-light);
}

.timeline-item {
  background: var(--text-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--accent-sage);
  border-radius: 50%;
}

.timeline-item h4 {
  font-size: 1.3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.timeline-item p {
  color: var(--text-muted);
}

/* Career Section */
.career-item {
  background: var(--text-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 2rem;
}

.career-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.career-item h4 {
  font-size: 1.3rem;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.career-item .role {
  color: var(--earth-brown);
  font-weight: 600;
  margin-bottom: 1rem;
}

.career-item p {
  color: var(--text-muted);
}

/* Core Info Section */
.coreinfo {
  background: var(--bg-light);
}

.coreinfo-item {
  background: var(--text-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 2rem;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.coreinfo-item i {
  font-size: 3rem;
  color: var(--sky-blue);
  margin-bottom: 1.5rem;
}

.coreinfo-item h4 {
  font-size: 1.3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.coreinfo-item p {
  color: var(--text-muted);
}

/* Blog Section */
.blog {
  background: var(--bg-light);
}

.blog-item {
  background: var(--text-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 2rem;
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-item .content {
  padding: 1.5rem;
}

.blog-item h4 {
  font-size: 1.3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.blog-item p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.blog-item a {
  color: var(--accent-sage);
  text-decoration: none;
  font-weight: 600;
}

.blog-item a:hover {
  color: var(--primary-green);
}

/* FAQ Section */
.faq-item {
  background: var(--text-light);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--gradient-secondary);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--text-muted);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
.gallery {
  background: var(--bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Contact Section */
.contact {
  background: var(--gradient-primary);
  color: var(--text-light);
}

.contact .section-title,
.contact .section-subtitle,
.contact .section-desc {
  color: var(--text-light);
}

.contact-form {
  background: var(--text-light);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  color: var(--text-dark);
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-sage);
  box-shadow: 0 0 0 3px rgba(127, 176, 105, 0.1);
}

.contact-form textarea {
  resize: vertical;
  height: 120px;
}

.contact-form button {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.contact-form button:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
}

.contact-info {
  padding: 2rem;
}

.contact-info h4 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.contact-info i {
  color: var(--sunshine-yellow);
  margin-right: 0.5rem;
}

/* Footer */
footer {
  background: var(--primary-green-dark);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-content h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer-content p {
  color: var(--text-light);
  opacity: 0.8;
  margin-bottom: 1rem;
}

.footer-policies {
  margin-bottom: 2rem;
}

.footer-policies h5 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer-policies ul {
  list-style: none;
  padding: 0;
}

.footer-policies li {
  margin-bottom: 0.5rem;
}

.footer-policies a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-policies a:hover {
  opacity: 1;
  color: var(--sunshine-yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-light);
  opacity: 0.8;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-bottom small {
  color: var(--text-light);
  opacity: 0.7;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--bg-light);
  padding: 1rem 0;
  border-bottom: 1px solid #e9ecef;
}

.breadcrumb img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

/* Space Page */
#space {
  min-height: 60vh;
  background: var(--gradient-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero-blob {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .service-item,
  .priceplan-item {
    padding: 1.5rem;
  }
} 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
