/* Eco-Friendly Tote Bag Printing Template - Main CSS */
/* Bootstrap 5 Compatible - No Overrides */

/* Color Palette Variables - Eco-Friendly Theme */
:root {
  /* Primary Eco Colors */
  --eco-forest: #2d5930;
  --eco-sage: #87a96b;
  --eco-mint: #a8d5ba;
  --eco-earth: #8b4513;
  --eco-cream: #f7f3e9;
  
  /* Light/Dark Shades */
  --eco-forest-light: #4a7c4f;
  --eco-forest-dark: #1a3a1e;
  --eco-sage-light: #a4c088;
  --eco-sage-dark: #6a8554;
  --eco-mint-light: #c4e4d1;
  --eco-mint-dark: #8bc2a3;
  --eco-earth-light: #a8573a;
  --eco-earth-dark: #6e3509;
  --eco-cream-light: #fdfbf7;
  --eco-cream-dark: #e8e0d2;
  
  /* Semantic Colors */
  --primary-color: var(--eco-forest);
  --secondary-color: var(--eco-sage);
  --accent-color: var(--eco-mint);
  --text-color: #333333;
  --light-bg: var(--eco-cream);
  --dark-bg: #0f1a11;
}

/* Global Typography - Conservative Sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #ffffff;
    overflow-x: hidden;
}

/* Navbar Conservative Sizing */
.navbar-brand {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color) !important;
}

/* Conservative Header Sizes */
h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.875rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 0.625rem;
}

h5 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

/* Conservative Paragraph Sizes */
p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.lead {
  font-size: 1.125rem;
  color: var(--secondary-color);
}

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

.hero-decorative {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-decorative-1 {
  width: 200px;
  height: 200px;
  background-color: var(--eco-sage);
  top: 10%;
  right: 10%;
}

.hero-decorative-2 {
  width: 150px;
  height: 150px;
  background-color: var(--eco-mint);
  bottom: 15%;
  left: 5%;
}

.hero-decorative-3 {
  width: 100px;
  height: 100px;
  background-color: var(--eco-earth);
  top: 60%;
  right: 30%;
}

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

.section-bg-light {
  background-color: var(--light-bg);
}

.section-bg-white {
  background-color: #ffffff;
}

/* Button Styling */
.btn-eco-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

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

.btn-eco-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

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

/* Service Cards */
.service-card {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--eco-mint-light);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

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

/* Feature Cards */
.feature-card {
  background: var(--light-bg);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--eco-mint);
  height: 100%;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--eco-mint);
}

/* Price Plan Cards */
.price-card {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--eco-mint-light);
  height: 100%;
  transition: all 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-color);
  transform: scale(1.02);
}

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

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

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

.price-features li:last-child {
  border-bottom: none;
}

/* Review Cards */
.review-card {
  background: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--accent-color);
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.review-author {
  font-weight: 600;
  color: var(--primary-color);
}

/* Process Cards */
.process-card {
  background: var(--light-bg);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  border: 1px solid var(--eco-mint);
}

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

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--eco-mint-light);
  border-radius: 0.375rem;
  padding: 0.75rem;
}

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

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--eco-mint-light);
}

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

.faq-answer {
  color: var(--text-color);
  margin-bottom: 0;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 0.5rem;
  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;
}

/* Footer */
.footer {
  background: var(--dark-bg);
  color: #ffffff;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer p {
  color: #e8e8e8;
}

.footer a {
  color: #90ee90;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #444444;
  padding-top: 1rem;
  margin-top: 2rem;
}

.footer-bottom p,
.footer-bottom small {
  color: #cccccc;
}

/* Breadcrumb */
.breadcrumb-nav {
  background: var(--light-bg);
  padding: 1rem 0;
}

.breadcrumb-nav img {
  height: 24px;
  width: auto;
}

/* Reduced Motion Support */
@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;
  }
}

/* Utility Classes */
.text-eco-primary {
  color: var(--primary-color);
}

.text-eco-secondary {
  color: var(--secondary-color);
}

.bg-eco-light {
  background-color: var(--light-bg);
}

.border-eco {
  border-color: var(--eco-mint-light);
}

/* Conservative spacing */
.mb-conservative {
  margin-bottom: 1.5rem;
}

.pb-conservative {
  padding-bottom: 1.5rem;
}


.hero-section h1 {
    padding-top: 175px;
}


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

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

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

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

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
