/* === SOY CANDLE WORKSHOP KITS TEMPLATE === */
/* Color Palette - 5 primary colors + shades */
:root {
  --primary-cream: #f7f3e9;
  --primary-sage: #9caf88;
  --primary-terracotta: #c4836c;
  --primary-lavender: #b8a7d9;
  --primary-charcoal: #2d3436;
  
  /* Light shades */
  --light-cream: #fdfcf7;
  --light-sage: #e8f0e4;
  --light-terracotta: #f2e5e0;
  --light-lavender: #f0ebf7;
  --light-charcoal: #636e72;
  
  /* Dark shades */
  --dark-cream: #e8e0d1;
  --dark-sage: #7a8b6b;
  --dark-terracotta: #a66b54;
  --dark-lavender: #9982c4;
  --dark-charcoal: #1a1d1f;
}

/* General Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--primary-charcoal);
  line-height: 1.6;
}

/* Conservative font sizes */
.navbar-brand {
  font-size: 1.25rem !important;
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
}

h2 {
  font-size: 2rem;
  font-weight: 500;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
}

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

.decorative-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.blob-1 {
  width: 200px;
  height: 200px;
  background: var(--primary-terracotta);
  top: 20%;
  right: 10%;
}

.blob-2 {
  width: 150px;
  height: 150px;
  background: var(--primary-lavender);
  bottom: 20%;
  left: 5%;
}

/* Section Styling */
.section-padding {
  padding: 80px 0;
}

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

/* Services Cards */
.service-card {
  border: none;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.service-price {
  color: var(--primary-terracotta);
  font-weight: 600;
  font-size: 1.25rem;
}

/* Team Cards */
.team-card {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

/* Reviews/Testimonials */
.review-card {
  border-left: 4px solid var(--primary-lavender);
  background: var(--light-cream);
}

/* Price Plan Cards */
.price-card {
  border: 2px solid var(--light-sage);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: border-color 0.3s ease;
}

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

.price-amount {
  font-size: 2.5rem;
  color: var(--primary-terracotta);
  font-weight: 700;
}

/* FAQ Cards */
.faq-card {
  border: 1px solid var(--light-sage);
  border-radius: 10px;
  margin-bottom: 1rem;
}

.faq-question {
  background: var(--light-sage);
  color: var(--dark-charcoal);
  font-weight: 600;
  padding: 1rem;
  margin: 0;
  border-radius: 10px 10px 0 0;
}

.faq-answer {
  padding: 1rem;
  background: white;
  border-radius: 0 0 10px 10px;
}

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

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(156, 175, 136, 0.25);
}

/* Buttons */
.btn-primary-custom {
  background-color: var(--primary-sage);
  border-color: var(--primary-sage);
  color: white;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 25px;
}

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

.btn-secondary-custom {
  background-color: var(--primary-terracotta);
  border-color: var(--primary-terracotta);
  color: white;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 25px;
}

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

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

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

.footer-section a:hover {
  color: var(--primary-sage);
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  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);
}

/* Process/Timeline Items */
.process-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

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

/* Breadcrumbs */
.breadcrumb-custom {
  background: var(--light-cream);
  padding: 1rem 0;
}

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

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

/* Mobile-specific no animations */
@media (max-width: 768px) {
  .service-card:hover {
    transform: none;
  }
  
  .gallery-item:hover img {
    transform: none;
  }
  
  .process-item,
  .team-card,
  .service-card {
    margin-bottom: 1.5rem;
  }
} 

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



.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;
    }
}



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

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

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

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

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

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}
