/* ===== ORGANIC URBAN MUSHROOM FARMING KIT - MAIN STYLES ===== */

/* Color Palette Variables */
:root {
  /* Primary Colors - Pastel High-Contrast */
  --primary-green: #86c78a;
  --primary-brown: #dbbd9c;
  --primary-cream: #ddcfc2;
  --primary-sage: #b6beb2;
  --primary-earth: #7a6741;
  
  /* Light Shades */
  --light-green: #d9f8d5;
  --light-brown: #fffcfa;
  --light-cream: #fdfcfa;
  --light-sage: #f0f2f0;
  --light-earth: #e6d9cc;
  
  /* Dark Shades */
  --dark-green: #508148;
  --dark-brown: #a2835c;
  --dark-cream: #f4f2f0;
  --dark-sage: #6e6f6d;
  --dark-earth: #594730;
  
  /* Typography */
  --font-family-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --line-height-base: 1.5;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --container-max-width: 1200px;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--dark-earth);
  background-color: var(--light-cream);
}

/* Respect motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography */
h1 {
  font-size: 2.55rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.64rem;
  font-weight: 600;
  color: var(--dark-earth);
  margin-bottom: 0.94rem;
}

h4 {
  font-size: 1.40rem;
  font-weight: 500;
  color: var(--dark-earth);
  margin-bottom: 0.60rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  color: var(--dark-earth);
}

/* Section Styling */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.16rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  font-size: var(--font-size-base);
  color: var(--dark-sage);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Header Styles */
.navbar {
  background-color: var(--light-cream);
  box-shadow: 0 7px 8px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.62rem;
  font-weight: 700;
  color: var(--dark-green);
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--dark-earth);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--light-green), var(--light-cream));
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px; /* Account for fixed navbar */
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-sage) 0%, transparent 50%);
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 225px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 1.58rem;
}

.hero-subtitle {
  font-size: 1.39rem;
  color: var(--primary-sage);
  margin-bottom: 2rem;
}

.hero-desc {
  font-size: 1.12rem;
  color: var(--dark-sage);
  margin-bottom: 2rem;
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: white;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
}

.btn-secondary {
  background-color: var(--primary-brown);
  border-color: var(--primary-brown);
  color: white;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--dark-brown);
  border-color: var(--dark-brown);
}

/* Card Styles */
.card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 7px 6px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  background-color: white;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card-header {
  background-color: var(--light-green);
  border-bottom: 1px solid var(--primary-green);
  padding: 1.5rem;
  border-radius: 1rem 1rem 0 0;
}

.card-body {
  padding: 2rem;
}

.card-title {
  color: var(--dark-green);
  margin-bottom: 1rem;
}

.card-text {
  color: var(--dark-sage);
  font-size: 1.03rem;
}

/* Service Items */
.service-item {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background-color: white;
  box-shadow: 0 5px 6px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-price {
  font-size: 1.63rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-top: 1rem;
}

/* Team Member */
.team-member {
  text-align: center;
  padding: 1.5rem;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 8px 6px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-member-name {
  font-size: 1.39rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 0.74rem;
}

.team-member-role {
  color: var(--primary-sage);
  font-size: 1.05rem;
}

/* Contact Form */
.contact-form {
  background-color: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 5px 6px rgba(0,0,0,0.1);
}

.form-control {
  border: 4px solid var(--light-sage);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(129, 194, 118, 0.25);
}

.form-label {
  color: var(--dark-earth);
  font-weight: 500;
  margin-bottom: 0.59rem;
}

/* Footer */
.footer {
  background-color: var(--dark-green);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h5 {
  color: var(--light-cream);
  margin-bottom: 1rem;
}

.footer p {
  color: var(--light-sage);
  font-size: 1.04rem;
}

.footer a {
  color: var(--light-sage);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--light-cream);
}

/* Gallery */
.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Breadcrumb */
.breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

/* Utilities */
.text-primary {
  color: var(--primary-green);
}

.text-secondary {
  color: var(--primary-brown);
}

.bg-light {
  background-color: var(--light-cream);
}

.bg-white {
  background-color: white;
}

.bg-primary {
  background-color: var(--primary-green);
}

.bg-secondary {
  background-color: var(--primary-brown);
}

/* Scroll animations disabled on mobile screens */
@media (max-width: 767.98px) {
  [data-sal],
  .animated,
  .fade-in,
  .slide-up,
  .zoom-in {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Price Plan */
.price-plan {
  background-color: var(--light-green);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.price-plan-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.price-plan-features {
  list-style: none;
  padding: 0;
}

.price-plan-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-sage);
}

.price-plan-features li:last-child {
  border-bottom: none;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
}

.process-step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* FAQ */
.faq-item {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 3px 4px rgba(0,0,0,0.1);
}

.faq-question {
  font-size: 1.16rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--dark-sage);
  font-size: 1.05rem;
}

/* Core Info */
.core-info-item {
  text-align: center;
  padding: 1.5rem;
  background-color: white;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 4px rgba(0,0,0,0.1);
}

.core-info-item i {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: var(--primary-green);
  border-radius: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 9px;
  top: 20px;
  width: 6px;
  height: 100%;
  background-color: var(--light-sage);
}

.timeline-item:last-child::after {
  display: none;
}

/* Career */
.career-item {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 6px 4px rgba(0,0,0,0.1);
}

.career-item-role {
  color: var(--primary-sage);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Blog */
.blog-item {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 6px 4px rgba(0,0,0,0.1);
}

.blog-item-title {
  color: var(--dark-green);
  font-size: 1.37rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog-item-excerpt {
  color: var(--dark-sage);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.blog-item-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
}

.blog-item-link:hover {
  color: var(--dark-green);
}

/* Reviews */
.review-item {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 7px 4px rgba(0,0,0,0.1);
  text-align: center;
}

.review-author {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.review-text {
  color: var(--dark-sage);
  font-style: italic;
  font-size: 1.04rem;
}

/* Case Study */
.casestudy-item {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.casestudy-item-title {
  color: var(--dark-green);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.casestudy-item-desc {
  color: var(--dark-sage);
  font-size: 1.02rem;
}

/* Feature Item */
.feature-item {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feature-item i {
  font-size: 2.61rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* About Feature */
.about-feature {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--light-cream);
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.about-feature i {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Contact Info */
.contact-info {
  background-color: var(--light-sage);
  padding: 2rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-info-item i {
  font-size: 1.55rem;
  color: var(--primary-green);
  margin-right: 1rem;
  width: 30px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

/* Space Page */
#space {
  min-height: 70vh;
  background-color: var(--light-cream);
  border-radius: 1rem;
  margin: 2rem 0;
} 


/* 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;
    }
}
