/* ===== SUSTAINABLE BRANDS DIGITAL MARKETING TEMPLATE ===== */
/* Bootstrap 5 Integration - DO NOT OVERRIDE CORE STYLES */

/* Color Palette - 5 Primary Colors + Shades */
:root {
  /* Primary Sustainable Brand Colors */
  --primary-green: #86a789;
  --primary-sage: #b2c5aa;
  --primary-cream: #f5f7f0;
  --primary-earth: #d4a574;
  --primary-forest: #5a6b5d;
  
  /* Light Shades */
  --light-green: #a8c4ab;
  --light-sage: #d1dcc9;
  --light-cream: #fafbf8;
  --light-earth: #e6c49a;
  --light-forest: #7a8c7d;
  
  /* Dark Shades */
  --dark-green: #6b8a6e;
  --dark-sage: #8fa488;
  --dark-cream: #e8ede0;
  --dark-earth: #b8935f;
  --dark-forest: #404940;
  
  /* Typography */
  --heading-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --body-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  
  /* Conservative Font Sizes */
  --navbar-brand-size: 1.25rem;
  --h1-size: 2rem;
  --h2-size: 1.75rem;
  --h3-size: 1.5rem;
  --p-size: 1rem;
}

/* Typography - Conservative Sizes */
.navbar-brand {
  font-size: var(--navbar-brand-size);
  font-weight: 600;
  color: var(--primary-forest);
}

h1 {
  font-size: var(--h1-size);
  font-weight: 700;
  color: var(--primary-forest);
  font-family: var(--heading-font);
}

h2 {
  font-size: var(--h2-size);
  font-weight: 600;
  color: var(--primary-forest);
  font-family: var(--heading-font);
}

h3 {
  font-size: var(--h3-size);
  font-weight: 500;
  color: var(--primary-forest);
  font-family: var(--heading-font);
}

p {
  font-size: var(--p-size);
  line-height: 1.6;
  color: var(--dark-forest);
  font-family: var(--body-font);
}

/* Global Styles */
body {
  font-family: var(--body-font);
  background-color: var(--primary-cream);
  color: var(--dark-forest);
}

/* Hero Section - Fullscreen Height */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--primary-cream) 100%);
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  z-index: 2;
    padding-top: 200px;
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--primary-sage);
  opacity: 0.1;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 10%;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 30%;
  left: 15%;
  background: var(--primary-earth);
}

/* Section Spacing */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--primary-green);
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* Services Cards */
.service-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(90, 107, 93, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(90, 107, 93, 0.15);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(90, 107, 93, 0.1);
  border: none;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid var(--primary-sage);
}

/* Review/Testimonial Cards */
.review-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(90, 107, 93, 0.1);
  border: none;
  height: 100%;
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(90, 107, 93, 0.08);
  border: none;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 15px;
}

.faq-answer {
  color: var(--dark-forest);
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(90, 107, 93, 0.1);
}

.form-control {
  border: 2px solid var(--light-sage);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(134, 167, 137, 0.25);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
  transform: translateY(-2px);
}

.btn-outline-primary {
  border-color: var(--primary-green);
  color: var(--primary-green);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 500;
}

.btn-outline-primary:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: white;
}

/* Footer */
.footer {
  background-color: var(--primary-forest);
  color: var(--light-cream);
  padding: 60px 0 30px;
}

.footer h5 {
  color: var(--primary-sage);
  margin-bottom: 20px;
}

.footer a {
  color: var(--light-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-sage);
}

/* Gallery Images */
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .gallery-item:hover img {
    transform: scale(1.05);
  }
}

/* Navigation */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(90, 107, 93, 0.1);
}

.nav-link {
  color: var(--primary-forest);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-green);
}

/* Accessibility - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .service-card,
  .btn-primary,
  .gallery-item img,
  .blog-card {
    transition: none;
  }
  
  .service-card:hover {
    transform: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
  
  .gallery-item:hover img {
    transform: none;
  }
  
  .blog-card:hover {
    transform: none;
  }
  
  .price-card.featured {
    transform: none;
  }
}

/* Price Plan Cards */
.price-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(90, 107, 93, 0.1);
  border: none;
  text-align: center;
  height: 100%;
}

.price-card.featured {
  border: 3px solid var(--primary-green);
}

@media (prefers-reduced-motion: no-preference) {
  .price-card.featured {
    transform: scale(1.05);
  }
}

/* Features List */
.features-list {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(90, 107, 93, 0.1);
}

/* Process Steps */
.process-step {
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(90, 107, 93, 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-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 20px;
}

/* Case Study Cards */
.casestudy-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(90, 107, 93, 0.1);
  border: none;
  height: 100%;
}

/* Timeline Items */
.timeline-item {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(90, 107, 93, 0.1);
  border-left: 4px solid var(--primary-green);
  margin-bottom: 20px;
}

/* Career Cards */
.career-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(90, 107, 93, 0.1);
  border: none;
  height: 100%;
}

/* Core Info Cards */
.coreinfo-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(90, 107, 93, 0.1);
  border: none;
  height: 100%;
}

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(90, 107, 93, 0.1);
  border: none;
  height: 100%;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

/* Breadcrumb */
.breadcrumb-image {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
}

/* Space Page */
#space {
  min-height: 70vh;
  background: var(--light-cream);
  border-radius: 12px;
  margin: 40px 0;
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
