/* Compostable Mailer Manufacturing Template - Main CSS */

/* Color Palette - Pastel High-Contrast Colors */
:root {
  /* Primary Colors */
  --primary-green: #4a8f5e;
  --secondary-sage: #8db596;
  --accent-mint: #a8d5ba;
  --neutral-cream: #f5f3f0;
  --highlight-earth: #7d5a4f;
  
  /* Light/Dark Variations */
  --primary-green-light: #6ba77a;
  --primary-green-dark: #3d7450;
  --secondary-sage-light: #a5c7ac;
  --secondary-sage-dark: #7aa085;
  --accent-mint-light: #bde0cb;
  --accent-mint-dark: #97caa9;
  --neutral-cream-light: #faf9f7;
  --neutral-cream-dark: #ebe8e3;
  --highlight-earth-light: #94685b;
  --highlight-earth-dark: #664b40;
  
  /* Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-h6: 1.25rem;
  --font-size-h5: 1.375rem;
  --font-size-h4: 1.5rem;
  --font-size-h3: 1.75rem;
  --font-size-h2: 2rem;
  --font-size-h1: 2.25rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-padding: 2rem;
}

/* Base Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--highlight-earth-dark);
  background-color: var(--neutral-cream);
}

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

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

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

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

/* Section Styling */
.section {
  padding: var(--section-padding);
}

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

.section-subtitle {
  color: var(--secondary-sage-dark);
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

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

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

.hero-image {
  z-index: 1;
}

/* Decorative Shapes */
.hero-section::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: var(--accent-mint);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: var(--secondary-sage);
  border-radius: 50%;
  opacity: 0.2;
  z-index: 0;
}

/* Cards */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

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

.card-header {
  background: var(--accent-mint-light);
  border-bottom: 2px solid var(--secondary-sage);
  border-radius: 12px 12px 0 0;
  padding: 1.5rem;
}

.card-body {
  padding: 2rem;
}

/* Service Cards */
.service-card {
  height: 100%;
  border-left: 4px solid var(--primary-green);
}

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

/* Feature Cards */
.feature-card {
  text-align: center;
  padding: 2rem;
}

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

/* Price Plan Cards */
.price-card {
  position: relative;
  background: white;
  border: 2px solid var(--accent-mint);
}

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

.price-header {
  background: var(--accent-mint-light);
  text-align: center;
  padding: 2rem 1rem;
}

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

/* Team Cards */
.team-card {
  text-align: center;
  border-radius: 15px;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Review Cards */
.review-card {
  background: var(--neutral-cream-light);
  border-left: 4px solid var(--secondary-sage);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
}

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

/* FAQ Cards */
.faq-card {
  background: white;
  border: 1px solid var(--accent-mint);
  margin-bottom: 1rem;
}

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

.faq-answer {
  color: var(--highlight-earth);
}

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

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

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

/* Buttons */
.btn-primary {
  background: var(--primary-green);
  border: 2px solid var(--primary-green);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-outline-primary {
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  background: transparent;
}

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

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

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

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

.footer a:hover {
  color: var(--accent-mint-light);
}

/* Utilities */
.text-primary-custom {
  color: var(--primary-green);
}

.bg-primary-custom {
  background-color: var(--primary-green);
}

.bg-secondary-custom {
  background-color: var(--secondary-sage);
}

.bg-accent-custom {
  background-color: var(--accent-mint);
}

/* Animation Respect for Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
} 



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



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

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

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

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

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

.x-link i {
    display: none;
}

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