/* ===== BOUTIQUE SPICE-BLEND FORMULATION LAB TEMPLATE ===== */
/* Conservative typography and spice-themed color palette */

:root {
  /* Spice Lab Color Palette - 5 primary colors with shades */
  --spice-cinnamon: #cd6224;
  --spice-paprika: #de5f00;
  --spice-turmeric: #f8e622;
  --spice-sage: #a8c298;
  --spice-cardamom: #72a578;
  
  /* Light shades */
  --spice-cinnamon-light: #f0e9e5;
  --spice-paprika-light: #fbeadc;
  --spice-turmeric-light: #eadb9b;
  --spice-sage-light: #cce1bf;
  --spice-cardamom-light: #ffffff;
  
  /* Dark shades */
  --spice-cinnamon-dark: #8d380c;
  --spice-paprika-dark: #a25108;
  --spice-turmeric-dark: #adaa16;
  --spice-sage-dark: #67865a;
  --spice-cardamom-dark: #5f8b64;
  
  /* Neutral colors */
  --spice-cream: #FAF7F2;
  --spice-charcoal: #302d2d;
}

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

.navbar-brand {
  font-size: 1.25rem !important; /* Conservative size */
  font-weight: 600;
  color: var(--spice-cinnamon-dark);
}

h1 {
  font-size: 2.5rem; /* Conservative, not oversized */
  font-weight: 700;
  color: var(--spice-cinnamon-dark);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--spice-paprika-dark);
  margin-bottom: 0.75rem;
}

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

p {
  font-size: 1rem; /* Conservative paragraph size */
  margin-bottom: 1rem;
}

/* Header Styling */
.navbar {
  background-color: var(--spice-cream);
  border-bottom: 2px solid var(--spice-cinnamon-light);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--spice-charcoal);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--spice-cinnamon);
}

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

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

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

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

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

/* Services Cards */
.service-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 2px solid var(--spice-sage-light);
}

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

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

/* Features Section */
.feature-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  margin-bottom: 2rem;
  border: 1px solid var(--spice-cardamom-light);
}

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

/* Team Section */
.team-member {
  text-align: center;
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--spice-sage-light);
}

/* Reviews Section */
.review-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-left: 4px solid var(--spice-cinnamon);
  margin-bottom: 2rem;
}

/* FAQ Section */
.faq-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--spice-turmeric-light);
}

.faq-question {
  font-weight: 600;
  color: var(--spice-paprika-dark);
  margin-bottom: 0.5rem;
}

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

.form-control {
  border: 2px solid var(--spice-sage-light);
  border-radius: 5px;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--spice-cinnamon);
  box-shadow: 0 0 0 0.2rem rgba(231, 106, 53, 0.25);
}

.btn-primary {
  background-color: var(--spice-cinnamon);
  border-color: var(--spice-cinnamon);
  padding: 0.75rem 2rem;
  font-weight: 600;
}

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

/* Footer */
.footer {
  background-color: var(--spice-charcoal);
  color: white;
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--spice-turmeric-light);
  text-decoration: none;
}

.footer a:hover {
  color: var(--spice-turmeric);
}

/* Gallery */
.gallery-item {
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Process/Timeline Steps */
.process-step {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-top: 4px solid var(--spice-cardamom);
  margin-bottom: 2rem;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--spice-turmeric);
  color: white;
  border-radius: 50%;
  line-height: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Price Plan Cards */
.price-card {
  background: white;
  border-radius: 10px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 2px solid var(--spice-sage-light);
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: var(--spice-cinnamon);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--spice-paprika);
}

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

/* Breadcrumb (image only) */
.breadcrumb-image {
  max-height: 30px;
  width: auto;
}

/* Blog Grid */
.blog-post {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-3px);
}

.blog-post-content {
  padding: 2rem;
}

/* Career Section */
.career-position {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  border-left: 4px solid var(--spice-sage);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

/* Core Info Grid */
.core-info-item {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-top: 3px solid var(--spice-paprika);
  margin-bottom: 2rem;
}

/* Case Study Cards */
.case-study-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 1px solid var(--spice-cinnamon-light);
  margin-bottom: 2rem;
} 


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