/* Gourmet Herbal Tea Subscription Template - Main Styles */

/* CSS Variables - 5 Primary Colors + Shades */
:root {
  /* Primary Colors */
  --tea-green: #6B8E23;        /* Olive green for herbal theme */
  --sage-green: #9CAF88;       /* Soft sage for accents */
  --earth-brown: #8B4513;      /* Rich earth tone */
  --cream-beige: #F5F5DC;      /* Warm neutral */
  --deep-forest: #355E3B;      /* Deep green for contrast */
  
  /* Light Shades */
  --tea-green-light: #8FBC8F;
  --sage-green-light: #C8D5B8;
  --earth-brown-light: #D2B48C;
  --cream-beige-light: #FEFEFE;
  --deep-forest-light: #6B8E6B;
  
  /* Dark Shades */
  --tea-green-dark: #556B2F;
  --sage-green-dark: #7D8471;
  --earth-brown-dark: #654321;
  --cream-beige-dark: #E6E6D1;
  --deep-forest-dark: #2F4F2F;
  
  /* Typography */
  --font-family-base: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
}

/* Base Styles */
body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--deep-forest);
  background-color: var(--cream-beige-light);
    overflow-x: hidden;
}

/* Conservative Typography */
h1 { font-size: 2rem; font-weight: 600; }
h2 { font-size: 1.75rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 500; }
h5 { font-size: 1.1rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }

/* Navbar Brand - Conservative Size */
.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 600;
  color: var(--deep-forest);
}

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

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--tea-green-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 30%;
  height: 150%;
  background: var(--earth-brown-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 125px;
}

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

.section-alt {
  background-color: var(--sage-green-light);
  color: var(--deep-forest-dark);
}

/* About Section */
.about-feature {
  text-align: center;
  padding: 2rem 1rem;
  background-color: var(--cream-beige-light);
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-feature i {
  font-size: 2.5rem;
  color: var(--tea-green);
  margin-bottom: 1rem;
}

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

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

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

.service-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--earth-brown);
  margin-top: 1rem;
}

/* Features Section */
.feature-item {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--sage-green);
  margin-bottom: 1rem;
}

/* Price Plans */
.price-card {
  background-color: white;
  border-radius: 15px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
}

.price-card.featured {
  border: 3px solid var(--tea-green);
  transform: scale(1.05);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--earth-brown);
}

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

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

/* Team Section */
.team-member {
  text-align: center;
  padding: 1.5rem;
  background-color: white;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

/* Reviews (Testimonials) - Static Cards Only */
.review-card {
  background-color: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--sage-green-light);
  font-family: serif;
}

.review-author {
  font-weight: 600;
  color: var(--tea-green);
  margin-top: 1rem;
}

/* Case Studies */
.case-study-card {
  background-color: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: relative;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: var(--tea-green);
  color: white;
  border-radius: 50%;
  line-height: 50px;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Timeline Events */
.timeline-item {
  background-color: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-left: 4px solid var(--sage-green);
}

/* Career Positions */
.career-position {
  background-color: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.career-role {
  font-weight: 600;
  color: var(--earth-brown);
  margin-bottom: 0.5rem;
}

/* Core Info */
.core-info-item {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.core-info-item i {
  font-size: 2.5rem;
  color: var(--deep-forest);
  margin-bottom: 1rem;
}

/* FAQ Section - Static Cards Only */
.faq-card {
  background-color: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
  font-weight: 600;
  color: var(--tea-green);
  margin-bottom: 1rem;
}

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

/* Blog Section */
.blog-post {
  background-color: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.blog-link:hover {
  color: var(--tea-green-dark);
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  background-color: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.form-control:focus {
  border-color: var(--tea-green);
  box-shadow: 0 0 0 0.2rem rgba(107, 142, 35, 0.25);
}

.btn-primary {
  background-color: var(--tea-green);
  border-color: var(--tea-green);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--tea-green-dark);
  border-color: var(--tea-green-dark);
}

/* Contact Info */
.contact-info {
  background-color: var(--sage-green-light);
  border-radius: 15px;
  padding: 2rem;
}

.contact-info-item {
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--deep-forest);
  margin-right: 1rem;
}

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

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

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

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

/* Footer */
.footer {
  background-color: var(--deep-forest);
  color: var(--cream-beige-light);
  padding: 3rem 0 1rem;
}

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

.footer a {
  color: var(--cream-beige-light);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer a:hover {
  color: var(--sage-green-light);
}

.footer .sitename {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--sage-green-light);
}

/* Breadcrumb */
.breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Utility Classes */
.text-tea-green { color: var(--tea-green); }
.text-sage-green { color: var(--sage-green); }
.text-earth-brown { color: var(--earth-brown); }
.text-deep-forest { color: var(--deep-forest); }

.bg-tea-green { background-color: var(--tea-green); }
.bg-sage-green { background-color: var(--sage-green); }
.bg-earth-brown { background-color: var(--earth-brown); }
.bg-cream-beige { background-color: var(--cream-beige); }

/* Animations - Respect Reduced Motion */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }
  
  .slide-up {
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
  }
  
  @keyframes slideUp {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
}

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



/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

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

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

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

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

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

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

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

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

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