:root {
  /* Primary Color Palette - Organic Tea Theme */
  --primary-green: #7c9885;
  --primary-brown: #8b6f47;
  --primary-cream: #f5f1e8;
  --primary-sage: #9caf88;
  --primary-terracotta: #c17767;
  
  /* Light/Dark Shades */
  --light-green: #a8c4b2;
  --dark-green: #5a6f62;
  --light-brown: #b8956b;
  --dark-brown: #6b5235;
  --light-cream: #faf8f3;
  --dark-cream: #e8e0d1;
}

/* Conservative Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-brown);
  background-color: var(--light-cream);
    overflow-x: hidden;
}

.navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 600;
  color: var(--primary-green);
}

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

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

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

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

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

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

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

.hero-decorative:nth-child(2) {
  bottom: 20%;
  left: 5%;
  width: 150px;
  height: 150px;
}

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

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

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

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

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

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

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-brown);
}

/* Team Cards */
.team-card {
  border: none;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Review Cards */
.review-card {
  border: none;
  background: var(--primary-cream);
  border-left: 4px solid var(--primary-green);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* FAQ Cards */
.faq-card {
  border: none;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

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

.faq-answer {
  color: var(--dark-brown);
  line-height: 1.6;
}

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

#footer h5 {
  color: var(--primary-cream);
  margin-bottom: 1rem;
}

#footer a {
  color: var(--light-cream);
  text-decoration: none;
}

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

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

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(124, 152, 133, 0.25);
}

/* Gallery */
#gallery img {
  border-radius: 8px;
  transition: transform 0.3s ease;
}

#gallery img:hover {
  transform: scale(1.05);
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

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

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-sage);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
} 

.hero-content {
    padding-top: 275px;
}


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