/* Soy Candle Workshop Kits - Main Styles */

/* Color Palette - 5 primary colors with light/dark shades */
:root {
  --primary-cream: #f8f4f0;
  --primary-warm: #e8d5b7;
  --primary-sage: #a8b5a0;
  --primary-terracotta: #c4967a;
  --primary-charcoal: #4a4a4a;
  
  --light-cream: #faf7f4;
  --light-warm: #f0e5d2;
  --light-sage: #c5d0c0;
  --light-terracotta: #d4a890;
  --light-charcoal: #6a6a6a;
  
  --dark-cream: #e8e0d8;
  --dark-warm: #d0c19a;
  --dark-sage: #8a9782;
  --dark-terracotta: #a67c5f;
  --dark-charcoal: #2a2a2a;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--primary-charcoal);
  background-color: var(--primary-cream);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--primary-charcoal);
  margin-bottom: 1rem;
}

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(--primary-charcoal);
}

/* Conservative navbar-brand sizing */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-charcoal);
}

/* Header Styles */
.navbar {
  background-color: var(--primary-cream);
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
  color: var(--primary-charcoal);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-terracotta);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--light-warm) 100%);
  padding: 2rem 0;
}

.hero-content {
  z-index: 2;
    padding-top: 100px;
}

.hero-image {
  position: relative;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: var(--primary-sage);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary-terracotta);
  border-color: var(--primary-terracotta);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--dark-terracotta);
  border-color: var(--dark-terracotta);
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: var(--primary-terracotta);
  border-color: var(--primary-terracotta);
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 500;
}

.btn-outline-primary:hover {
  background-color: var(--primary-terracotta);
  border-color: var(--primary-terracotta);
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--primary-charcoal);
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--light-charcoal);
  font-size: 1.1rem;
}

/* About Section */
.about-section {
  background-color: var(--light-cream);
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.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: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  height: 200px;
  background: var(--primary-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.service-content {
  padding: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-terracotta);
  margin-top: 1rem;
}

/* Features Section */
.features-section {
  background-color: var(--light-cream);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--primary-cream);
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-amount {
  font-size: 3rem;
  font-weight: 600;
  color: var(--primary-terracotta);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  background-color: var(--light-cream);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--primary-sage);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-terracotta);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-cream);
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-terracotta);
  opacity: 0.3;
}

.review-author {
  font-weight: 600;
  color: var(--primary-terracotta);
  margin-top: 1rem;
}

/* Case Study Section */
.casestudy-section {
  background-color: var(--light-cream);
}

.casestudy-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.casestudy-card:hover {
  transform: translateY(-5px);
}

/* Process Section */
.process-section {
  background-color: var(--primary-cream);
}

.process-step {
  text-align: center;
  margin-bottom: 2rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-terracotta);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 1rem;
}

/* Timeline Section */
.timeline-section {
  background-color: var(--light-cream);
}

.timeline-item {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 20px;
  width: 20px;
  height: 20px;
  background: var(--primary-terracotta);
  border-radius: 50%;
}

/* Career Section */
.career-section {
  background-color: var(--primary-cream);
}

.career-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
}

.career-role {
  color: var(--primary-terracotta);
  font-weight: 500;
  margin-top: 0.5rem;
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--light-cream);
}

.coreinfo-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.coreinfo-card:hover {
  transform: translateY(-5px);
}

/* Contact Section */
.contact-section {
  background-color: var(--primary-cream);
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info {
  background: var(--light-warm);
  padding: 2rem;
  border-radius: 15px;
}

.contact-info-item {
  margin-bottom: 1rem;
}

.contact-info-item i {
  color: var(--primary-terracotta);
  margin-right: 1rem;
  width: 20px;
}

.form-control {
  border: 2px solid #eee;
  border-radius: 10px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-terracotta);
  box-shadow: 0 0 0 0.2rem rgba(196, 150, 122, 0.25);
}

/* 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;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 200px;
  background: var(--primary-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.blog-content {
  padding: 1.5rem;
}

.blog-link {
  color: var(--primary-terracotta);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  color: var(--dark-terracotta);
}

/* FAQ Section */
.faq-section {
  background-color: var(--primary-cream);
}

.faq-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-terracotta);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--primary-charcoal);
  line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--light-cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  height: 250px;
  background: var(--primary-sage);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background-color: var(--dark-charcoal);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-terracotta);
  margin-bottom: 1rem;
}

.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-terracotta);
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* Breadcrumb Styles */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 24px;
  height: 24px;
}

/* Space Page */
#space {
  min-height: 80vh;
  background-color: var(--light-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-charcoal);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.h-100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}

.rounded {
  border-radius: 0.375rem;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.bg-light {
  background-color: var(--light-cream);
}

.bg-white {
  background-color: white;
}

.text-primary {
  color: var(--primary-terracotta);
}

.text-muted {
  color: var(--light-charcoal);
} 


/* 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);
}

.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;
    }
}
