/* ==========================================
   ECO-FRIENDLY TOTE BAG PRINTING TEMPLATE
   Main CSS - Bootstrap 5 Compatible
   ========================================== */

:root {
  /* Primary Color Palette - Eco-Friendly Theme */
  --primary-green: #2E8B57;
  --secondary-sage: #9CAF88;
  --accent-earth: #8B7355;
  --highlight-cream: #F5F5DC;
  --neutral-charcoal: #36454F;
  
  /* Light/Dark Shades */
  --light-green: #90EE90;
  --dark-green: #1F5F3F;
  --light-sage: #D3E4CD;
  --dark-sage: #7A8A6E;
  --light-earth: #C4B59A;
  --dark-earth: #6B5B48;
  --light-cream: #FFFEF7;
  --dark-cream: #E6E6D3;
  --light-charcoal: #708090;
  --dark-charcoal: #2F2F2F;
}

/* Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--neutral-charcoal);
  font-size: 16px;
    overflow-x: hidden;
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

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

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

/* Header */
.navbar {
  background-color: var(--highlight-cream);
  border-bottom: 2px solid var(--secondary-sage);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--neutral-charcoal);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green);
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--secondary-sage);
  border-radius: 50%;
  opacity: 0.1;
  transform: rotate(15deg);
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 250px;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--secondary-sage);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* About Section */
.about {
  background-color: var(--light-cream);
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.feature-icon {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background-color: white;
}

.service-card {
  background: var(--light-sage);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
  height: 100%;
}

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

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-top: 1rem;
}

/* Features Section */
.features {
  background-color: var(--light-cream);
}

/* Price Plan Section */
.priceplan {
  background-color: white;
}

.price-card {
  background: white;
  border: 2px solid var(--secondary-sage);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  height: 100%;
  transition: transform 0.3s ease;
}

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

.price-tag {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-sage);
}

/* Team Section */
.team {
  background-color: var(--light-sage);
}

.team-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
}

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

/* Reviews Section */
.reviews {
  background-color: white;
}

.review-card {
  background: var(--light-cream);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-green);
  height: 100%;
}

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

/* Case Study Section */
.casestudy {
  background-color: var(--light-sage);
}

.case-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Process Section */
.process {
  background-color: white;
}

.process-step {
  background: var(--light-cream);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
  height: 100%;
}

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

/* Timeline Section */
.timeline {
  background-color: var(--light-cream);
}

.timeline-item {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--secondary-sage);
  height: 100%;
}

/* Career Section */
.career {
  background-color: white;
}

.career-card {
  background: var(--light-sage);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

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

/* Core Info Section */
.coreinfo {
  background-color: var(--light-cream);
}

.info-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact {
  background-color: white;
  padding: 5rem 0;
}

.contact-form {
  background: var(--light-cream);
  border-radius: 15px;
  padding: 3rem;
}

.form-control {
  border: 2px solid var(--secondary-sage);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

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

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 8px;
}

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

.contact-info {
  background: var(--secondary-sage);
  color: white;
  border-radius: 15px;
  padding: 3rem;
}

/* Blog Section */
.blog {
  background-color: var(--light-sage);
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

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

.blog-content {
  padding: 2rem;
}

/* FAQ Section */
.faq {
  background-color: white;
}

.faq-card {
  background: var(--light-cream);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-green);
}

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

/* Gallery Section */
.gallery {
  background-color: var(--light-cream);
  padding: 5rem 0;
}

.gallery img {
  border-radius: 10px;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

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

/* Footer */
.footer {
  background-color: var(--neutral-charcoal);
  color: var(--light-cream);
  padding: 3rem 0 1rem;
}

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

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

.footer a:hover {
  color: var(--highlight-cream);
}

.footer-bottom {
  border-top: 1px solid var(--light-charcoal);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb img {
  max-height: 30px;
}

/* Utilities */
.text-primary { color: var(--primary-green); }
.text-secondary { color: var(--secondary-sage); }
.bg-primary { background-color: var(--primary-green); }
.bg-secondary { background-color: var(--secondary-sage); }

/* Image responsive */
.img-fluid {
  max-width: 100%;
  height: auto;
}



/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

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

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

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

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

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

.x-link {
    position: relative;
}

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

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

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
