/* Bamboo-Fiber Home Textiles Brand - Main Styles */

:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --bamboo-sage: #8fb5a6;        /* Soft sage green */
  --bamboo-cream: #f7f5f1;       /* Natural cream */
  --bamboo-earth: #d4c4a8;       /* Warm earth */
  --bamboo-forest: #556b5d;      /* Deep forest green */
  --bamboo-sand: #e8e0d4;        /* Light sand */
  
  /* Shades */
  --bamboo-sage-light: #b8d1c6;
  --bamboo-sage-dark: #6b9584;
  --bamboo-forest-light: #7a8e82;
  --bamboo-forest-dark: #3d4f44;
  
  /* Text Colors */
  --text-primary: #2c3e35;
  --text-secondary: #556b5d;
  --text-light: #8b9b8f;
  
  /* Conservative Typography */
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-xxl: 24px;
  
  /* Header sizes - conservative */
  --h1-size: 2rem;
  --h2-size: 1.75rem;
  --h3-size: 1.5rem;
  --h4-size: 1.25rem;
  --navbar-brand-size: 1.25rem;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bamboo-cream);
}

/* Conservative Typography */
h1 { font-size: var(--h1-size); font-weight: 600; }
h2 { font-size: var(--h2-size); font-weight: 600; }
h3 { font-size: var(--h3-size); font-weight: 500; }
h4 { font-size: var(--h4-size); font-weight: 500; }
h5 { font-size: var(--font-size-xl); font-weight: 500; }
h6 { font-size: var(--font-size-lg); font-weight: 500; }

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

/* Navigation */
.navbar-brand {
  font-size: var(--navbar-brand-size) !important;
  font-weight: 600;
  color: var(--bamboo-forest) !important;
}

.navbar {
  background-color: var(--bamboo-cream);
  border-bottom: 1px solid var(--bamboo-sage-light);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bamboo-cream) 0%, var(--bamboo-sand) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--bamboo-sage-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 225px;
}

.hero-title {
  color: var(--bamboo-forest);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.hero-desc {
  color: var(--text-light);
  font-size: var(--font-size-lg);
}

/* Sections */
.section-padding {
  padding: 4rem 0;
}

.section-title {
  color: var(--bamboo-forest);
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.feature-card, .service-card, .price-card {
  background: white;
  border: 1px solid var(--bamboo-sage-light);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover, .service-card:hover, .price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-icon {
  color: var(--bamboo-sage);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.card-title {
  color: var(--bamboo-forest);
  margin-bottom: 1rem;
}

.card-desc {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.price-display {
  color: var(--bamboo-forest);
  font-size: var(--h2-size);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Buttons */
.btn-bamboo {
  background-color: var(--bamboo-sage);
  border-color: var(--bamboo-sage);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-bamboo:hover {
  background-color: var(--bamboo-sage-dark);
  border-color: var(--bamboo-sage-dark);
  color: white;
  transform: translateY(-2px);
}

.btn-outline-bamboo {
  background-color: transparent;
  border-color: var(--bamboo-sage);
  color: var(--bamboo-sage);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

/* Team Section */
.team-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--bamboo-sage-light);
  transition: transform 0.3s ease;
}

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

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 3px solid var(--bamboo-sage-light);
  background: var(--bamboo-sand);
}

/* Reviews Section */
.review-card {
  background: white;
  border: 1px solid var(--bamboo-sage-light);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.review-text {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author {
  color: var(--bamboo-forest);
  font-weight: 600;
}

/* FAQ Section */
.faq-card {
  background: white;
  border: 1px solid var(--bamboo-sage-light);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--bamboo-sand);
  padding: 1.5rem;
  margin: 0;
  color: var(--bamboo-forest);
  font-weight: 600;
}

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

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--bamboo-sage-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--bamboo-sage);
  box-shadow: 0 0 0 0.2rem rgba(143, 181, 166, 0.25);
}

/* Footer - High contrast colors only */
.footer {
  background-color: var(--bamboo-forest);
  color: var(--bamboo-cream);
  padding: 3rem 0 1rem;
}

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

.footer p, .footer a {
  color: var(--bamboo-cream);
  opacity: 0.9;
}

.footer a:hover {
  color: var(--bamboo-sage-light);
  text-decoration: none;
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  background: var(--bamboo-sand);
  height: 250px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

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


/* Team Social Links - Neon Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

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

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

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

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
