/* Main CSS for Organic Urban Mushroom Farming Kit Template */

/* Color Palette - Pastel High-Contrast Colors */
:root {
  --primary-color: #2d5016;
  --primary-light: #4a7829;
  --primary-dark: #1a3009;
  
  --secondary-color: #d4a574;
  --secondary-light: #e8c29c;
  --secondary-dark: #b8834f;
  
  --accent-color: #8b4513;
  --accent-light: #a0623d;
  --accent-dark: #6b3410;
  
  --nature-color: #6b8e23;
  --nature-light: #87a645;
  --nature-dark: #556b1c;
  
  --earth-color: #8fbc8f;
  --earth-light: #a8c8a8;
  --earth-dark: #729972;
  
  --text-dark: #2c2c2c;
  --text-light: #666666;
  --bg-light: #fefefe;
  --bg-section: #f8f9fa;
}

/* Base Typography - Conservative Sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
    overflow-x: hidden;
}

h1 {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.875rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 0.625rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Header & Navigation */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--earth-light) 0%, var(--nature-light) 100%);
  padding: 80px 0;
  display: flex;
  align-items: center;
}

.hero-content {
  z-index: 2;
    padding-top: 175px;
}

.hero-image {
  position: relative;
}

/* Decorative Shapes for Hero */
.hero-decorative {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--secondary-color);
  border-radius: 50%;
  opacity: 0.1;
  top: 20%;
  right: 10%;
  z-index: 1;
}

.hero-decorative::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  top: -30px;
  left: -30px;
  opacity: 0.8;
}

/* Section Backgrounds */
.bg-light-section {
  background-color: var(--bg-section);
}

.bg-primary-section {
  background-color: var(--primary-color);
  color: white;
}

.bg-primary-section h2,
.bg-primary-section h3 {
  color: white;
}

.bg-primary-section p {
  color: rgba(255, 255, 255, 0.9);
}

/* Cards */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  border-radius: 12px 12px 0 0;
  height: 200px;
  object-fit: cover;
}

/* Service Cards */
.service-card {
  text-align: center;
  padding: 2rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-top: 1rem;
}

/* Feature Cards */
.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

/* Team Cards */
.team-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: block;
}

.team-role {
  color: var(--secondary-color);
  font-style: italic;
}

/* Review Cards */
.review-card {
  background: var(--bg-light);
  border-left: 4px solid var(--secondary-color);
  padding: 1.5rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 1rem;
}

/* Price Plan Cards */
.price-card {
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  background: var(--primary-color);
  color: white;
  transform: scale(1.05);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

.price-card.featured .price-amount {
  color: var(--secondary-color);
}

/* FAQ Cards */
.faq-card {
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--nature-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.faq-card .card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.faq-answer {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
}

/* FAQ Section Specific Styling */
#faq .row {
  margin-bottom: 1rem;
}

#faq .row:last-child {
  margin-bottom: 0;
}

/* Contact Form */
.contact-form {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

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

.footer h5 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  margin-top: 2rem;
}

/* Breadcrumbs */
.breadcrumb-nav {
  padding: 1rem 0;
  background: var(--bg-section);
}

.breadcrumb-nav img {
  max-height: 24px;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline */
.timeline-item {
  padding: 1.5rem;
  border-left: 3px solid var(--secondary-color);
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 1.5rem;
  width: 15px;
  height: 15px;
  background: var(--secondary-color);
  border-radius: 50%;
}

/* Case Study Cards */
.case-study-card {
  background: var(--bg-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-3px);
}

/* Core Info Grid */
.core-info-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

/* Blog Cards */
.blog-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  height: 200px;
  object-fit: cover;
}

/* Career Cards */
.career-card {
  border: 2px solid var(--nature-color);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.3s ease;
}

.career-card:hover {
  border-color: var(--secondary-color);
}

.career-role {
  color: var(--accent-color);
  font-weight: 600;
}

/* Space Page */
#space {
  min-height: 80vh;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-light);
}

/* Animations - 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;
    scroll-behavior: auto !important;
  }
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-color);
}

.text-secondary-custom {
  color: var(--secondary-color);
}

.bg-primary-custom {
  background-color: var(--primary-color);
}

.bg-secondary-custom {
  background-color: var(--secondary-color);
}

.section-padding {
  padding: 4rem 0;
}

.section-margin {
  margin: 2rem 0;
} 


/* Team Social Links - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

.x-link::after {
    content: 'X';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
