/* ========================================
   KOMBUCHA BREWING COMPANY - MAIN STYLES
   ======================================== */

/* Color Palette Variables */
:root {
  /* Primary Colors */
  --primary-sage: #99bb70;
  --primary-amber: #d39466;
  --primary-teal: #557d87;
  --primary-cream: #f0eee6;
  --primary-plum: #9d6878;
  
  /* Light Shades */
  --sage-light: #9db984;
  --amber-light: #e0ae83;
  --teal-light: #679ea9;
  --cream-light: #f9f7f2;
  --plum-light: #a5616c;
  
  /* Dark Shades */
  --sage-dark: #61734b;
  --amber-dark: #c49660;
  --teal-dark: #599999;
  --cream-dark: #faf6f1;
  --plum-dark: #875f71;
  
  /* Neutral Colors */
  --white: #ffffff;
  --black: #232323;
  --gray-light: #f8f9fa;
  --gray-medium: #757f8a;
  --gray-dark: #434d56;
  
  /* Text Colors */
  --text-primary: #2d2d2d;
  --text-secondary: #6f787e;
  --text-light: #ffffff;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-sage), var(--primary-teal));
  --gradient-secondary: linear-gradient(135deg, var(--primary-amber), var(--primary-plum));
  --gradient-accent: linear-gradient(135deg, var(--teal-light), var(--sage-light));
  
  /* Conservative Font Sizes */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-padding: 1.5rem;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }
h5 { font-size: var(--font-size-base); }
h6 { font-size: var(--font-size-sm); }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Conservative Navbar Brand */
.navbar-brand {
  font-size: var(--font-size-lg) !important;
  font-weight: 600;
  color: var(--primary-sage) !important;
}

/* Header Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 3px 21px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(255, 255, 255, 0.98);
}

.navbar-nav .nav-link {
  color: var(--text-primary) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-sage) !important;
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px !important;
}

.hero-section {
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../GOV_images/hero-kombucha.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content h1 {
  padding-top: 100px !important;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.60rem;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--cream-light);
  margin-bottom: 2rem;
}

.hero-desc {
  font-size: var(--font-size-lg);
  color: var(--cream-light);
  margin-bottom: 2.58rem;
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  background: var(--gradient-accent);
  border-radius: 50%;
  opacity: 0.1;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  z-index: 1;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  z-index: 1;
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: var(--font-size-base);
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: var(--gray-light);
}

.about-feature {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-7px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  border: 1px solid var(--cream-dark);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.71rem;
  min-height: 200px;
  max-height: 200px;
}

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-sage);
  margin: 1rem 0;
}

.service-features {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  margin-bottom: 1rem;
}

/* Features Section */
.features-section {
  background: var(--gradient-accent);
  color: var(--white);
}

.feature-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
}

.feature-item i {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan-section {
  background: var(--gray-light);
}

.price-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  position: relative;
  border: 2px solid transparent;
}

.price-card:hover {
  border-color: var(--primary-sage);
  transform: scale(1.05);
}

.price-card.featured {
  border-color: var(--primary-sage);
  transform: scale(1.05);
}

.price-card .price {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--primary-sage);
  margin: 1rem 0;
}

/* Team Section */
.team-section {
  background: var(--white);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-sage);
  min-width: 200px;
  min-height: 200px;
  max-width: 200px;
  max-height: 200px;
}

.team-member-name {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.62rem;
}

.team-member-role {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
}

/* Reviews Section */
.reviews-section {
  background: var(--gradient-primary);
  color: var(--white);
}

.review-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: var(--font-size-lg);
}

.review-author {
  font-weight: 600;
  color: var(--cream-light);
}

/* Case Study Section */
.casestudy-section {
  background: var(--gray-light);
}

.case-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.case-card:hover {
  transform: translateY(-5px);
}

/* Process Section */
.process-section {
  background: var(--white);
}

.process-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.process-item i {
  font-size: 3rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

.process-item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -25px;
  width: 50px;
  height: 2px;
  background: var(--primary-sage);
  transform: translateY(-50%);
}

.process-item:last-child::after {
  display: none;
}

/* Timeline Section */
.timeline-section {
  background: var(--gradient-secondary);
  color: var(--white);
}

.timeline-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 1.74rem;
  border-left: 4px solid var(--white);
}

/* Career Section */
.career-section {
  background: var(--gray-light);
}

.career-item {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.career-role {
  color: var(--primary-sage);
  font-weight: 600;
  font-size: var(--font-size-sm);
}

/* Core Info Section */
.coreinfo-section {
  background: var(--white);
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.coreinfo-item {
  text-align: center;
  padding: 2rem;
  background: var(--gray-light);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
}

.coreinfo-item i {
  font-size: 3rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

/* Contact Form Section */
.contact-section {
  background: var(--gradient-primary);
  color: var(--white);
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 3rem;
  margin-top: 3rem;
}

.form-control {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: var(--white);
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(123, 154, 94, 0.25);
}

.btn-primary {
  background: var(--primary-sage);
  border-color: var(--primary-sage);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
}

/* Blog Section */
.blog-section {
  background: var(--gray-light);
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  min-height: 200px;
  max-height: 200px;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-link {
  color: var(--primary-sage);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--sage-dark);
}

/* FAQ Section */
.faq-section {
  background: var(--white);
}

.faq-item {
  background: var(--gray-light);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--primary-sage);
  color: var(--white);
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 600;
}

.faq-question:hover {
  background: var(--sage-dark);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--text-secondary);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
.gallery-section {
  background: var(--gray-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  min-height: 250px;
  max-height: 350px;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background: var(--text-primary);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

.footer p, .footer a {
  color: var(--gray-medium);
  text-decoration: none;
  margin-bottom: 0.74rem;
}

.footer a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--gray-dark);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Space Page */
#space {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: var(--font-size-2xl);
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

/* Utilities */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

.bg-gradient-accent {
  background: var(--gradient-accent);
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid var(--cream-light);
  border-radius: 50%;
  border-top-color: var(--primary-sage);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Print Styles */
@media print {
  .navbar, .footer {
    display: none;
  }
  
  .section {
    page-break-inside: avoid;
  }
} 


/* 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;
}

.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;
    }
}
