/* AI-Curated Influencer Campaign Tool - Main Styles */

/* Color Palette - Pastel High-Contrast Colors */
:root {
  /* Primary Colors */
  --primary-color: #6366f1; /* Indigo */
  --secondary-color: #f59e0b; /* Amber */
  --accent-color: #10b981; /* Emerald */
  --warning-color: #ef4444; /* Red */
  --info-color: #3b82f6; /* Blue */
  
  /* Light Shades */
  --primary-light: #a5b4fc;
  --secondary-light: #fbbf24;
  --accent-light: #34d399;
  --warning-light: #f87171;
  --info-light: #60a5fa;
  
  /* Dark Shades */
  --primary-dark: #4338ca;
  --secondary-dark: #d97706;
  --accent-dark: #059669;
  --warning-dark: #dc2626;
  --info-dark: #2563eb;
  
  /* Conservative Typography */
  --heading-size: 2rem;
  --subheading-size: 1.25rem;
  --text-size: 1rem;
  --small-text: 0.875rem;
}

/* Base Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--text-size);
  line-height: 1.6;
  color: #333;
    overflow-x: hidden;
}

h1 {
  font-size: var(--heading-size);
  font-weight: 600;
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--subheading-size);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

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

.navbar-brand {
  font-size: 1.125rem;
  font-weight: 600;
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: var(--secondary-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

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

/* Services Section */
.services-card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  height: 100%;
}

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

.price-badge {
  background: var(--accent-color);
  color: white;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  display: inline-block;
}

/* Team Section */
.team-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--primary-light);
}

/* Features Section */
.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form .form-control {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 0.75rem;
}

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

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

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

/* Footer - High Contrast Only */
.footer {
  background-color: #1f2937;
  color: #f9fafb;
}

.footer h5 {
  color: #ffffff;
}

.footer a {
  color: #d1d5db;
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
}

/* Gallery Section */
.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  transition: transform 0.3s ease;
}

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

/* FAQ Section */
.faq-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.faq-question {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 500;
  padding: 1rem;
  margin: 0;
  border-radius: 8px 8px 0 0;
}

.faq-answer {
  padding: 1rem;
  background: #f9fafb;
  border-radius: 0 0 8px 8px;
}

/* Responsive Adjustments */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Section Spacing */
.section {
  padding: 4rem 0;
}

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

/* Case Studies */
.case-study-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* Process Steps */
.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 auto 1rem;
}

/* Timeline */
.timeline-item {
  border-left: 3px solid var(--primary-color);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 13px;
  height: 13px;
  background: var(--primary-color);
  border-radius: 50%;
}

/* Blog Section */
.blog-card {
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

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

/* Career Section */
.career-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
}

/* Core Info */
.core-info-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* Utilities */
.text-primary-custom {
  color: var(--primary-color);
}

.bg-light-custom {
  background-color: #f8fafc;
}

.border-radius-lg {
  border-radius: 12px;
} 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

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

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

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

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

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