:root {
  /* Zero-Waste Restaurant Consulting Color Palette */
  --primary-green: #4a7c59;
  --primary-earth: #8b5a3c;
  --primary-sage: #87a96b;
  --primary-cream: #f4f1e8;
  --primary-forest: #2d5016;
  
  /* Light variations */
  --light-green: #6b9d78;
  --light-earth: #a67c63;
  --light-sage: #a1c285;
  --light-cream: #faf8f3;
  --light-forest: #4a7029;
  
  /* Dark variations */
  --dark-green: #356144;
  --dark-earth: #6d4530;
  --dark-sage: #6d8556;
  --dark-cream: #e8e5dc;
  --dark-forest: #1f3610;
}

/* Base Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-forest);
  background-color: var(--light-cream);
}

/* Conservative Font Sizes */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-forest);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-forest);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-green);
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-earth);
}

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

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

.hero-decorative {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: var(--light-sage);
  border-radius: 50% 30% 50% 30%;
  opacity: 0.1;
  z-index: 1;
}

.hero-decorative::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -100px;
  width: 200px;
  height: 200px;
  background: var(--light-green);
  border-radius: 30% 50% 30% 50%;
  opacity: 0.8;
}

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

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

.services-card .card-header {
  background: var(--primary-green);
  color: white;
  border: none;
  padding: 1.5rem;
  text-align: center;
}

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

/* Team Section */
.team-card {
  text-align: center;
  background: white;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-sage);
  margin-bottom: 1.5rem;
}

/* Reviews/Testimonials Section */
.review-card {
  background: white;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-sage);
  line-height: 1;
}

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

.faq-question {
  background: var(--primary-cream);
  color: var(--primary-forest);
  padding: 1.5rem;
  margin: 0;
  font-weight: 600;
  border-bottom: 2px solid var(--light-sage);
}

.faq-answer {
  padding: 1.5rem;
  margin: 0;
  background: white;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

/* Utility Classes */
.section-padding {
  padding: 5rem 0;
}

.text-primary-green {
  color: var(--primary-green);
}

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

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

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

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

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

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

/* Mobile Specific - No scroll animations */
@media (max-width: 768px) {
  [data-sal] {
    opacity: 1 !important;
    transform: none !important;
  }
} 

.hero-section h1 {
    padding-top: 250px;
}


/* Team Social Links - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.5);
}

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

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

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

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