/* Gourmet Herbal Tea Subscription - Main CSS */
/* Bootstrap 5 CDN Integration - DO NOT OVERRIDE BOOTSTRAP CORE STYLES */

/* Tea-themed Color Palette */
:root {
  /* Primary Colors */
  --tea-green: #8FBC8F;
  --tea-brown: #8B4513;
  --tea-cream: #F5F5DC;
  --tea-sage: #9CAF88;
  --tea-gold: #DAA520;
  
  /* Light Shades */
  --tea-light-green: #B8E6B8;
  --tea-light-brown: #CD853F;
  --tea-light-cream: #FFFEF7;
  --tea-light-sage: #C5D4B7;
  --tea-light-gold: #F4E4A1;
  
  /* Dark Shades */
  --tea-dark-green: #556B2F;
  --tea-dark-brown: #654321;
  --tea-dark-cream: #E6E6DA;
  --tea-dark-sage: #6B8E4E;
  --tea-dark-gold: #B8860B;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--tea-dark-brown);
  background-color: var(--tea-light-cream);
  line-height: 1.6;
    overflow-x: hidden;
}

/* Conservative Typography */
h1 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--tea-dark-green);
}

h2 {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--tea-brown);
}

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

h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

h5 {
  font-size: 1.1rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Header Styles */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--tea-dark-green);
}

.navbar {
  background-color: var(--tea-cream);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
  color: var(--tea-dark-brown);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: var(--tea-sage);
  border-radius: 50%;
  opacity: 0.3;
  transform: translate(150px, -150px);
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: var(--tea-gold);
  border-radius: 50%;
  opacity: 0.3;
  transform: translate(-100px, 100px);
}

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

.section-alt {
  background-color: var(--tea-light-cream);
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  height: 100%;
}

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

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tea-gold);
}

/* Feature Cards */
.feature-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  height: 100%;
}

.feature-icon {
  font-size: 3rem;
  color: var(--tea-sage);
  margin-bottom: 1rem;
}

/* Price Plan Cards */
.price-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  overflow: hidden;
  height: 100%;
  border: 2px solid transparent;
}

.price-card:hover {
  transform: translateY(-10px);
  border-color: var(--tea-gold);
}

.price-card.featured {
  border-color: var(--tea-gold);
  transform: scale(1.05);
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  height: 100%;
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Review Cards - Static Bootstrap Cards Only */
.review-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  height: 100%;
}

/* Case Study Cards */
.case-study-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  overflow: hidden;
  height: 100%;
}

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

.process-number {
  width: 60px;
  height: 60px;
  background: var(--tea-gold);
  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 Items */
.timeline-item {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--tea-sage);
}

/* Career Cards */
.career-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 2rem;
  height: 100%;
}

/* Core Info Cards */
.core-info-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 2rem;
  text-align: center;
  height: 100%;
}

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

.form-control {
  border: 2px solid var(--tea-light-sage);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--tea-sage);
  box-shadow: 0 0 0 0.2rem rgba(156, 175, 136, 0.25);
}

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

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

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  overflow: hidden;
  height: 100%;
}

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

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

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

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

/* Gallery */
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
.footer {
  background-color: var(--tea-dark-brown);
  color: var(--tea-light-cream);
  padding: 3rem 0 1rem;
}

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

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

.footer a:hover {
  color: var(--tea-gold);
}

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

.bg-tea-light { background-color: var(--tea-light-cream); }
.bg-tea-sage { background-color: var(--tea-sage); }

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

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


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


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