:root {
  /* Primary Color Palette - 5 colors with light/dark shades */
  --primary-green: #279851;
  --primary-green-light: #38de64;
  --primary-green-dark: #2f8b3f;
  
  --secondary-sage: #82bb7d;
  --secondary-sage-light: #a3daa8;
  --secondary-sage-dark: #607b5f;
  
  --accent-forest: #233f0c;
  --accent-forest-light: #487129;
  --accent-forest-dark: #243c0f;
  
  --neutral-earth: #9c7452;
  --neutral-earth-light: #9b7a66;
  --neutral-earth-dark: #77644a;
  
  --highlight-sky: #9dcdf5;
  --highlight-sky-light: #94caf0;
  --highlight-sky-dark: #65b3d7;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --line-height-base: 1.6;
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: #313131;
    overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.28rem;
}

h1, .display-5 {
  font-size: 2.61rem;
}

h2, .h3 {
  font-size: 1.88rem;
}

h3, .h4 {
  font-size: 1.35rem;
}

h4, .h5 {
  font-size: 1.15rem;
}

h5, .h6 {
  font-size: 1rem;
}

p.lead {
  font-size: 1.21rem;
}

/* Custom Styles */
.text-success {
  color: var(--primary-green) !important;
}

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

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

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

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

.bg-success {
  background-color: var(--primary-green) !important;
}

/* Hero Section */
#hero {
  background: linear-gradient(135deg, var(--highlight-sky-light) 0%, var(--secondary-sage-light) 100%);
}

/* Decorative Elements */
.rounded-circle {
  transition: transform 0.44s ease;
}

.rounded-circle:hover {
  transform: scale(1.05);
}

/* Card Styles */
.card {
  transition: transform 0.90s ease, box-shadow 0.95s ease;
}

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

/* Gallery Styles */
#gallery img {
  transition: transform 1.06s ease;
}

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

/* Footer Styles */
#footer {
  background: linear-gradient(135deg, var(--accent-forest-dark) 0%, var(--accent-forest) 100%);
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .card:hover {
    transform: none;
  }
  
  .rounded-circle:hover {
    transform: none;
  }
  
  #gallery img:hover {
    transform: none;
  }
}

/* Custom Badge */
.badge.bg-success {
  background-color: var(--primary-green) !important;
}

/* Form Styles */
.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(30, 171, 52, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

/* Navigation */
.navbar-light .navbar-nav .nav-link:hover {
  color: var(--primary-green);
}

.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary-green);
}

/* Lightbox Customization */
.lb-data .lb-close {
  color: var(--primary-green);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Section Spacing */
section {
  scroll-margin-top: 80px;
}

/* Star Rating */
.fas.fa-star.text-warning {
  color: #fc9e16 !important;
}

/* Border Success */
.border-success {
  border-color: var(--primary-green) !important;
}

/* Custom Utilities */
.text-light-emphasis {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

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

/* Mobile Optimizations */
@media (max-width: 768px) {
  .display-5 {
    font-size: 2rem;
  }
  
  .h3 {
    font-size: 1.53rem;
  }
  
  .btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

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

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

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