/* Virtual Craft-Tea Tasting Kit Curator - Main Styles */

/* Color Palette - Pastel High-Contrast Colors */
:root {
  --primary-tea-green: #8bc088;
  --primary-cream: #fffef8;
  --primary-gold: #c2801c;
  --primary-brown: #904b09;
  --primary-sage: #a0aa8c;
  
  /* Light/Dark Shades */
  --light-tea-green: #b7d0b2;
  --dark-tea-green: #688165;
  --light-cream: #FFFEF7;
  --dark-cream: #ccd099;
  --light-gold: #e0bb3d;
  --dark-gold: #c0af04;
  --light-brown: #d19943;
  --dark-brown: #755226;
  --light-sage: #b0c7a1;
  --dark-sage: #7d956f;
}

/* Conservative Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-brown);
}

/* Header & Navigation */
.navbar-brand {
  font-size: 1.1rem !important;
  font-weight: 600;
  color: var(--primary-brown);
}

.navbar {
  background-color: var(--light-cream);
  border-bottom: 2px solid var(--primary-tea-green);
}

.nav-link {
  color: var(--dark-brown);
  font-weight: 500;
}

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

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

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: var(--primary-sage);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-decorative:nth-child(1) {
  top: 10%;
  right: 10%;
}

.hero-decorative:nth-child(2) {
  bottom: 20%;
  left: 5%;
  width: 150px;
  height: 150px;
}

/* Conservative Heading Sizes */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-brown);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-brown);
  margin-bottom: 0.5rem;
}

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

/* Conservative Paragraph Sizes */
p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
}

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

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

/* Service Cards */
.service-card {
  background: white;
  border: 2px solid var(--primary-tea-green);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

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

/* Feature Cards */
.feature-card {
  background: var(--light-sage);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--primary-sage);
}

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

.team-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background-color: var(--light-sage);
}

/* Review Cards */
.review-card {
  background: white;
  border-left: 4px solid var(--primary-gold);
  padding: 1.5rem;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Price Plan Cards */
.price-card {
  background: white;
  border: 2px solid var(--primary-tea-green);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  position: relative;
}

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

/* Process Steps */
.process-step {
  background: var(--light-cream);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 3px solid var(--primary-tea-green);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-brown);
}

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

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

/* FAQ Cards */
.faq-card {
  background: white;
  border: 1px solid var(--light-sage);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

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

/* Contact Form */
.contact-form {
  background: var(--light-cream);
  border-radius: 10px;
  padding: 2rem;
  border: 2px solid var(--primary-tea-green);
}

.form-control {
  border: 1px solid var(--primary-sage);
  border-radius: 5px;
}

.form-control:focus {
  border-color: var(--primary-tea-green);
  box-shadow: 0 0 0 0.2rem rgba(134, 172, 133, 0.25);
}

.btn-primary {
  background-color: var(--primary-tea-green);
  border-color: var(--primary-tea-green);
  color: white;
  font-weight: 500;
}

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

/* Gallery */
.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  background-color: var(--light-sage);
}

/* Footer - High Contrast Colors Only */
.footer {
  background-color: var(--dark-brown);
  color: var(--light-cream);
  padding: 3rem 0 2rem;
}

.footer h5 {
  color: var(--primary-gold);
  font-weight: 600;
}

.footer a {
  color: var(--light-cream);
  text-decoration: none;
}

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

.footer .border-top {
  border-color: var(--light-brown) !important;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

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

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: var(--light-sage);
}

/* Utilities */
.text-tea-green { color: var(--primary-tea-green); }
.text-brown { color: var(--primary-brown); }
.text-gold { color: var(--primary-gold); }
.bg-light-cream { background-color: var(--light-cream); }
.bg-light-sage { background-color: var(--light-sage); }

/* Respect reduced motion preferences */
@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: 125px;
}


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

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

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

.instagram-link:hover {
    background: #d62976;
    border-color: #d62976;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

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

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
