/* Handmade Soy-Candle Subscription Club - Main Styles */

/* Color Variables - Warm, Natural Palette */
:root {
  /* Primary Colors */
  --primary-warm-amber: #F4A460;
  --primary-soft-cream: #F5F5DC;
  --primary-earthy-brown: #8B4513;
  --primary-sage-green: #9CAF88;
  --primary-dusty-rose: #D4A574;
  
  /* Light Shades */
  --light-amber: #F9C89B;
  --light-cream: #FAFAF8;
  --light-brown: #A0522D;
  --light-sage: #B8C9A7;
  --light-rose: #E3C09A;
  
  /* Dark Shades */
  --dark-amber: #E6955A;
  --dark-cream: #E8E8CD;
  --dark-brown: #654321;
  --dark-sage: #7A8B6E;
  --dark-rose: #C19660;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-headings: 'Georgia', 'Times New Roman', serif;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--primary-earthy-brown);
  background-color: var(--light-cream);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--primary-earthy-brown);
  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: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--dark-brown);
}

/* Header Styles */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-earthy-brown);
}

.navbar {
  background-color: var(--primary-soft-cream);
  border-bottom: 2px solid var(--primary-warm-amber);
  padding: 1rem 0;
}

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../ZON_images/candle-pattern.webp') repeat;
  opacity: 0.05;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: var(--primary-earthy-brown);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
    padding-top: 225px;
}

.hero-subtitle {
  color: var(--primary-warm-amber);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.hero-desc {
  color: var(--dark-brown);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-earthy-brown);
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: var(--primary-warm-amber);
  margin-bottom: 1.5rem;
}

.section-desc {
  text-align: center;
  color: var(--dark-brown);
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

/* About Section */
.about-section {
  background-color: var(--primary-soft-cream);
}

.about-feature {
  text-align: center;
  padding: 2rem 1rem;
  background-color: var(--light-cream);
  border-radius: 8px;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature-icon {
  font-size: 3rem;
  color: var(--primary-warm-amber);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background-color: var(--light-cream);
}

.service-card {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.service-name {
  color: var(--primary-earthy-brown);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--dark-brown);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-features li {
  color: var(--primary-sage-green);
  margin-bottom: 0.5rem;
}

.service-features li::before {
  content: "✓ ";
  color: var(--primary-warm-amber);
  font-weight: bold;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-warm-amber);
}

/* Features Section */
.features-section {
  background-color: var(--primary-soft-cream);
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  font-size: 4rem;
  color: var(--primary-dusty-rose);
  margin-bottom: 1.5rem;
}

.feature-name {
  color: var(--primary-earthy-brown);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-desc {
  color: var(--dark-brown);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-cream);
}

.priceplan-card {
  background-color: white;
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  position: relative;
}

.priceplan-card.featured {
  border: 3px solid var(--primary-warm-amber);
  transform: scale(1.05);
}

.priceplan-name {
  color: var(--primary-earthy-brown);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.priceplan-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-warm-amber);
  margin-bottom: 1.5rem;
}

.priceplan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.priceplan-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-cream);
}

/* Team Section */
.team-section {
  background-color: var(--primary-soft-cream);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem auto;
  display: block;
  border: 4px solid var(--primary-warm-amber);
}

.team-name {
  color: var(--primary-earthy-brown);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-warm-amber);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-cream);
}

.review-card {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  position: relative;
}

.review-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-warm-amber);
  position: absolute;
  top: -10px;
  left: 20px;
}

.review-text {
  color: var(--dark-brown);
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.review-author {
  color: var(--primary-earthy-brown);
  font-weight: 600;
  text-align: right;
}

/* FAQ Section */
.faq-section {
  background-color: var(--primary-soft-cream);
}

.faq-card {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.faq-answer {
  color: var(--dark-brown);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--light-cream);
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
}

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

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

/* Contact Section */
.contact-section {
  background-color: var(--primary-soft-cream);
}

.contact-form {
  background-color: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info {
  background-color: var(--primary-warm-amber);
  color: white;
  padding: 3rem;
  border-radius: 12px;
}

.contact-info h5 {
  color: white;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: white;
  margin-bottom: 1rem;
}

.form-control {
  border: 2px solid var(--light-cream);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-warm-amber);
  box-shadow: 0 0 0 0.2rem rgba(244, 164, 96, 0.25);
}

.btn-primary {
  background-color: var(--primary-warm-amber);
  border-color: var(--primary-warm-amber);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--dark-amber);
  border-color: var(--dark-amber);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background-color: var(--primary-earthy-brown);
  color: var(--light-cream);
  padding: 3rem 0 2rem 0;
}

.footer h5 {
  color: var(--primary-warm-amber);
  margin-bottom: 1.5rem;
}

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

.footer a:hover {
  color: var(--primary-warm-amber);
}

.footer-bottom {
  border-top: 1px solid var(--dark-brown);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Blog Section */
.blog-section {
  background-color: var(--light-cream);
}

.blog-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

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

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  color: var(--primary-earthy-brown);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--dark-brown);
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-warm-amber);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--dark-amber);
}

/* Animations DISABLED - SAL animations removed site-wide */
/* 
@media (prefers-reduced-motion: no-preference) {
  .sal-animate {
    transition: all 0.3s ease;
  }
}
*/

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

/* Additional Page Styles */
.additional-page-section {
  padding: 4rem 0;
}

.additional-page-section:nth-child(even) {
  background-color: var(--primary-soft-cream);
}

.additional-page-section:nth-child(odd) {
  background-color: var(--light-cream);
}

.additional-element {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.additional-element-title {
  color: var(--primary-earthy-brown);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.additional-element-desc {
  color: var(--dark-brown);
}

/* Space Page */
#space {
  min-height: 70vh;
  background-color: var(--light-cream);
  border: 2px dashed var(--primary-warm-amber);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}

/* Utility Classes */
.text-primary-amber { color: var(--primary-warm-amber); }
.text-primary-brown { color: var(--primary-earthy-brown); }
.text-primary-sage { color: var(--primary-sage-green); }
.bg-primary-cream { background-color: var(--primary-soft-cream); }
.bg-light-cream { background-color: var(--light-cream); }


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

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

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

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

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

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

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

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