:root {
  /* Primary Colors - Pastel high-contrast palette for herbal tea theme */
  --primary-sage: #9CAF88;
  --primary-cream: #F5F1E8;
  --primary-terracotta: #D4A574;
  --primary-forest: #4A5D3A;
  --primary-lavender: #C8B5D8;
  
  /* Light/Dark Shades */
  --sage-light: #B8CDA4;
  --sage-dark: #7A8F66;
  --cream-light: #FDFCF8;
  --cream-dark: #E8E1D4;
  --terracotta-light: #E2B88A;
  --terracotta-dark: #B8935F;
  --forest-light: #5C7048;
  --forest-dark: #3A4A2E;
  --lavender-light: #D6C7E4;
  --lavender-dark: #B4A1C4;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --line-height-base: 1.6;
}

/* 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: var(--line-height-base);
  color: var(--forest-dark);
  background-color: var(--cream-light);
    overflow-x: hidden;
}

/* Typography Overrides - Conservative Sizes */
.navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 600;
  color: var(--forest-dark);
}

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

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 0.5rem;
}

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

/* Header Styles */
#header {
  background-color: var(--cream-light);
  border-bottom: 1px solid var(--sage-light);
  padding: 1rem 0;
}

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

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

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

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

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--lavender-light);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.hero-decorative:nth-child(1) {
  top: 10%;
  right: 10%;
}

.hero-decorative:nth-child(2) {
  bottom: 20%;
  left: 5%;
  background: var(--terracotta-light);
}

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

/* About Section */
#about {
  background-color: var(--cream-light);
}

.feature-card {
  background: white;
  border: 1px solid var(--sage-light);
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(154, 175, 136, 0.15);
}

/* Services Section */
#services {
  background-color: var(--sage-light);
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-sage);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-terracotta);
  margin: 1rem 0;
}

/* Features Section */
#features {
  background-color: var(--cream-light);
}

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

/* Price Plan Section */
#priceplan {
  background-color: var(--lavender-light);
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  border: 3px solid var(--sage-light);
  transition: all 0.3s ease;
}

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

.price-card:hover {
  box-shadow: 0 15px 35px rgba(74, 93, 58, 0.15);
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-terracotta);
}

/* Team Section */
#team {
  background-color: var(--cream-light);
}

.team-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

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

/* Reviews Section */
#reviews {
  background-color: var(--sage-light);
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  position: relative;
  border-left: 4px solid var(--primary-terracotta);
}

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

/* FAQ Section */
#faq {
  background-color: var(--cream-light);
}

.faq-card {
  background: white;
  border: 1px solid var(--sage-light);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--forest-light);
}

/* Gallery Section */
#gallery {
  background-color: var(--lavender-light);
  padding: 4rem 0;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Contact Section */
#contacts {
  background-color: var(--cream-light);
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

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

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

/* Footer */
#footer {
  background-color: var(--forest-dark);
  color: var(--cream-light);
  padding: 3rem 0 1rem;
}

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

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

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

#site-copyright {
  border-top: 1px solid var(--forest-light);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
  color: var(--cream-dark);
}

/* Blog Section */
#blog {
  background-color: var(--cream-light);
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

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

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

.blog-card-body {
  padding: 1.5rem;
}

/* Utility Classes */
.text-sage { color: var(--primary-sage); }
.text-forest { color: var(--forest-dark); }
.text-terracotta { color: var(--primary-terracotta); }
.bg-sage { background-color: var(--primary-sage); }
.bg-cream { background-color: var(--cream-light); }

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


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

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

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

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

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}
