/* Handmade Basket Subscription - Main Styles */
:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-sage: #A8B89A;
  --primary-cream: #F5F1E8;
  --primary-terracotta: #D4A574;
  --primary-forest: #4A5D23;
  --primary-warm-white: #FEFCF7;
  
  /* Light/Dark Shades */
  --sage-light: #C5D4B7;
  --sage-dark: #8B9E7D;
  --cream-light: #FEFDFB;
  --cream-dark: #E8E3D8;
  --terracotta-light: #E2B891;
  --terracotta-dark: #C69357;
  --forest-light: #5F7A2E;
  --forest-dark: #3A4B1B;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--forest-dark);
  background-color: var(--primary-warm-white);
    overflow-x: hidden;
}

/* Conservative Typography */
h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-forest);
}

h2 {
  font-size: 2rem;
  font-weight: 500;
  color: var(--primary-forest);
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Header Styles */
#header {
  background-color: var(--primary-warm-white);
  box-shadow: 0 2px 10px rgba(74, 93, 35, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-forest);
}

.navbar-nav .nav-link {
  color: var(--forest-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-terracotta);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--cream-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--primary-sage);
  opacity: 0.3;
  z-index: 1;
}

.hero-decorative:nth-child(1) {
  top: 10%;
  right: 15%;
}

.hero-decorative:nth-child(2) {
  bottom: 20%;
  left: 10%;
  background: var(--primary-terracotta);
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

/* About Section */
#about {
  background-color: var(--primary-cream);
}

.feature-card {
  background: var(--primary-warm-white);
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 15px rgba(74, 93, 35, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* Services Section */
#services {
  background-color: var(--primary-warm-white);
}

.service-card {
  background: var(--primary-cream);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 20px rgba(74, 93, 35, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-terracotta);
  margin: 1rem 0;
}

/* Features Section */
#features {
  background-color: var(--sage-light);
}

/* Price Plan Section */
#priceplan {
  background-color: var(--primary-warm-white);
}

.price-card {
  background: var(--primary-cream);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-terracotta);
  transform: scale(1.05);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-forest);
}

/* Team Section */
#team {
  background-color: var(--primary-cream);
}

.team-card {
  background: var(--primary-warm-white);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(74, 93, 35, 0.1);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-sage);
}

/* Reviews Section */
#reviews {
  background-color: var(--primary-warm-white);
}

.review-card {
  background: var(--primary-cream);
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  border-left: 4px solid var(--primary-terracotta);
}

/* Case Study Section */
#casestudy {
  background-color: var(--sage-light);
}

.case-card {
  background: var(--primary-warm-white);
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 15px rgba(74, 93, 35, 0.1);
}

/* Process Section */
#process {
  background-color: var(--primary-cream);
}

.process-step {
  text-align: center;
  padding: 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: 700;
  margin: 0 auto 1rem;
}

/* Timeline Section */
#timeline {
  background-color: var(--primary-warm-white);
}

.timeline-card {
  background: var(--primary-cream);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-sage);
}

/* Career Section */
#career {
  background-color: var(--sage-light);
}

.career-card {
  background: var(--primary-warm-white);
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 15px rgba(74, 93, 35, 0.1);
}

/* Core Info Section */
#coreinfo {
  background-color: var(--primary-cream);
}

.coreinfo-card {
  background: var(--primary-warm-white);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 15px rgba(74, 93, 35, 0.1);
}

/* Contact Section */
#contacts {
  background-color: var(--primary-warm-white);
}

.contact-form {
  background: var(--primary-cream);
  border-radius: 15px;
  padding: 3rem;
}

.form-control {
  border: 2px solid var(--sage-light);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-terracotta);
  box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}

.btn-primary {
  background-color: var(--primary-terracotta);
  border-color: var(--primary-terracotta);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
}

.btn-primary:hover {
  background-color: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
}

/* Blog Section */
#blog {
  background-color: var(--sage-light);
}

.blog-card {
  background: var(--primary-warm-white);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 15px rgba(74, 93, 35, 0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

/* FAQ Section */
#faq {
  background-color: var(--primary-cream);
}

.faq-card {
  background: var(--primary-warm-white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(74, 93, 35, 0.1);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 1rem;
}

/* Gallery Section */
#gallery {
  background-color: var(--primary-warm-white);
  padding: 3rem 0;
}

.gallery-item {
  margin-bottom: 2rem;
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(74, 93, 35, 0.1);
}

/* Footer */
#footer {
  background-color: var(--primary-forest);
  color: var(--primary-warm-white);
  padding: 3rem 0 1rem;
}

#footer h5 {
  color: var(--primary-cream);
  margin-bottom: 1rem;
}

#footer a {
  color: var(--sage-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer a:hover {
  color: var(--primary-cream);
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utility Classes */
.text-sage {
  color: var(--primary-sage);
}

.text-terracotta {
  color: var(--primary-terracotta);
}

.bg-sage {
  background-color: var(--primary-sage);
}

.bg-cream {
  background-color: var(--primary-cream);
}

.rounded-custom {
  border-radius: 15px;
}

.shadow-custom {
  box-shadow: 0 4px 15px rgba(74, 93, 35, 0.1);
} 


/* Team Social Links - Neon Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.social-icons-grid {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
