/* Tea Tasting Room - Main Styles */

/* Color Variables */
:root {
  --primary-sage: #8FB386;
  --primary-warm-tea: #B5A888;
  --primary-soft-cream: #F5F2E9;
  --primary-deep-forest: #5A6B57;
  --primary-golden-amber: #D4AC5A;
  
  /* Light/Dark Shades */
  --light-sage: #B8D4B3;
  --dark-sage: #6B9462;
  --light-cream: #FCFAF7;
  --dark-cream: #EDE8DB;
  --light-amber: #E8C280;
  --dark-amber: #B8953D;
  
  /* Text Colors */
  --text-dark: #2D3A2B;
  --text-light: #F5F2E9;
  --text-muted: #6B7869;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-sage), var(--primary-warm-tea));
  --gradient-secondary: linear-gradient(135deg, var(--primary-golden-amber), var(--primary-deep-forest));
  --gradient-accent: linear-gradient(45deg, var(--primary-soft-cream), var(--light-cream));
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--primary-soft-cream);
  font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 1rem;
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header & Navigation */
.navbar {
  background: var(--gradient-primary);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: var(--primary-deep-forest);
  padding: 0.5rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  background-color: rgba(255,255,255,0.1);
  border-radius: 0.25rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  padding: 2rem 0;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../HAX_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: -1;
}

.hero-content {
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Section Spacing */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--primary-deep-forest);
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
/* .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
} */

.service-card {
  background: var(--light-cream);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(139, 179, 134, 0.2);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: var(--primary-deep-forest);
  margin-bottom: 1rem;
}

.service-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-golden-amber);
  margin-top: 1rem;
}

/* Features Section */
/* .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
} */

.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

.feature-item h4 {
  color: var(--primary-deep-forest);
  margin-bottom: 1rem;
}

/* Team Section */
/* .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
} */

.team-member {
  text-align: center;
  background: var(--light-cream);
  padding: 2rem;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid var(--primary-sage);
}

.team-member h4 {
  color: var(--primary-deep-forest);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--text-muted);
  font-style: italic;
}

/* Reviews/Testimonials */
.reviews-slider {
  margin-top: 3rem;
}

.review-card {
  background: var(--light-cream);
  padding: 2rem;
  border-radius: 1rem;
  margin: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.review-card blockquote {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.review-author {
  color: var(--primary-deep-forest);
  font-weight: 600;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 3rem;
}

.faq-item {
  background: var(--light-cream);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(139, 179, 134, 0.2);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-deep-forest);
  border-bottom: 1px solid rgba(139, 179, 134, 0.2);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--text-muted);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery */
/* .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
} */

.gallery-item {
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  margin-top: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid rgba(139, 179, 134, 0.3);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-sage);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--primary-deep-forest);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer p, .footer a {
  color: rgba(245, 242, 233, 0.8);
  text-decoration: none;
}

.footer a:hover {
  color: var(--text-light);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 242, 233, 0.2);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
    /* .services-grid,
  .features-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  } */
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Price Plans */
/* .price-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
} */

.price-plan {
  background: var(--light-cream);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.price-plan:hover {
  border-color: var(--primary-sage);
  transform: translateY(-5px);
}

.price-plan .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-golden-amber);
  margin: 1rem 0;
}

.price-plan ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.price-plan li {
  padding: 0.5rem 0;
  color: var(--text-muted);
}

.price-plan li:before {
  content: '✓';
  color: var(--primary-sage);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-sage);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin: 2rem 0;
  background: var(--light-cream);
  padding: 1.5rem;
  border-radius: 0.5rem;
  width: 45%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 55%;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 15px;
  height: 15px;
  background: var(--primary-sage);
  border-radius: 50%;
  transform: translateY(-50%);
  border: 3px solid var(--primary-soft-cream);
}

.timeline-item:nth-child(odd)::before {
  right: -8px;
}

.timeline-item:nth-child(even)::before {
  left: -8px;
}

.timeline-item h5 {
  color: var(--primary-deep-forest);
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: var(--text-muted);
  margin: 0;
}

/* Case Studies */
.case-study {
  background: var(--light-cream);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.case-study:hover {
  transform: translateY(-5px);
}

.case-study h4 {
  color: var(--primary-deep-forest);
  margin-bottom: 1rem;
}

.case-study p {
  color: var(--text-muted);
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 1.5rem;
  background: var(--light-cream);
  border-radius: 0.5rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-3px);
}

.process-step h5 {
  color: var(--primary-deep-forest);
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Career Items */
.career-item {
  background: var(--light-cream);
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.career-item:hover {
  transform: translateY(-3px);
}

.career-item h4 {
  color: var(--primary-deep-forest);
  margin-bottom: 0.5rem;
}

.career-item p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* Info Items */
.info-item {
  background: var(--light-cream);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateY(-3px);
}

.info-item h5 {
  color: var(--primary-deep-forest);
  margin-bottom: 1rem;
}

.info-item p {
  color: var(--text-muted);
  margin: 0;
}

/* Blog Posts */
.blog-post {
  background: var(--light-cream);
  padding: 2rem;
  border-radius: 1rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
}

.blog-post h4 {
  color: var(--primary-deep-forest);
  margin-bottom: 1rem;
}

.blog-post p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.blog-post a {
  color: var(--primary-sage);
  text-decoration: none;
  font-weight: 600;
}

.blog-post a:hover {
  color: var(--primary-deep-forest);
}

/* Progress Bar */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
}

/* Mobile Timeline */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    width: calc(100% - 60px);
    left: 40px !important;
  }
  
  .timeline-item::before {
    left: -28px !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);
}

.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;
    }
}
