/* ===== HANDMADE SOY-CANDLE SUBSCRIPTION CLUB - MAIN STYLES ===== */

/* Color Palette - Pastel High-Contrast Soy-Candle Theme */
:root {
  --primary-cream: #e5e3df;
  --warm-sage: #96a887;
  --soft-lavender: #a483c5;
  --gentle-peach: #f9b396;
  --warm-terracotta: #f27d44;
  
  /* Light/Dark Variations */
  --cream-light: #FDFBF7;
  --cream-dark: #ede2c0;
  --sage-light: #c5d7a6;
  --sage-dark: #718269;
  --lavender-light: #cfc1e7;
  --lavender-dark: #9872d9;
  --peach-light: #edd1be;
  --peach-dark: #eda791;
  --terracotta-light: #e68e68;
  --terracotta-dark: #db7d50;
}

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

/* Conservative Typography Sizes */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--warm-terracotta);
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--warm-terracotta);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 0.875rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--lavender-dark);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--terracotta-dark);
  margin-bottom: 0.5rem;
}

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

.lead {
  font-size: 1.125rem;
  color: var(--sage-dark);
}

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

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: var(--soft-lavender);
  opacity: 0.1;
  border-radius: 50%;
  transform: rotate(-15deg);
}

/* Buttons */
.btn-primary {
  background-color: var(--warm-terracotta);
  border-color: var(--warm-terracotta);
  color: white;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
}

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

.btn-outline-primary {
  color: var(--warm-terracotta);
  border-color: var(--warm-terracotta);
}

.btn-outline-primary:hover {
  background-color: var(--warm-terracotta);
  border-color: var(--warm-terracotta);
}

/* Section Spacing */
.section {
  padding: 5rem 0;
}

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

/* Cards */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
}

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

.card-header {
  background-color: var(--warm-sage);
  color: white;
  border-radius: 12px 12px 0 0;
  font-weight: 600;
}

/* Service Cards */
.service-card {
  background: linear-gradient(145deg, white 0%, var(--cream-light) 100%);
  border: 1px solid var(--sage-light);
}

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

/* Team Cards */
.team-card {
  text-align: center;
  background-color: white;
}

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

/* Review Cards */
.review-card {
  background: linear-gradient(135deg, var(--lavender-light) 0%, var(--peach-light) 100%);
  border: none;
}

.review-text {
  font-style: italic;
  color: var(--sage-dark);
}

.review-author {
  color: var(--warm-terracotta);
  font-weight: 600;
}

/* FAQ Cards */
.faq-card {
  margin-bottom: 1rem;
  background-color: white;
  border-left: 4px solid var(--warm-sage);
}

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

.faq-answer {
  color: #535353;
}

/* Contact Form */
.contact-form {
  background: linear-gradient(135deg, var(--cream-light) 0%, white 100%);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.form-control:focus {
  border-color: var(--warm-sage);
  box-shadow: 0 0 0 0.2rem rgba(133, 153, 113, 0.25);
}

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

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

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

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

/* Gallery Images */
.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

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

/* Pricing Cards */
.pricing-card {
  background: linear-gradient(135deg, white 0%, var(--peach-light) 100%);
  border: 2px solid var(--warm-sage);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--warm-terracotta);
  transform: scale(1.05);
}

.pricing-price {
  font-size: 2rem;
  color: var(--warm-terracotta);
  font-weight: 700;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--cream-light) 0%, white 100%);
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid var(--sage-light);
}

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

/* Timeline */
.timeline-item {
  padding: 1.5rem;
  background-color: white;
  border-left: 4px solid var(--soft-lavender);
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Core Info Items */
.coreinfo-item {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--lavender-light) 0%, var(--cream-light) 100%);
  border-radius: 12px;
  height: 100%;
}

/* Blog Cards */
.blog-card {
  background-color: white;
  border: 1px solid var(--sage-light);
  transition: all 0.3s ease;
}

.blog-card:hover {
  border-color: var(--warm-sage);
}

/* Animation Respect for Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Breadcrumbs */
.breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  height: 24px;
  width: auto;
} 

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


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

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

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

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

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

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

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

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

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