/* Main CSS for Remote Team Culture Gamification Template */
/* Bootstrap 5 Compatible - No Overrides */

:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-purple: #8B5FBF;
  --primary-teal: #4ECDC4;
  --primary-coral: #FF6B6B;
  --primary-sage: #95D5B2;
  --primary-lavender: #D8BFD8;
  
  /* Light Shades */
  --light-purple: #B794E6;
  --light-teal: #7EDDD6;
  --light-coral: #FF9999;
  --light-sage: #B8E6C1;
  --light-lavender: #E8D5E8;
  
  /* Dark Shades */
  --dark-purple: #6B3FA0;
  --dark-teal: #2C8B87;
  --dark-coral: #CC4444;
  --dark-sage: #5FA370;
  --dark-lavender: #B299B2;
  
  /* 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.5rem;
  --font-size-h2: 1.75rem;
  --font-size-h1: 2rem;
  
  /* Conservative navbar brand size */
  --navbar-brand-size: 1.125rem;
}

/* Typography - Conservative Sizes */
.navbar-brand {
  font-size: var(--navbar-brand-size) !important;
  font-weight: 600;
}

h1 { 
  font-size: var(--font-size-h1);
  color: var(--primary-purple);
  font-weight: 700;
}

h2 { 
  font-size: var(--font-size-h2);
  color: var(--primary-teal);
  font-weight: 600;
}

h3 { 
  font-size: var(--font-size-h3);
  color: var(--primary-coral);
  font-weight: 600;
}

h4 { 
  font-size: var(--font-size-h4);
  color: var(--primary-sage);
  font-weight: 500;
}

h5 { 
  font-size: var(--font-size-h5);
  color: var(--primary-lavender);
  font-weight: 500;
}

h6 { 
  font-size: var(--font-size-h6);
  color: var(--dark-purple);
  font-weight: 500;
}

p {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #6c757d;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-teal) 100%);
  position: relative;
  overflow: hidden;
}

.hero-decorative-shape {
  position: absolute;
  background: var(--primary-coral);
  opacity: 0.1;
  border-radius: 50%;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  background: var(--primary-sage);
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border: none;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-purple);
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: none;
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Review Cards */
.review-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: none;
  border-left: 4px solid var(--primary-teal);
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  border: none;
  margin-bottom: 1rem;
}

.faq-question {
  color: var(--primary-purple);
  font-weight: 600;
}

/* Buttons */
.btn-primary-custom {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
  color: white;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 8px;
}

.btn-primary-custom:hover {
  background-color: var(--dark-purple);
  border-color: var(--dark-purple);
}

.btn-secondary-custom {
  background-color: var(--primary-teal);
  border-color: var(--primary-teal);
  color: white;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 8px;
}

.btn-secondary-custom:hover {
  background-color: var(--dark-teal);
  border-color: var(--dark-teal);
}

/* Sections */
.section-padding {
  padding: 5rem 0;
}

.section-bg-light {
  background-color: #f8f9fa;
}

.section-bg-primary {
  background: linear-gradient(135deg, var(--light-sage) 0%, var(--light-lavender) 100%);
}

/* Footer */
.footer-section {
  background-color: var(--dark-purple);
  color: white;
}

.footer-section h5 {
  color: var(--light-teal);
}

.footer-section a {
  color: var(--light-lavender);
  text-decoration: none;
}

.footer-section a:hover {
  color: white;
}

/* Gallery */
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 2rem;
}

/* Price Plan Cards */
.price-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: none;
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border-top: 4px solid var(--primary-coral);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-purple);
}

/* Case Study Cards */
.case-study-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: none;
  overflow: hidden;
}

/* Process Steps */
.process-step {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.process-number {
  background: var(--primary-teal);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

/* Timeline */
.timeline-item {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 1.5rem;
  border-left: 4px solid var(--primary-coral);
}

/* Career Cards */
.career-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: none;
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-3px);
}

/* Core Info */
.core-info-item {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: none;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .service-card:hover,
  .career-card:hover,
  .blog-card:hover,
  .gallery-item:hover img {
    transform: none;
  }
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 2rem;
  text-align: center;
  border: none;
  height: 100%;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

/* About Features */
.about-feature {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 1.5rem;
  text-align: center;
  border: none;
  height: 100%;
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--primary-coral);
  margin-bottom: 1rem;
} 

body {
    overflow-x: hidden;
}

.hero-section h1 {
    padding-top: 250px;
}


/* 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;
    }
}
