/* Specialty Gluten-Free Bakery Truck - Main Styles */

:root {
  --primary-wheat: #F4E4BC;
  --primary-sage: #9CAF88;
  --primary-cream: #FFF8E7;
  --primary-terracotta: #D2691E;
  --primary-forest: #2F4F2F;
  
  /* Light variations */
  --light-wheat: #F9F1D9;
  --light-sage: #B8C9A9;
  --light-cream: #FFFCF3;
  --light-terracotta: #E8944B;
  --light-forest: #556B55;
  
  /* Dark variations */
  --dark-wheat: #E6D1A3;
  --dark-sage: #7A9167;
  --dark-cream: #F0E8D0;
  --dark-terracotta: #B8551A;
  --dark-forest: #1C2F1C;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-forest);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--dark-forest);
}

/* Header Styles */
.navbar {
  background-color: var(--primary-wheat);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(47, 79, 47, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-forest);
}

.navbar-nav .nav-link {
  color: var(--primary-forest);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: var(--light-sage);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: var(--light-terracotta);
  border-radius: 50%;
  opacity: 0.2;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 275px;
}

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

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

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

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

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

.feature-icon {
  font-size: 3rem;
  color: var(--primary-terracotta);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background-color: var(--primary-cream);
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

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

.service-img {
  height: 200px;
  background: var(--light-sage);
  position: relative;
}

.service-content {
  padding: 1.5rem;
}

.service-price {
  background: var(--primary-terracotta);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: inline-block;
  font-weight: 600;
}

/* Features Section */
.features-section {
  background-color: var(--light-wheat);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--primary-cream);
}

.price-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

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

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

.team-card {
  text-align: center;
  margin-bottom: 2rem;
}

.team-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--light-sage);
  margin: 0 auto 1rem;
  border: 5px solid var(--primary-wheat);
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-wheat);
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 5px solid var(--primary-terracotta);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Case Study Section */
.casestudy-section {
  background-color: var(--light-cream);
}

.case-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Process Section */
.process-section {
  background-color: var(--primary-cream);
}

.process-step {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.process-number {
  background: var(--primary-terracotta);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Timeline Section */
.timeline-section {
  background-color: var(--light-wheat);
}

.timeline-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 5px solid var(--primary-sage);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Career Section */
.career-section {
  background-color: var(--primary-cream);
}

.career-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--light-cream);
}

.info-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact-section {
  background-color: var(--primary-wheat);
}

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

.form-control {
  border: 2px solid var(--light-sage);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-terracotta);
  box-shadow: 0 0 0 0.2rem rgba(210, 105, 30, 0.25);
}

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

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

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

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.blog-img {
  height: 200px;
  background: var(--light-sage);
}

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section */
.faq-section {
  background-color: var(--primary-cream);
}

.faq-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

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

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

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  height: 200px;
  background: var(--light-sage);
  border-radius: 15px;
  overflow: hidden;
}

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

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

.footer p, .footer a {
  color: var(--light-cream);
}

.footer a:hover {
  color: var(--primary-wheat);
  text-decoration: none;
}

/* Breadcrumb */
.breadcrumb-section {
  background-color: var(--light-wheat);
  padding: 2rem 0;
}

.breadcrumb-img {
  width: 100px;
  height: 50px;
  background: var(--primary-sage);
  border-radius: 10px;
}

/* Animations - Sal.js disabled */
[data-sal] {
  transition: none !important;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  [data-sal] {
    transition: none !important;
  }
  
  .hero-section::before,
  .hero-section::after {
    animation: none;
  }
  
  .feature-card:hover,
  .service-card:hover,
  .btn-primary:hover {
    transform: none;
  }
}

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


/* Team Social Links - Neon Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

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

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

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

.x-link i {
    display: none;
}

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