/* Bamboo Fiber Home Textiles - Main Styles */

:root {
  /* Primary Color Palette - Bamboo Inspired */
  --primary-sage: #b4d887;
  --primary-sage-light: #b6c0a7;
  --primary-sage-dark: #6b8c59;
  
  --primary-cream: #fefefc;
  --primary-cream-light: #faf9f1;
  --primary-cream-dark: #f5f1e4;
  
  --primary-earth: #cab49f;
  --primary-earth-light: #f5d3ae;
  --primary-earth-dark: #bd8c6e;
  
  --primary-bamboo: #90ad8d;
  --primary-bamboo-light: #9fb7a1;
  --primary-bamboo-dark: #8ba48c;
  
  --primary-stone: #767c8c;
  --primary-stone-light: #8991a0;
  --primary-stone-dark: #364252;
  
  /* Neutral Colors */
  --white: #ffffff;
  --black: #16232e;
  --gray-100: #f9fafb;
  --gray-200: #bbc0d4;
}

/* Global Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.1rem !important;
  font-weight: 600;
  color: var(--primary-sage-dark);
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-sage-dark);
  margin-bottom: 1rem;
}

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

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

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

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--primary-stone-dark);
}

/* Header Styles */
.navbar {
  background-color: var(--primary-cream);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 0.75rem 0;
}

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

.navbar-nav .nav-link:hover {
  color: var(--primary-bamboo-dark);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--primary-sage-light) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

.hero-content {
  padding: 2rem 0;
    padding-top: 225px;
}

/* Section Spacing */
section {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--primary-cream);
}

/* Card Styles */
.card {
  border: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0.75rem;
}

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

.card-header {
  background-color: var(--primary-sage);
  color: var(--white);
  border-radius: 0.75rem 0.75rem 0 0;
  padding: 1rem 1.5rem;
}

.card-body {
  padding: 1.5rem;
}

/* Service Cards */
.service-card {
  background-color: var(--white);
  border: 2px solid var(--primary-cream-dark);
  text-align: center;
  height: 100%;
}

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

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-sage-dark);
  margin-top: 1rem;
}

/* Team Cards */
.team-card {
  text-align: center;
  background-color: var(--white);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-sage-light);
  margin: 0 auto 1rem;
}

/* Review Cards */
.review-card {
  background-color: var(--primary-cream);
  border-left: 4px solid var(--primary-sage);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

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

/* Button Styles */
.btn-primary {
  background-color: var(--primary-sage);
  border-color: var(--primary-sage);
  color: var(--white);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 0.5rem;
}

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

.btn-outline-primary {
  color: var(--primary-sage);
  border-color: var(--primary-sage);
}

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

/* Form Styles */
.form-control {
  border: 2px solid var(--primary-cream-dark);
  border-radius: 0.5rem;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(178, 205, 134, 0.25);
}

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

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

.footer a {
  color: var(--primary-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-sage-light);
}

.footer-bottom {
  border-top: 1px solid var(--primary-stone);
  padding-top: 1rem;
  margin-top: 2rem;
}

/* FAQ Cards */
.faq-card {
  margin-bottom: 1rem;
  border: 1px solid var(--primary-cream-dark);
}

.faq-question {
  background-color: var(--primary-sage-light);
  padding: 1rem;
  margin: 0;
  font-weight: 600;
  color: var(--primary-sage-dark);
}

.faq-answer {
  padding: 1rem;
  background-color: var(--white);
  margin: 0;
}

/* Price Plan Cards */
.price-card {
  background-color: var(--white);
  border: 2px solid var(--primary-cream-dark);
  text-align: center;
  position: relative;
}

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

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

.price-features {
  list-style: none;
  padding: 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--primary-cream-dark);
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

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

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

.timeline-item::before {
  content: '';
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--primary-sage);
  position: absolute;
  left: -9px;
  top: 0;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
}

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

/* Contact Info */
.contact-info {
  background-color: var(--primary-cream);
  padding: 2rem;
  border-radius: 0.75rem;
}

.contact-info h5 {
  color: var(--primary-sage-dark);
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Animation Classes - Sal.js */
[data-sal] {
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}

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

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

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

.border-sage {
  border-color: var(--primary-sage);
}

/* Decorative Elements */
.decorative-shape {
  position: absolute;
  opacity: 0.1;
  z-index: -1;
}

.blob-1 {
  width: 300px;
  height: 300px;
  background-color: var(--primary-sage);
  border-radius: 50% 60% 70% 40%;
  top: 10%;
  right: 10%;
}

.blob-2 {
  width: 200px;
  height: 200px;
  background-color: var(--primary-earth);
  border-radius: 40% 70% 60% 50%;
  bottom: 20%;
  left: 15%;
} 


/* 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;
    }
}
