/* Plant-Care Subscription Site - Main CSS */
/* Bootstrap 5 compatible - NO overrides */

:root {
  /* Primary Color Palette - Pastel Plant Theme */
  --primary-green: #57784a;
  --primary-sage: #95ba79;
  --primary-mint: #98d399;
  --primary-earth: #816a59;
  --primary-cream: #ede6d5;
  
  /* Light/Dark Shades */
  --light-green: #f7fff6;
  --dark-green: #5c704b;
  --light-sage: #f0f5ed;
  --dark-sage: #658d58;
  --light-mint: #f2f9f2;
  --dark-mint: #77b074;
  --light-earth: #f5f3f0;
  --dark-earth: #6f5f4e;
  --light-cream: #faf8f5;
  --dark-cream: #d2cfcc;
  
  /* Conservative Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-h6: 1rem;
  --font-size-h5: 1.125rem;
  --font-size-h4: 1.25rem;
  --font-size-h3: 1.375rem;
  --font-size-h2: 1.5rem;
  --font-size-h1: 1.75rem;
  
  /* Conservative navbar-brand */
  --navbar-brand-size: 1.125rem;
}

/* Conservative Typography - NO Bootstrap overrides */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #3d3939;
  background-color: var(--light-cream);
}

/* Navbar Brand - Conservative Size */
.navbar-brand {
  font-size: var(--navbar-brand-size);
  font-weight: 600;
  color: var(--primary-green);
}

/* Headings - Conservative Sizes */
h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

/* Paragraph - Conservative Size */
p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

/* Plant-themed color classes */
.text-primary-green { color: var(--primary-green); }
.text-primary-sage { color: var(--primary-sage); }
.text-primary-mint { color: var(--primary-mint); }
.text-primary-earth { color: var(--primary-earth); }
.bg-primary-green { background-color: var(--primary-green); }
.bg-primary-sage { background-color: var(--primary-sage); }
.bg-primary-mint { background-color: var(--primary-mint); }
.bg-primary-earth { background-color: var(--primary-earth); }
.bg-primary-cream { background-color: var(--primary-cream); }

.bg-light-green { background-color: var(--light-green); }
.bg-light-sage { background-color: var(--light-sage); }
.bg-light-mint { background-color: var(--light-mint); }
.bg-light-earth { background-color: var(--light-earth); }

/* Hero Section - Fullscreen Height */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--light-green), var(--light-mint));
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: var(--primary-mint);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: var(--primary-sage);
  border-radius: 50%;
  opacity: 0.2;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 225px;
}

/* Services Section */
.services-section {
  background-color: var(--light-sage);
  padding: 4rem 0;
}

.service-card {
  background: white;
  border-radius: 13px;
  padding: 2rem;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-price {
  font-size: 1.59rem;
  font-weight: 700;
  color: var(--primary-green);
}

/* Features Section */
.features-section {
  background-color: var(--light-mint);
  padding: 4rem 0;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.59rem;
}

/* Team Section */
.team-section {
  background-color: var(--light-earth);
  padding: 4rem 0;
}

.team-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.1);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 7px solid var(--primary-green);
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-cream);
  padding: 4rem 0;
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 9px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.review-stars {
  color: #ffcb00;
  font-size: 1.24rem;
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-sage);
  padding: 4rem 0;
}

.faq-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.74rem;
}

.faq-answer {
  color: #585858;
  margin-bottom: 0;
}

/* Contact Section */
.contact-section {
  background-color: var(--light-mint);
  padding: 4rem 0;
}

.contact-info {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 7px 6px rgba(0, 0, 0, 0.1);
}

.contact-form {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background-color: var(--dark-green);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-mint);
  margin-bottom: 1rem;
}

.footer a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-mint);
}

/* Buttons */
.btn-primary-green {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: white;
}

.btn-primary-green:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
}

.btn-outline-green {
  border-color: var(--primary-green);
  color: var(--primary-green);
}

.btn-outline-green:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: white;
}

/* Breadcrumbs */
.breadcrumb-section {
  background-color: var(--light-cream);
  padding: 2rem 0;
}

.breadcrumb-img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}

/* Gallery */
.gallery-section {
  background-color: var(--light-mint);
  padding: 4rem 0;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} 


/* 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);
}

.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;
    }
}
