/* Plant-Based Pet Treat Manufacturing - Main CSS */

/* Color Palette - 5 primary colors with light/dark shades */
:root {
  /* Primary Colors */
  --primary-green: #75c37f;
  --primary-orange: #dd9959;
  --primary-brown: #82714b;
  --primary-cream: #fbfbfb;
  --primary-sage: #8ead8e;
  
  /* Light Shades */
  --light-green: #9fcfa2;
  --light-orange: #eaae6e;
  --light-brown: #9b8169;
  --light-cream: #fbf9f3;
  --light-sage: #acd5a7;
  
  /* Dark Shades */
  --dark-green: #6ca180;
  --dark-orange: #cd812d;
  --dark-brown: #7f5d41;
  --dark-cream: #e0c8b4;
  --dark-sage: #74a675;
  
  /* Neutral Colors */
  --text-primary: #191e20;
  --text-secondary: #64767a;
  --text-light: #dedede;
  --bg-light: #fdfdfd;
  --bg-section: #f8f9fa;
}

/* Bootstrap 5 Integration */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');

/* FontAwesome Integration */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-light);
  line-height: 1.6;
}

/* Conservative Font Sizes */
h1 { font-size: 2.24rem; font-weight: 700; }
h2 { font-size: 1.88rem; font-weight: 600; }
h3 { font-size: 1.62rem; font-weight: 600; }
h4 { font-size: 1.42rem; font-weight: 500; }
h5 { font-size: 1.24rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }
p { font-size: 1rem; }

/* Custom Navbar Styles */
.custom-navbar-brand {
  font-size: 1.52rem;
  font-weight: 700;
  color: var(--primary-green);
}

.custom-nav-link {
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.custom-nav-link:hover {
  color: var(--primary-green);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--light-cream) 100%);
  display: flex;
  align-items: center;
  position: relative;
}

.hero-decorative {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-blob-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-green);
  top: 10%;
  right: 10%;
}

.hero-blob-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-orange);
  bottom: 15%;
  left: 5%;
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--bg-section);
}

.section-title {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Services Section */
.service-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--light-sage);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 9px 15px rgba(0, 0, 0, 0.15);
}

.service-price {
  font-size: 1.88rem;
  color: var(--primary-orange);
  font-weight: 700;
}

/* Features Section */
.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Team Section */
.team-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-3px);
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 0.61rem;
}

.team-role {
  color: var(--text-secondary);
  font-size: 1.00rem;
}

/* Reviews Section */
.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.1);
  border-left: 9px solid var(--primary-sage);
}

.review-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.review-author {
  color: var(--primary-green);
  font-weight: 600;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
}

.custom-form-control {
  border: 2px solid var(--light-sage);
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
  width: 100%;
}

.custom-form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(143, 189, 158, 0.25);
  outline: none;
}

.custom-btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: white;
  border: 1px solid var(--primary-green);
  cursor: pointer;
}

.custom-btn-primary:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
  transform: translateY(-2px);
}

.custom-btn-outline-primary {
  color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: transparent;
  border: 1px solid var(--primary-green);
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}

.custom-btn-outline-primary:hover {
  background-color: var(--primary-green);
  color: white;
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-orange);
}

.faq-question {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 0.73rem;
}

.faq-answer {
  color: var(--text-secondary);
}

/* Gallery */
.gallery-item {
  border-radius: 12px;
  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-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
.footer {
  background-color: var(--dark-brown);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-cream);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-cream);
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utility Classes */
.text-primary-green { color: var(--primary-green); }
.text-primary-orange { color: var(--primary-orange); }
.bg-primary-green { background-color: var(--primary-green); }
.bg-primary-orange { background-color: var(--primary-orange); }
.bg-section { background-color: var(--bg-section); } 

.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;
}

.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;
    }
}
