/* ===== TEA TASTING ROOM TEMPLATE - MAIN STYLES ===== */

/* Color Palette - 5 primary colors with light/dark shades */
:root {
  --primary-green: #2D5A27;
  --primary-green-light: #7FB069;
  --primary-green-dark: #1B3B17;
  
  --primary-cream: #F5F1E8;
  --primary-cream-light: #FDFBF7;
  --primary-cream-dark: #E8E0D3;
  
  --primary-gold: #D4AF37;
  --primary-gold-light: #F4E87C;
  --primary-gold-dark: #B8941F;
  
  --primary-brown: #8B4513;
  --primary-brown-light: #CD853F;
  --primary-brown-dark: #5D2F0A;
  
  --primary-sage: #9CAF88;
  --primary-sage-light: #C5D4B5;
  --primary-sage-dark: #6B7A5B;
  
  --text-primary: #2D2D2D;
  --text-secondary: #666666;
  --text-light: #FFFFFF;
  --bg-white: #FFFFFF;
  --bg-gradient: linear-gradient(135deg, var(--primary-cream) 0%, var(--primary-sage-light) 100%);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--primary-cream);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--primary-brown-dark);
}

h1 { font-size: 2.2rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.3rem; }
h6 { font-size: 1.1rem; }

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-sage) 100%);
  padding: 0.5rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

/* Reset Bootstrap navbar default styles */
.header .navbar {
  padding: 0.5rem 0;
}

.header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header .navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-light) !important;
  text-decoration: none;
}

.header .navbar-nav {
  align-items: center;
}

.header .navbar-nav .nav-link {
  color: var(--text-light) !important;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
}

.header .navbar-nav .nav-link:hover,
.header .navbar-nav .nav-link:focus {
  color: var(--primary-gold-light) !important;
}

.header .navbar-toggler {
  border: 1px solid var(--text-light);
  padding: 0.25rem 0.5rem;
}

.header .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
  border-color: var(--text-light);
}

.header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header .dropdown-menu {
  background-color: var(--primary-cream);
  border: 1px solid var(--primary-sage-light);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-top: 0.5rem;
}

.header .dropdown-item {
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease;
}

.header .dropdown-item:hover,
.header .dropdown-item:focus {
  background-color: var(--primary-sage-light);
  color: var(--primary-brown-dark);
}

.header .navbar-nav .dropdown-toggle::after {
  color: var(--text-light);
}

/* Mobile responsiveness */
@media (max-width: 991.98px) {
  .header .navbar-collapse {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-sage-dark) 100%);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .header .navbar-collapse:not(.show) {
    display: none !important;
  }
  
  .header .navbar-collapse.show {
    display: block !important;
  }
  
  .header .navbar-nav {
    text-align: center;
    flex-direction: column !important;
  }
  
  .header .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .header .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
  
  .header .dropdown-menu {
    background-color: var(--primary-sage-light);
    border: none;
    box-shadow: none;
    margin-top: 0;
  }
  
  .header .dropdown-item {
    color: var(--text-primary);
    padding: 0.5rem 1.5rem;
  }
  
  .header .dropdown-item:hover,
  .header .dropdown-item:focus {
    background-color: var(--primary-cream);
  }
  
  .header .navbar-toggler {
    display: block !important;
    border: 1px solid var(--text-light) !important;
  }
  
  .hero {
    padding-top: 120px; /* Increase padding on mobile */
  }
}

/* Tablet responsiveness */
@media (min-width: 768px) and (max-width: 991.98px) {
  .header .navbar-nav .nav-link {
    padding: 0.5rem 0.75rem;
    margin: 0 0.125rem;
  }
}

/* Desktop specific styles */
@media (min-width: 992px) {
  .header .navbar-nav {
    margin-left: auto;
    flex-direction: row !important;
  }
  
  .header .navbar-nav .nav-link {
    white-space: nowrap;
  }
  
  .header .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  
  .header .navbar-toggler {
    display: none !important;
  }
}

/* Force Bootstrap styles override */
.header .navbar-nav {
  display: flex !important;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

@media (min-width: 992px) {
  .header .navbar-nav {
    flex-direction: row !important;
  }
  
  .header .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

.header .navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.header .navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
}

@media (min-width: 992px) {
  .header .navbar-expand-lg .navbar-nav {
    flex-direction: row !important;
  }
  
  .header .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  
  .header .navbar-expand-lg .navbar-toggler {
    display: none !important;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--primary-sage-light) 50%, var(--primary-green-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px; /* Account for fixed header */
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../WOC_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: var(--primary-brown-dark);
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Section Styling */
.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.2rem;
  color: var(--primary-brown-dark);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  background: var(--bg-gradient);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.feature-card h4 {
  color: var(--primary-brown-dark);
  margin-bottom: 0.5rem;
}

/* Services Section */
.services {
  background: var(--bg-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--primary-cream);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-content {
  padding: 1.5rem;
}

.service-card h4 {
  color: var(--primary-brown-dark);
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-gold-dark);
}

/* Team Section */
.team {
  background: var(--bg-gradient);
}

.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(--bg-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-member h4 {
  color: var(--primary-brown-dark);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--primary-green);
  font-style: italic;
}

/* Reviews Section */
.reviews {
  background: var(--bg-white);
}

.reviews-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--primary-cream);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-gold);
  font-family: serif;
}

.review-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.review-author {
  font-weight: bold;
  color: var(--primary-brown-dark);
}

/* FAQ Section */
.faq {
  background: var(--bg-gradient);
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: var(--bg-white);
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
  padding: 1.5rem;
  background: var(--primary-green);
  color: var(--text-light);
  cursor: pointer;
  font-weight: 500;
  margin: 0;
}

.faq-answer {
  padding: 1.5rem;
  background: var(--bg-white);
  color: var(--text-secondary);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Gallery Section */
.gallery {
  background: var(--bg-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px 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);
}

/* Contact Section */
.contact {
  background: var(--bg-gradient);
}

.contact-form {
  max-width: 600px;
  margin: 3rem auto 0;
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-brown-dark);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--primary-sage-light);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-sage) 100%);
  color: var(--text-light);
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

.contact-info {
  text-align: center;
  margin-top: 2rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

/* Footer */
.footer {
  background: var(--primary-brown-dark);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--primary-cream);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: var(--primary-gold-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--primary-brown);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  background: var(--primary-cream);
  margin-top: 80px;
}

.breadcrumb img {
  height: 20px;
  width: auto;
}

/* Blog Section */
.blog {
  background: var(--bg-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--primary-cream);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card h4 {
  color: var(--primary-brown-dark);
  margin-bottom: 0.5rem;
}

.blog-card p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  color: var(--primary-green-dark);
}

/* Additional Page Sections */
.page-section {
  padding: 4rem 0;
  margin-bottom: 2rem;
}

.page-section:nth-child(even) {
  background: var(--bg-gradient);
}

.page-section:nth-child(odd) {
  background: var(--bg-white);
}

.section-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.section-item {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.section-item h4 {
  color: var(--primary-brown-dark);
  margin-bottom: 0.5rem;
}

.section-item p {
  color: var(--text-secondary);
}

/* Space Page */
#space {
  min-height: 60vh;
  background: var(--bg-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 80px 0 0 0;
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
