/* Sustainable Stationery Subscription - Main CSS */

/* Color Palette - Pastel High-Contrast */
:root {
  --primary-green: #2D5A27;
  --accent-sage: #87A96B;
  --soft-cream: #F8F6F0;
  --warm-brown: #8B5A3C;
  --deep-forest: #1A3B17;
  
  /* Light/Dark Shades */
  --light-green: #A4C3A2;
  --dark-green: #1F3E1C;
  --light-cream: #FEFCF7;
  --dark-brown: #5C3A28;
  --light-sage: #B8C9A4;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--primary-green);
  background-color: var(--soft-cream);
}

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

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

/* Navigation */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-forest);
}

.navbar-nav .nav-link {
  color: var(--primary-green);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-sage);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--soft-cream) 0%, var(--light-cream) 100%);
  display: flex;
  align-items: center;
  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: 250px;
}

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

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

/* About Features */
.about-feature {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(45, 90, 39, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

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

.about-feature i {
  font-size: 3rem;
  color: var(--accent-sage);
  margin-bottom: 1.5rem;
}

/* Services */
.service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(45, 90, 39, 0.15);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-sage);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

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

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

.service-features li {
  padding: 0.5rem 0;
  color: var(--primary-green);
}

.service-features li::before {
  content: '✓';
  color: var(--accent-sage);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Features Section */
.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--light-cream);
  border-radius: 15px;
  margin-bottom: 2rem;
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--warm-brown);
  margin-bottom: 1rem;
}

/* Price Plans */
.price-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(45, 90, 39, 0.1);
  margin-bottom: 2rem;
  position: relative;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: scale(1.05);
}

.price-card.featured {
  border: 3px solid var(--accent-sage);
  transform: scale(1.05);
}

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

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

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

/* Team Section */
.team-member {
  text-align: center;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 5px 25px rgba(45, 90, 39, 0.1);
  margin-bottom: 2rem;
}

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

/* Reviews */
.review-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px rgba(45, 90, 39, 0.1);
  margin-bottom: 2rem;
  border-left: 5px solid var(--accent-sage);
}

.review-stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  color: var(--deep-forest);
  margin-top: 1.5rem;
}

/* Case Studies */
.case-study-card {
  background: var(--light-cream);
  border-radius: 15px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--light-sage);
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(45, 90, 39, 0.1);
  position: relative;
}

.process-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--accent-sage);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Timeline */
.timeline-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--warm-brown);
  box-shadow: 0 3px 15px rgba(45, 90, 39, 0.1);
}

/* Career */
.career-item {
  background: var(--light-cream);
  border-radius: 15px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--light-sage);
}

/* Core Info */
.coreinfo-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(45, 90, 39, 0.1);
}

/* Contact Form */
.contact-section {
  background: var(--light-cream);
}

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(45, 90, 39, 0.15);
}

.form-control {
  border: 2px solid var(--light-sage);
  border-radius: 10px;
  padding: 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--accent-sage);
  box-shadow: 0 0 0 0.2rem rgba(135, 169, 107, 0.25);
}

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

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

.contact-info {
  background: var(--deep-forest);
  color: var(--soft-cream);
  border-radius: 20px;
  padding: 3rem;
}

.contact-info h5 {
  color: var(--light-sage);
}

.contact-info p {
  color: var(--soft-cream);
}

.contact-info i {
  color: var(--accent-sage);
  margin-right: 1rem;
}

/* Blog */
.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(45, 90, 39, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

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

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 2rem;
}

/* FAQ */
.faq-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 3px 15px rgba(45, 90, 39, 0.1);
  border-left: 4px solid var(--accent-sage);
}

.faq-question {
  font-weight: 600;
  color: var(--deep-forest);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.faq-answer {
  color: var(--primary-green);
  line-height: 1.6;
}

/* Gallery */
.gallery-section {
  background: var(--light-cream);
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(45, 90, 39, 0.1);
  transition: transform 0.3s ease;
}

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

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

/* Footer */
.footer {
  background-color: var(--deep-forest);
  color: var(--soft-cream);
  padding: 4rem 0 2rem;
}

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

.footer p, .footer a {
  color: var(--soft-cream);
  text-decoration: none;
}

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

.footer-policies a {
  margin-right: 1.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.footer-policies a:hover {
  border-bottom-color: var(--accent-sage);
}

/* Breadcrumbs */
.breadcrumb-section {
  padding: 2rem 0;
  background: var(--light-cream);
}

.breadcrumb-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
}

/* Utility Classes */
.text-primary-green { color: var(--primary-green); }
.text-accent-sage { color: var(--accent-sage); }
.text-deep-forest { color: var(--deep-forest); }
.bg-soft-cream { background-color: var(--soft-cream); }
.bg-light-cream { background-color: var(--light-cream); }

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

/* Print Styles */
@media print {
  .navbar, .footer, .btn { display: none; }
  body { font-size: 12pt; }
  h1, h2, h3 { page-break-after: avoid; }
} 



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

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

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

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

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

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

.x-link i {
    display: none;
}

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



/* Team Social Links - Neon Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

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

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

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

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

.x-link i {
    display: none;
}

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