/* Boutique Spice-Blend Formulation Lab - Main CSS */
/* Bootstrap 5 integration - NO overrides allowed */

:root {
  /* Primary color palette - 5 colors + shades */
  --primary-color: #8B5A3C; /* Warm brown */
  --secondary-color: #D4A574; /* Golden spice */
  --accent-color: #A0522D; /* Sienna */
  --neutral-color: #F5E6D3; /* Cream */
  --highlight-color: #CD853F; /* Peru */
  
  /* Light/dark shades */
  --primary-light: #B5755A;
  --primary-dark: #6B4429;
  --secondary-light: #E8C298;
  --secondary-dark: #B8935F;
  --neutral-light: #FFFEF9;
  --neutral-dark: #E5D6C3;
  
  /* Conservative typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
}

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

/* Conservative typography - no large sizes */
.navbar-brand {
  font-size: var(--font-size-lg);
  color: var(--primary-color);
  font-weight: 600;
}

h1 {
  font-size: var(--font-size-xl);
  color: var(--primary-color);
}

h2 {
  font-size: var(--font-size-lg);
  color: var(--accent-color);
}

p {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #333;
}

/* Hero section - fullscreen */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--neutral-light) 0%, var(--neutral-color) 100%);
  display: flex;
  align-items: center;
}

/* Services cards */
.service-card {
  border: 1px solid var(--neutral-dark);
  border-radius: 8px;
  padding: 1.5rem;
  background: var(--neutral-light);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-price {
  color: var(--highlight-color);
  font-weight: 600;
  font-size: var(--font-size-lg);
}

/* Team member cards */
.team-card {
  text-align: center;
  padding: 1rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--secondary-color);
}

/* Gallery section */
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

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

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

/* FAQ cards - static only */
.faq-card {
  border: 1px solid var(--neutral-dark);
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 1.5rem;
  background: var(--neutral-light);
}

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

.faq-answer {
  color: #666;
  margin: 0;
}

/* Contact form */
.contact-form {
  background: var(--neutral-light);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--neutral-dark);
}

/* Footer - high contrast, no gradients */
.footer {
  background: var(--primary-dark);
  color: var(--neutral-light);
  padding: 2rem 0;
}

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

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

/* Process steps */
.process-step {
  text-align: center;
  padding: 1.5rem;
  background: var(--neutral-light);
  border-radius: 8px;
  margin-bottom: 1rem;
}

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

/* Timeline items */
.timeline-item {
  border-left: 3px solid var(--secondary-color);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--highlight-color);
}

/* Price plan cards */
.price-card {
  border: 2px solid var(--neutral-dark);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  background: var(--neutral-light);
  transition: border-color 0.3s ease;
}

.price-card:hover {
  border-color: var(--secondary-color);
}

.price-value {
  font-size: 2rem;
  color: var(--highlight-color);
  font-weight: 700;
}

/* Decorative elements */
.decorative-blob {
  width: 200px;
  height: 200px;
  background: var(--secondary-color);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  position: absolute;
  opacity: 0.1;
  z-index: -1;
}

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

/* Image placeholder styling */
.img-placeholder {
  background: var(--neutral-color);
  border: 2px dashed var(--neutral-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-style: italic;
  min-height: 200px;
} 

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


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

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

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

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

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

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