/* Virtual Craft-Tea Tasting Kit Curator - Main Styles */

/* CSS Variables - Pastel High-Contrast Color Palette */
:root {
  --primary-color: #2c4d1f;
  --secondary-color: #8caa8f;
  --accent-color: #fbfefb;
  --text-color: #302d2d;
  --bg-color: #FAFAFA;
  
  /* Light/Dark Shades */
  --primary-light: #4d936c;
  --primary-dark: #1b4823;
  --secondary-light: #9cc99b;
  --secondary-dark: #528553;
  --accent-light: #F4FAF4;
  --accent-dark: #e5fce1;
  
  /* Conservative Typography */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-xxl: 1.5rem;
  
  /* Conservative Spacing */
  --section-padding: 4rem 0;
  --card-padding: 1.5rem;
  --border-radius: 0.5rem;
}

/* DISABLE ALL ANIMATIONS GLOBALLY */
*, *::before, *::after {
  animation: none !important;
  transition: none !important;
  transform: none !important;
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
}

/* Conservative Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-color);
  font-weight: 600;
}

h1 { font-size: var(--font-size-xxl); }
h2 { font-size: var(--font-size-xl); }
h3 { font-size: var(--font-size-lg); }
h4, h5, h6 { font-size: var(--font-size-base); }

.navbar-brand {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--primary-color);
}

/* Section Spacing */
section {
  padding: var(--section-padding);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-light) 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(130, 182, 138, 0.10) 0%, transparent 70%);
}

/* Card Styles */
.card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.1);
}

/* Service Cards */
.service-card {
  background: white;
  padding: var(--card-padding);
  height: 100%;
}

.service-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-color);
}

/* Price Plan Cards */
.price-card {
  background: white;
  padding: var(--card-padding);
  height: 100%;
  text-align: center;
}

.price-card.featured {
  border: 2px solid var(--primary-color);
}

.price-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Team Cards */
.team-card {
  background: white;
  padding: var(--card-padding);
  text-align: center;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--secondary-color);
}

/* Review Cards */
.review-card {
  background: white;
  padding: var(--card-padding);
  height: 100%;
}

.review-stars {
  color: #f3b900;
  margin-bottom: 1rem;
}

/* FAQ Cards */
.faq-card {
  background: white;
  padding: var(--card-padding);
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.82rem;
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 7px 6px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 1px solid var(--secondary-color);
  border-radius: var(--border-radius);
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(48, 95, 38, 0.25);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: var(--border-radius);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: var(--border-radius);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  color: white;
  padding: 3rem 0 1rem;
}

footer a {
  color: var(--secondary-light);
  text-decoration: none;
}

footer a:hover {
  color: white;
}

/* Utility Classes */
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-accent { background-color: var(--accent-color); }

/* Responsive Adjustments */
@media (max-width: 768px) {
  :root {
    --section-padding: 3rem 0;
  }
  
  #hero {
    min-height: 80vh;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Focus Styles for Accessibility */
.btn:focus,
.form-control:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Breadcrumb */
.breadcrumb-item img {
  height: 20px;
  width: auto;
}

/* Progress Bar */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 9999;
  background-color: transparent;
}

/* Space Page */
#space {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-light) 100%);
}

/* Enhanced Error States */
.form-control.is-invalid {
  border-color: #f53840;
  box-shadow: 0 0 0 0.2rem rgba(239, 40, 62, 0.25);
}

.error-message {
  color: #c73636;
  font-size: 0.93rem;
  margin-top: 0.61rem;
  display: block;
}

/* Loading States */
.btn.loading {
  pointer-events: none;
  opacity: 0.6;
}

.hero h1 {
    padding-top: 100px;
}

/* 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;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
