/* ===== SUSTAINABLE STATIONERY SUBSCRIPTION TEMPLATE ===== */
/* Bootstrap 5 Base - NO OVERRIDES ALLOWED */

/* Color Palette - 5 Primary Colors + Light/Dark Shades */
:root {
  /* Primary Colors - Eco-friendly pastels with high contrast */
  --primary-sage: #7fb069;        /* Sage green - eco theme */
  --primary-cream: #f7f3e9;       /* Natural cream */
  --primary-forest: #4a6741;      /* Deep forest green */
  --primary-lavender: #b19cd9;    /* Soft lavender */
  --primary-coral: #f78888;       /* Coral accent */
  
  /* Light Shades */
  --light-sage: #a8c991;
  --light-cream: #fcfaf6;
  --light-forest: #6b8562;
  --light-lavender: #d1c7e8;
  --light-coral: #fab6b6;
  
  /* Dark Shades */
  --dark-sage: #5a8049;
  --dark-cream: #e6dfc8;
  --dark-forest: #364d2f;
  --dark-lavender: #9480c0;
  --dark-coral: #f55555;
  
  /* Neutral Colors */
  --text-primary: #2d3748;
  --text-secondary: #4a5568;
  --background-light: #ffffff;
  --background-subtle: #f8f9fa;
}

/* Conservative Typography */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background-light);
}

/* Header Styles */
.navbar-brand {
  font-size: 1.4rem !important; /* Conservative size as required */
  font-weight: 600;
  color: var(--primary-forest) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-primary) !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-sage) !important;
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--light-sage);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

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

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-forest);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Section Headings */
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-forest);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--primary-sage);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

/* Services Cards */
.service-card {
  background: var(--background-light);
  border: 2px solid var(--light-sage);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(127, 176, 105, 0.15);
  border-color: var(--primary-sage);
}

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

/* Team Cards */
.team-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--background-light);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--light-sage);
  margin-bottom: 1rem;
}

/* Reviews/Testimonials */
.review-card {
  background: var(--light-cream);
  border: none;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  height: 100%;
}

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

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

/* FAQ Cards */
.faq-card {
  background: var(--background-light);
  border: 1px solid var(--light-sage);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

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

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

/* Contact Form */
.contact-form {
  background: var(--light-cream);
  border-radius: 12px;
  padding: 3rem;
}

.form-control {
  border: 2px solid var(--light-sage);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(127, 176, 105, 0.25);
}

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

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

/* Gallery */
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

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

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

/* Footer - High contrast colors only, no gradients */
footer {
  background-color: var(--primary-forest);
  color: var(--light-cream);
  padding: 3rem 0 1rem;
}

footer h5 {
  color: var(--light-sage);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

footer a:hover {
  color: var(--light-sage);
}

.footer-copyright {
  background-color: var(--dark-forest);
  color: var(--light-cream);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
}

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

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

.border-eco {
  border-color: var(--primary-sage);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.875rem;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
}

/* 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;
    scroll-behavior: auto !important;
  }
} 


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