/* Main Stylesheet for Local Handmade Soap Subscription */

/* Color Palette - Soap Subscription Theme */
:root {
  /* Primary Colors */
  --color-primary: #7CB342; /* Natural Green */
  --color-secondary: #E8A87C; /* Warm Peach */
  --color-accent: #87CEEB; /* Soft Sky Blue */
  --color-neutral: #F5F5DC; /* Cream Beige */
  --color-tertiary: #DDA0DD; /* Soft Lavender */
  
  /* Light Shades */
  --color-primary-light: #A8D76A;
  --color-secondary-light: #F2C2A4;
  --color-accent-light: #B4DDF0;
  --color-neutral-light: #FEFEF9;
  --color-tertiary-light: #E8C0E8;
  
  /* Dark Shades */
  --color-primary-dark: #558B2F;
  --color-secondary-dark: #D4956E;
  --color-accent-dark: #6BB6E0;
  --color-neutral-dark: #E6E6CD;
  --color-tertiary-dark: #C484C4;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --font-size-h1: 2.2rem;
  --font-size-h2: 1.8rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.3rem;
  --font-size-h5: 1.1rem;
  --font-size-h6: 1rem;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --element-margin: 1.5rem;
}

/* Base Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #333;
  background-color: var(--color-neutral-light);
    overflow-x: hidden;
}

/* Conservative heading sizes */
h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

/* Conservative navbar brand size */
.navbar-brand {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

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

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

.navbar-nav .nav-link {
  color: var(--color-primary-dark);
  font-weight: 500;
  margin: 0 0.5rem;
}

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

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

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--color-tertiary-light);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.hero-decorative:nth-child(1) {
  top: 10%;
  right: 10%;
}

.hero-decorative:nth-child(2) {
  bottom: 20%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: var(--color-secondary-light);
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-title {
  color: var(--color-primary-dark);
  margin-bottom: var(--element-margin);
  text-align: center;
}

.section-subtitle {
  color: var(--color-secondary-dark);
  margin-bottom: var(--element-margin);
  text-align: center;
}

.section-desc {
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background-color: var(--color-neutral-light);
}

.feature-card {
  background: white;
  border: 1px solid var(--color-neutral-dark);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.feature-card i {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

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

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  height: 100%;
}

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

.service-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-primary-dark);
  margin-top: 1rem;
}

.service-features {
  text-align: left;
  padding-left: 1rem;
}

.service-features li {
  margin-bottom: 0.5rem;
  color: #666;
}

/* Features Section */
.features-section {
  background-color: var(--color-tertiary-light);
}

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

.price-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  height: 100%;
}

.price-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-primary-dark);
  margin: 1rem 0;
}

.price-features {
  text-align: left;
  padding-left: 1rem;
  margin-top: 1.5rem;
}

/* Team Section */
.team-section {
  background-color: var(--color-neutral-light);
}

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

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

.team-member-name {
  font-weight: bold;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--color-secondary-dark);
  font-style: italic;
}

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

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

.review-author {
  font-weight: bold;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

.review-text {
  color: #666;
  font-style: italic;
}

/* Case Studies Section */
.casestudy-section {
  background-color: var(--color-tertiary-light);
}

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

/* Process Section */
.process-section {
  background-color: var(--color-secondary-light);
}

.process-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

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

/* Timeline Section */
.timeline-section {
  background-color: var(--color-neutral-light);
}

.timeline-card {
  background: white;
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 0 8px 8px 0;
}

/* Career Section */
.career-section {
  background-color: var(--color-accent-light);
}

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

/* Core Info Section */
.coreinfo-section {
  background-color: var(--color-tertiary-light);
}

.coreinfo-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Contact Section */
.contact-section {
  background-color: var(--color-secondary-light);
}

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

.form-control {
  border: 2px solid var(--color-neutral-dark);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(124, 179, 66, 0.25);
}

.btn-submit {
  background-color: var(--color-primary);
  border: none;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.contact-info {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-info-item i {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-right: 1rem;
  width: 20px;
}

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

.blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.blog-card-body {
  padding: 1.5rem;
}

.blog-title {
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

.blog-excerpt {
  color: #666;
  margin-bottom: 1rem;
}

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

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

/* FAQ Section */
.faq-section {
  background-color: var(--color-accent-light);
}

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

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

.faq-answer {
  color: #666;
}

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

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

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

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

/* Footer Styles - High contrast colors only */
.footer {
  background-color: var(--color-primary-dark);
  color: white;
  padding: 3rem 0 1rem;
}

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

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

.footer a:hover {
  color: white;
}

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

/* Breadcrumb Styles */
.breadcrumb-container {
  padding: 1rem 0;
  background-color: var(--color-neutral-dark);
}

.breadcrumb-image {
  width: 24px;
  height: 24px;
}

/* Utility Classes */
.text-primary-custom { color: var(--color-primary); }
.text-secondary-custom { color: var(--color-secondary); }
.text-accent-custom { color: var(--color-accent); }
.bg-primary-custom { background-color: var(--color-primary); }
.bg-secondary-custom { background-color: var(--color-secondary); }
.bg-accent-custom { background-color: var(--color-accent); }

/* Space for index_space.html */
#space {
  min-height: 80vh;
  background: linear-gradient(45deg, var(--color-neutral-light) 0%, var(--color-accent-light) 50%, var(--color-tertiary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}



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


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

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

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

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

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

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