/* Digital Marketing for Sustainable Brands - Main Styles */

:root {
  /* Primary Color Palette - Pastel High-Contrast Colors for Sustainability Theme */
  --primary-green: #1e390d;
  --light-green: #92bf73;
  --primary-blue: #154397;
  --light-blue: #4aa7e4;
  --accent-orange: #e56a19;
  --light-orange: #ff9d39;
  --neutral-gray: #2c3342;
  --light-gray: #F3F4F6;
  --white: #FFFFFF;
  --dark: #0d141d;
  
  /* Conservative Typography */
  --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --line-height-base: 1.6;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --container-max-width: 1200px;
}

/* Global Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--neutral-gray);
  background-color: var(--white);
}

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

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

.lead {
  font-size: 1.1rem;
  color: var(--neutral-gray);
}

/* Header & Navigation */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 0.75rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
}

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

.navbar-nav .nav-link:hover {
  color: var(--primary-green);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

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

.hero-section h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-section p {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

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

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

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--neutral-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Cards */
.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.card-header {
  background-color: var(--light-green);
  color: var(--white);
  border-radius: 10px 10px 0 0;
  padding: 1.5rem;
}

.card-body {
  padding: 2rem;
}

.card-title {
  color: var(--primary-green);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Services Section */
.service-card {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
}

.service-card i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

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

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--light-green);
}

/* Reviews/Testimonials */
.review-card {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

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

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

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

.form-control {
  border: 2px solid #c8cfd8;
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

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

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

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

/* FAQ Section */
.faq-card {
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-green);
}

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

.faq-answer {
  color: var(--neutral-gray);
}

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

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

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

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

.footer-bottom {
  border-top: 1px solid #4b5161;
  margin-top: 2rem;
  padding-top: 1rem;
}

/* Gallery Section */
.gallery-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Blog Section */
.blog-card {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
}

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

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

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

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

/* Image Placeholders */
.img-placeholder {
  background: linear-gradient(45deg, var(--light-gray) 25%, transparent 25%),
              linear-gradient(-45deg, var(--light-gray) 25%, transparent 25%),
              linear-gradient(45deg, transparent 75%, var(--light-gray) 75%),
              linear-gradient(-45deg, transparent 75%, var(--light-gray) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-gray);
  font-weight: 500;
  min-height: 200px;
} 


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

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