/* =============================================
   SOY CANDLE SUBSCRIPTION CLUB - MAIN STYLES
   ============================================= */

/* Color Palette Variables */
:root {
  /* Primary Colors */
  --primary-cream: #f0e9d9;
  --primary-warm-beige: #d8b996;
  --primary-soft-amber: #bf956e;
  --primary-sage-green: #afb9aa;
  --primary-deep-brown: #786543;
  
  /* Light/Dark Variations */
  --cream-light: #FAF8F3;
  --cream-dark: #d0cbc5;
  --beige-light: #f0e5cb;
  --beige-dark: #cbbb9c;
  --amber-light: #f5d6aa;
  --amber-dark: #c0855e;
  --sage-light: #b7bcb3;
  --sage-dark: #9cb38b;
  --brown-light: #92774d;
  --brown-dark: #615531;
  
  /* Functional Colors */
  --text-primary: #2f2f2f;
  --text-secondary: #6b6b6b;
  --text-light: #7a7979;
  --background-primary: #FEFEFE;
  --background-secondary: #F8F8F8;
  --border-color: #e0e0e0;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--background-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  margin: 0;
  padding: 0;
}

/* Conservative Typography */
h1 {
  font-size: 2.34rem;
  font-weight: 600;
  color: var(--primary-deep-brown);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.93rem;
  font-weight: 500;
  color: var(--primary-deep-brown);
  margin-bottom: 0.98rem;
}

h3 {
  font-size: 1.51rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.83rem;
}

h4 {
  font-size: 1.22rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.73rem;
}

p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Header Styles */
.navbar {
  background-color: var(--primary-cream);
  padding: 1rem 0;
  box-shadow: 0 4px 16px var(--shadow-light);
}

.navbar-brand {
  font-size: 1.59rem;
  font-weight: 600;
  color: var(--primary-deep-brown);
}

.navbar-nav .nav-link {
  color: var(--text-primary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-soft-amber);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--primary-warm-beige) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: var(--primary-sage-green);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 2rem 0;
    padding-top: 250px;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 23px;
  box-shadow: 0 20px 40px var(--shadow-medium);
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: var(--background-secondary);
}

.service-card {
  background: white;
  border-radius: 19px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 15px 30px var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  border: none;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-medium);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.61rem;
}

.service-price {
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--primary-soft-amber);
  margin-top: 1rem;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: var(--background-primary);
}

.about-feature {
  text-align: center;
  margin-bottom: 2rem;
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-sage-green);
  margin-bottom: 1rem;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: var(--primary-cream);
}

.feature-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-soft-amber);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.price-plan {
  padding: 5rem 0;
  background-color: var(--background-secondary);
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 15px 30px var(--shadow-light);
  margin-bottom: 2rem;
  border: none;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-soft-amber), var(--primary-sage-green));
}

.price-card-price {
  font-size: 2.61rem;
  font-weight: 700;
  color: var(--primary-deep-brown);
  margin: 1rem 0;
}

.price-card-features {
  text-align: left;
  margin: 1.5rem 0;
}

.price-card-features ul {
  list-style: none;
  padding: 0;
}

.price-card-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
}

.price-card-features li::before {
  content: 'âœ“';
  color: var(--primary-sage-green);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Team Section */
.team {
  padding: 5rem 0;
  background-color: var(--background-primary);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 5px solid var(--primary-warm-beige);
}

.team-member-role {
  color: var(--primary-soft-amber);
  font-weight: 500;
}

/* Reviews Section */
.reviews {
  padding: 5rem 0;
  background-color: var(--primary-cream);
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 15px 30px var(--shadow-light);
  border: none;
}

.review-author {
  font-weight: 600;
  color: var(--primary-deep-brown);
  margin-top: 1rem;
}

/* Process Section */
.process {
  padding: 5rem 0;
  background-color: var(--background-secondary);
}

.process-item {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.process-item::before {
  content: counter(process-counter);
  counter-increment: process-counter;
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-soft-amber);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.22rem;
}

.process {
  counter-reset: process-counter;
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background-color: var(--background-primary);
}

.faq-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px var(--shadow-light);
  border: none;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-deep-brown);
  margin-bottom: 0.74rem;
}

.faq-answer {
  color: var(--text-secondary);
  margin: 0;
}

/* Gallery Section */
.gallery {
  padding: 5rem 0;
  background-color: var(--background-secondary);
}

.gallery-item {
  margin-bottom: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: var(--background-primary);
}

.contact-form {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px var(--shadow-light);
}

.contact-info {
  padding: 2rem;
}

.contact-info-item {
  margin-bottom: 1.57rem;
  display: flex;
  align-items: center;
}

.contact-info-item i {
  font-size: 1.52rem;
  color: var(--primary-soft-amber);
  margin-right: 1rem;
}

/* Footer */
.footer {
  background-color: var(--amber-light);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-warm-beige);
  margin-bottom: 1rem;
}

.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-soft-amber);
}

.footer-bottom {
  border-top: 1px solid var(--brown-light);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* Form Styles */
.form-control {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-soft-amber);
  box-shadow: 0 0 0 0.2rem rgba(209, 166, 129, 0.25);
}

.btn-primary {
  background-color: var(--primary-soft-amber);
  border-color: var(--primary-soft-amber);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-2px);
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-deep-brown);
}

.text-secondary-custom {
  color: var(--text-secondary);
}

.bg-primary-custom {
  background-color: var(--primary-cream);
}

.bg-secondary-custom {
  background-color: var(--primary-warm-beige);
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Section Spacing */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.section-description {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Breadcrumb */
.breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

/* Blog Section */
.blog {
  padding: 5rem 0;
  background-color: var(--background-secondary);
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-light);
  margin-bottom: 2rem;
  border: none;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-title {
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--primary-deep-brown);
  margin-bottom: 1rem;
}

.blog-card-excerpt {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.blog-card-link {
  color: var(--primary-soft-amber);
  text-decoration: none;
  font-weight: 500;
}

.blog-card-link:hover {
  color: var(--amber-dark);
}

/* Space Page */
#space {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-secondary);
}

/* Responsive adjustments for conservative sizes */
@media (max-width: 768px) {
  h1 {
    font-size: 1.94rem;
  }
  
  h2 {
    font-size: 1.61rem;
  }
  
  .navbar-brand {
    font-size: 1.32rem;
  }
  
  .hero {
    min-height: 80vh;
  }
  
  .section {
    padding: 3rem 0;
  }
} 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
