/* Remote Peer-Coaching Platform for Managers - Main Styles */
/* Production-ready styles with Bootstrap 5 integration */
/* Version: 1.0.0 */

/* Import Bootstrap 5 from CDN (will be linked in HTML) */

/* CSS Variables - 5 Primary Pastel Colors */
:root {
  --primary-lavender: #E6E6FA;
  --primary-mint: #F0FFF0;
  --primary-peach: #FFEFD5;
  --primary-sky: #E0F6FF;
  --primary-rose: #FFE4E6;
  
  /* Light/Dark Shades */
  --lavender-light: #F5F5FF;
  --lavender-dark: #D1D1E9;
  --mint-light: #F8FFF8;
  --mint-dark: #E1F5E1;
  --peach-light: #FFF8F0;
  --peach-dark: #F0D5B8;
  --sky-light: #F0FAFF;
  --sky-dark: #C1E5F5;
  --rose-light: #FFF0F2;
  --rose-dark: #F0C7CC;
  
  /* Conservative Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-h6: 1rem;
  --font-size-h5: 1.125rem;
  --font-size-h4: 1.25rem;
  --font-size-h3: 1.375rem;
  --font-size-h2: 1.5rem;
  --font-size-h1: 1.75rem;
  
  /* Conservative Brand/Logo Size */
  --brand-font-size: 1.25rem;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Conservative Typography - Override default Bootstrap sizes */
.navbar-brand {
  font-size: var(--brand-font-size);
  font-weight: 600;
}

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 {
  font-size: var(--font-size-base);
  line-height: 1.6;
}

/* Hero Section Styles */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-lavender), var(--primary-sky));
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: var(--primary-peach);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: var(--primary-mint);
  border-radius: 50%;
  opacity: 0.4;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 200px;
}

/* Section Spacing */
.section-padding {
  padding: 5rem 0;
}

/* Service Cards */
.service-card {
  background: var(--lavender-light);
  border: 1px solid var(--lavender-dark);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Price Plan Cards */
.price-card {
  background: var(--mint-light);
  border: 2px solid var(--mint-dark);
}

.price-card.featured {
  background: var(--peach-light);
  border-color: var(--peach-dark);
  transform: scale(1.05);
}

/* Team Member Cards */
.team-card {
  background: var(--sky-light);
  border: 1px solid var(--sky-dark);
}

/* Testimonial Cards */
.testimonial-card {
  background: var(--rose-light);
  border-left: 4px solid var(--rose-dark);
}

/* FAQ Cards */
.faq-card {
  background: white;
  border: 1px solid var(--lavender-dark);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  background: var(--mint-light);
  padding: 2rem;
  border-radius: 0.5rem;
}

/* Button Styles */
.btn-primary-custom {
  background: var(--primary-lavender);
  border-color: var(--lavender-dark);
  color: #333;
}

.btn-primary-custom:hover {
  background: var(--lavender-dark);
  border-color: var(--lavender-dark);
  color: #333;
}

/* Footer */
.footer {
  background: var(--primary-sky);
  color: #333;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

/* Process Steps */
.process-step {
  background: var(--peach-light);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: bold;
  color: #333;
}

/* Timeline Items */
.timeline-item {
  position: relative;
  padding-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: var(--primary-rose);
  border-radius: 50%;
}

/* Utility Classes */
.text-muted-custom {
  color: #6c757d;
}

.bg-light-custom {
  background-color: var(--lavender-light);
}

.border-custom {
  border-color: var(--lavender-dark);
}

/* Career Section */
.career-card {
  background: var(--sky-light);
  border: 1px solid var(--sky-dark);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

/* Core Info Section */
.core-info-item {
  background: var(--peach-light);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

/* Blog Cards */
.blog-card {
  background: white;
  border: 1px solid var(--mint-dark);
  transition: box-shadow 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Case Study Cards */
.case-study-card {
  background: var(--rose-light);
  border: 1px solid var(--rose-dark);
  padding: 2rem;
} 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.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;
}

.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;
    }
}
