/* Compostable Mailer Manufacturing Template - Main CSS */
/* Bootstrap 5 Compatible - No Overrides */

:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-green: #4ade80;
  --primary-blue: #60a5fa;
  --primary-orange: #fb923c;
  --primary-purple: #c084fc;
  --primary-teal: #2dd4bf;
  
  /* Light Shades */
  --light-green: #dcfce7;
  --light-blue: #dbeafe;
  --light-orange: #fed7aa;
  --light-purple: #e9d5ff;
  --light-teal: #ccfbf1;
  
  /* Dark Shades */
  --dark-green: #166534;
  --dark-blue: #1e40af;
  --dark-orange: #ea580c;
  --dark-purple: #7c3aed;
  --dark-teal: #0f766e;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --line-height-base: 1.6;
}

/* Global Typography - Conservative Sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: #333;
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-green);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h4, h5, h6 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

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

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

.hero-decoration-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
}

.hero-decoration-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  right: 15%;
}

/* Section Spacing */
section {
  padding: 5rem 0;
}

section:nth-child(even) {
  background-color: #f8fafc;
}

/* Service Cards */
.service-card {
  transition: transform 0.3s ease;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

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

.service-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-green);
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-photo {
  width: 100%;
  height: 250px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-blue);
}

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

.review-stars {
  color: #fbbf24;
  margin-bottom: 1rem;
}

/* FAQ Cards */
.faq-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 1rem;
}

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

.faq-answer {
  color: #6b7280;
  margin-bottom: 0;
}

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

.form-control {
  border-radius: 8px;
  border: 1px solid #d1d5db;
  padding: 0.75rem;
}

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

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

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

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

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

.footer a {
  color: #d1fae5;
  text-decoration: none;
}

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

/* Gallery */
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.gallery-placeholder {
  width: 100%;
  height: 200px;
  background: var(--light-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-teal);
}

/* Process Steps */
.process-step {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

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

/* Price Plan Cards */
.price-card {
  background: white;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  padding: 2rem;
  text-align: center;
  position: relative;
  height: 100%;
}

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

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

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

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
}

/* Utilities */
.text-primary-green { color: var(--primary-green); }
.text-primary-blue { color: var(--primary-blue); }
.text-primary-orange { color: var(--primary-orange); }
.text-primary-purple { color: var(--primary-purple); }
.text-primary-teal { color: var(--primary-teal); }

.bg-light-green { background-color: var(--light-green); }
.bg-light-blue { background-color: var(--light-blue); }
.bg-light-orange { background-color: var(--light-orange); }
.bg-light-purple { background-color: var(--light-purple); }
.bg-light-teal { background-color: var(--light-teal); }

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

/* Conservative Animation Support */
.sal-animate {
  transition: opacity 0.5s ease, transform 0.5s ease;
} 

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


/* 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;
    }
}
