/* Eco-Friendly Packaging Materials Wholesale Template */
/* Bootstrap 5 + Custom Styles - NO OVERRIDES */

:root {
  /* Eco-friendly color palette - 5 primary colors + shades */
  --primary-green: #2d5a27;
  --primary-green-light: #4a7c59;
  --primary-green-dark: #1a3a16;
  
  --accent-brown: #8b4513;
  --accent-brown-light: #a0522d;
  --accent-brown-dark: #654321;
  
  --natural-beige: #f5f5dc;
  --natural-beige-light: #fafafa;
  --natural-beige-dark: #e6e6cd;
  
  --earth-orange: #cd853f;
  --earth-orange-light: #daa520;
  --earth-orange-dark: #b8860b;
  
  --sage-green: #9caf88;
  --sage-green-light: #b8d4a0;
  --sage-green-dark: #7d8c6b;
  
  /* Typography - Conservative sizes */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --h1-size: 2.5rem;
  --h2-size: 2rem;
  --h3-size: 1.5rem;
  --navbar-brand-size: 1.25rem;
}

/* Global Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--primary-green-dark);
  background-color: var(--natural-beige-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary-green);
  font-weight: 600;
}

h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }

/* Conservative navbar brand size */
.navbar-brand {
  font-size: var(--navbar-brand-size) !important;
  font-weight: 700;
  color: var(--primary-green);
}

/* Header & Navigation */
.navbar {
  background-color: var(--natural-beige);
  border-bottom: 1px solid var(--sage-green-light);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--primary-green);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-brown);
}

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

.hero-content {
  z-index: 2;
    padding-top: 175px;
}

.hero-title {
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: var(--accent-brown);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.hero-desc {
  color: var(--primary-green-dark);
  font-size: var(--font-size-large);
  margin-bottom: 2rem;
}

/* Decorative shapes for hero */
.hero-decoration {
  position: absolute;
  opacity: 0.1;
  z-index: 1;
}

.hero-decoration.shape-1 {
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: var(--earth-orange);
  border-radius: 50%;
}

.hero-decoration.shape-2 {
  bottom: 20%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: var(--sage-green);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

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

.section-title {
  color: var(--primary-green);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  color: var(--accent-brown);
  text-align: center;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--primary-green-dark);
  text-align: center;
  margin-bottom: 3rem;
  font-size: var(--font-size-large);
}

/* Cards & Components */
.eco-card {
  background: white;
  border: 1px solid var(--sage-green-light);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eco-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(45, 90, 39, 0.15);
}

.eco-card h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.eco-card p {
  color: var(--primary-green-dark);
  margin-bottom: 1rem;
}

/* Services Section */
.service-item {
  text-align: center;
  margin-bottom: 2rem;
}

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

.service-features {
  color: var(--sage-green-dark);
  font-size: var(--font-size-small);
}

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--sage-green-light);
}

/* Reviews/Testimonials */
.review-card {
  background: var(--natural-beige);
  border-left: 4px solid var(--earth-orange);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.review-author {
  color: var(--accent-brown);
  font-weight: 600;
  margin-top: 1rem;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(45, 90, 39, 0.1);
}

.form-control {
  border: 2px solid var(--sage-green-light);
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(45, 90, 39, 0.25);
}

.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;
}

.btn-primary:hover {
  background-color: var(--primary-green-dark);
  border-color: var(--primary-green-dark);
  transform: translateY(-2px);
}

/* Footer - High contrast colors only */
.footer {
  background-color: var(--primary-green-dark);
  color: var(--natural-beige-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--earth-orange-light);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--sage-green-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--earth-orange-light);
}

.footer-bottom {
  border-top: 1px solid var(--sage-green-dark);
  padding-top: 1rem;
  margin-top: 2rem;
}

/* Accessibility - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

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

.faq-answer {
  color: var(--primary-green-dark);
  margin: 0;
}

/* Gallery Section */
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Process/Timeline Steps */
.process-step {
  text-align: center;
  margin-bottom: 2rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--earth-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Contact Info */
.contact-info {
  background: var(--natural-beige);
  border-radius: 8px;
  padding: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-info-item i {
  color: var(--earth-orange);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

/* Blog Section */
.blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(45, 90, 39, 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-body {
  padding: 1.5rem;
}

/* Price Plans */
.price-card {
  background: white;
  border: 2px solid var(--sage-green-light);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.price-card:hover {
  border-color: var(--earth-orange);
  transform: translateY(-5px);
}

.price-card.featured {
  border-color: var(--earth-orange);
  background: linear-gradient(135deg, var(--natural-beige) 0%, var(--sage-green-light) 100%);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--earth-orange);
  margin: 1rem 0;
}

/* Breadcrumbs - Image only */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--natural-beige);
}

.breadcrumb-image {
  height: 40px;
  width: auto;
}

/* Utilities */
.text-eco-primary { color: var(--primary-green); }
.text-eco-accent { color: var(--accent-brown); }
.text-eco-earth { color: var(--earth-orange); }
.bg-eco-light { background-color: var(--natural-beige-light); }
.bg-eco-sage { background-color: var(--sage-green-light); }

/* Animation classes for Sal.js */
.fade-in { opacity: 0; }
.slide-up { transform: translateY(50px); opacity: 0; }
.slide-left { transform: translateX(-50px); opacity: 0; }
.slide-right { transform: translateX(50px); opacity: 0; } 


/* 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;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

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

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
