/* ===================================
   MAIN CSS - PRODUCTIVITY COACHING TEMPLATE
   ================================== */

/* Color Palette - 5 Primary Colors + Light/Dark Shades */
:root {
  /* Primary Colors */
  --color-primary: #6366f1;     /* Indigo */
  --color-secondary: #10b981;   /* Emerald */
  --color-accent: #f59e0b;      /* Amber */
  --color-neutral: #6b7280;     /* Cool Gray */
  --color-accent-2: #ef4444;    /* Red */
  
  /* Light Shades */
  --color-primary-light: #e0e7ff;
  --color-secondary-light: #d1fae5;
  --color-accent-light: #fef3c7;
  --color-neutral-light: #f3f4f6;
  --color-accent-2-light: #fee2e2;
  
  /* Dark Shades */
  --color-primary-dark: #4338ca;
  --color-secondary-dark: #047857;
  --color-accent-dark: #d97706;
  --color-neutral-dark: #374151;
  --color-accent-2-dark: #dc2626;
  
  /* Conservative Typography */
  --font-size-navbar-brand: 1.25rem;
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.75rem;
  --font-size-h4: 1.5rem;
  --font-size-h5: 1.25rem;
  --font-size-h6: 1rem;
  --font-size-p: 1rem;
}

/* Media Queries for Reduced Motion */
@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 Sizing */
.navbar-brand {
  font-size: var(--font-size-navbar-brand) !important;
}

h1, .h1 {
  font-size: var(--font-size-h1);
}

h2, .h2 {
  font-size: var(--font-size-h2);
}

h3, .h3 {
  font-size: var(--font-size-h3);
}

h4, .h4 {
  font-size: var(--font-size-h4);
}

h5, .h5 {
  font-size: var(--font-size-h5);
}

h6, .h6 {
  font-size: var(--font-size-h6);
}

p {
  font-size: var(--font-size-p);
}

/* Bootstrap Color Integration */
.text-primary {
  color: var(--color-primary) !important;
}

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

.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.btn-outline-primary {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline-primary:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.border-primary {
  border-color: var(--color-primary) !important;
}

/* Custom Utility Classes */
.text-secondary-custom {
  color: var(--color-secondary);
}

.bg-secondary-custom {
  background-color: var(--color-secondary);
}

.text-accent {
  color: var(--color-accent);
}

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

/* Body and Layout */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--color-neutral-dark);
}

/* Hero Section */
#hero {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-secondary-light) 100%);
  padding-top: 80px;
}

/* Section Styling */
section {
  position: relative;
}

.bg-light {
  background-color: var(--color-neutral-light) !important;
}

/* Card Enhancements */
.card {
  border: none;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: box-shadow 0.15s ease-in-out;
}

.card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Team Member Images */
.team-member-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

/* Footer Styling */
footer {
  background-color: var(--color-neutral-dark) !important;
}

footer a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: white;
}

/* Form Styling */
.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

/* Decorative Elements */
.decorative-shape {
  position: absolute;
  opacity: 0.1;
  z-index: -1;
}

/* Animation Base */
[data-sal] {
  transition-duration: 0.5s;
  transition-property: opacity, transform;
}

/* Disable animations on mobile if prefers-reduced-motion or mobile */
@media (max-width: 768px) {
  [data-sal] {
    transition: none !important;
    animation: none !important;
  }
}

/* Process Steps */
.process-step {
  background: var(--color-primary);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Breadcrumb Styling */
.breadcrumb {
  background: transparent;
  padding: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

/* Gallery Grid */
#gallery .col-md-3 {
  margin-bottom: 1rem;
}

#gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.375rem;
  transition: transform 0.3s ease;
}

#gallery img:hover {
  transform: scale(1.05);
}

/* FAQ Cards */
#faq .card {
  margin-bottom: 1rem;
}

/* Services Grid */
.services-grid .card-img-top {
  height: 250px;
}

/* Pricing Cards */
.pricing-card {
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--color-primary);
}

/* Team Section */
.team-section .col-lg-2 {
  margin-bottom: 2rem;
}

/* Blog Grid */
#blog_grid .card-img-top {
  height: 200px;
}

/* Contact Info Icons */
.contact-info-icon {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .navbar-brand {
    font-size: 1.1rem !important;
  }
  
  h1, .h1 {
    font-size: 2rem;
  }
  
  h2, .h2 {
    font-size: 1.75rem;
  }
  
  .display-4 {
    font-size: 2rem;
  }
  
  .lead {
    font-size: 1rem;
  }
}

/* High Contrast Accessibility */
@media (prefers-contrast: high) {
  .card {
    border: 1px solid var(--color-neutral);
  }
  
  .btn {
    border-width: 2px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .btn,
  #gallery,
  footer {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    color: black;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: black;
  }
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

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

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

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

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
