/* Sustainable Office Supplies Wholesaler Template */
:root {
  /* Primary Color Palette - Pastel high-contrast colors */
  --primary-green: #2d5a3d;
  --primary-blue: #1e3a5f;
  --primary-orange: #d47c39;
  --primary-purple: #7b4397;
  --primary-gray: #4a4a4a;
  
  /* Light/Dark Shades */
  --light-green: #a8d5b7;
  --light-blue: #87ceeb;
  --light-orange: #ffd4a3;
  --light-purple: #c8a8d8;
  --light-gray: #f5f5f5;
  
  --dark-green: #1a3827;
  --dark-blue: #0f1d30;
  --dark-orange: #8b4513;
  --dark-purple: #4b0082;
  --dark-gray: #333333;
  
  /* Bootstrap Variables Override */
  --bs-body-font-family: 'Arial', sans-serif;
  --bs-body-line-height: 1.6;
}

/* General Styles */
body {
  font-family: var(--bs-body-font-family);
  line-height: var(--bs-body-line-height);
  color: var(--primary-gray);
}

/* Image Styles */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

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

/* Conservative font sizes */
.navbar-brand {
  font-size: 1.5rem;
}

h1 {
  font-size: 2.5rem;
}

p {
  font-size: 1rem;
}

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

.hero-decorative {
  position: absolute;
  background: var(--primary-orange);
  border-radius: 50%;
  opacity: 0.1;
}

.hero-blob-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
}

.hero-blob-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
}

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

/* Services Section */
.service-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-orange);
}

/* Team Section */
.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--light-green);
}

/* Footer */
.footer {
  background-color: var(--dark-green);
  color: white;
}

.footer h5 {
  color: var(--light-green);
}

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

.footer a:hover {
  color: white;
}

/* Contact Form */
.contact-form {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 2rem;
}

/* Gallery Section */
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq-card {
  border-left: 4px solid var(--primary-green);
  margin-bottom: 1rem;
}

/* Blog Section */
.blog-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

/* Price Plan Section */
.price-card {
  border: 2px solid var(--light-green);
  border-radius: 15px;
  text-align: center;
  padding: 2rem;
  height: 100%;
}

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

/* Process Section */
.process-step {
  text-align: center;
  position: relative;
}

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

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

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

/* Career Section */
.career-card {
  border: 1px solid var(--light-green);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: box-shadow 0.3s ease;
}

.career-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Core Info Section */
.core-info-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 10px;
  margin-bottom: 1rem;
}

/* Case Study Section */
.case-study-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  height: 100%;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

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

.btn-secondary {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
}

.btn-secondary:hover {
  background-color: var(--dark-orange);
  border-color: var(--dark-orange);
}

/* Accessibility */
@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: 175px;
}


/* Team Social Links - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

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

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

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

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

.x-link::after {
    content: 'X';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

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