/* Handmade Basket Subscription Template - Main CSS */

/* Color Palette - Pastel High-Contrast Colors */
:root {
  --primary-warm-beige: #F4E6D4;
  --primary-sage-green: #A8C09A;
  --primary-terracotta: #D4A574;
  --primary-cream-white: #FFF8F0;
  --primary-forest-green: #5B7065;
  
  /* Light/Dark Shades */
  --light-beige: #FAF0E6;
  --dark-beige: #E8D3B8;
  --light-sage: #C4D4B8;
  --dark-sage: #8CA680;
  --light-terracotta: #E1B888;
  --dark-terracotta: #C29660;
  --dark-cream: #F0E6D6;
  --light-forest: #7A9085;
  --dark-forest: #4A5B52;
}

/* Base Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-forest);
  background-color: var(--primary-cream-white);
    overflow-x: hidden;
}

/* Conservative Typography Sizes */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-forest-green);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-forest-green);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-forest-green);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-sage);
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark-sage);
}

p, .lead {
  font-size: 1rem;
  color: var(--dark-forest);
  margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-warm-beige) 0%, var(--light-beige) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::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-section .container {
  position: relative;
  z-index: 2;
}

/* Navigation */
.navbar {
  background-color: var(--primary-cream-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--primary-forest-green);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

/* Button Styles */
.btn-primary {
  background-color: var(--primary-sage-green);
  border-color: var(--primary-sage-green);
  color: white;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

.btn-secondary {
  background-color: var(--primary-terracotta);
  border-color: var(--primary-terracotta);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--dark-terracotta);
  border-color: var(--dark-terracotta);
}

/* Section Padding */
.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

/* Cards */
.card {
  border: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border-radius: 15px;
  transition: transform 0.3s ease;
  background-color: white;
}

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

.card-header {
  background-color: var(--light-beige);
  border: none;
  border-radius: 15px 15px 0 0;
  padding: 1.5rem;
}

.card-body {
  padding: 2rem;
}

/* Service Cards */
.service-card {
  text-align: center;
  margin-bottom: 2rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-terracotta);
  margin-top: 1rem;
}

/* Team Cards */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

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

/* Review Cards */
.review-card {
  background-color: var(--light-beige);
  border-left: 4px solid var(--primary-sage-green);
  margin-bottom: 2rem;
}

/* FAQ Cards */
.faq-card {
  margin-bottom: 1.5rem;
  background-color: var(--primary-cream-white);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-forest-green);
  margin-bottom: 0.5rem;
}

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

/* Process Steps */
.process-step {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.process-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: var(--primary-sage-green);
  color: white;
  border-radius: 50%;
  line-height: 60px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Timeline */
.timeline-item {
  border-left: 3px solid var(--primary-sage-green);
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 15px;
  height: 15px;
  background-color: var(--primary-terracotta);
  border-radius: 50%;
}

/* Contact Form */
.contact-form {
  background-color: var(--light-beige);
  padding: 3rem;
  border-radius: 15px;
}

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

.form-control:focus {
  border-color: var(--primary-sage-green);
  box-shadow: 0 0 0 0.2rem rgba(168, 192, 154, 0.25);
}

/* Footer */
.footer {
  background-color: var(--primary-forest-green);
  color: var(--primary-cream-white);
  padding: 3rem 0 1rem;
}

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

.footer a {
  color: var(--light-beige);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1rem;
}

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

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

/* Blog */
.blog-card {
  height: 100%;
  border-radius: 15px;
}

.blog-image {
  height: 200px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

/* Price Plans */
.price-plan {
  text-align: center;
  position: relative;
}

.price-plan.featured {
  transform: scale(1.05);
  border: 3px solid var(--primary-sage-green);
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-terracotta);
}

/* Animation Classes for Sal.js */
/* .sal-animate {
  transition: all 0.5s ease;
} */

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .card:hover {
    transform: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
}


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


/* 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;
    }
}
