/* ==========================================================================
   MAIN CSS - Podcast Guest Matchmaking Service
   Bootstrap 5 Compatible - No overrides, custom variables only
   ========================================================================== */

/* CSS Variables - Color Palette (5 primary colors + shades) */
:root {
  /* Primary Colors (Pastel High-Contrast) */
  --primary-color: #5464de;       /* Indigo */
  --secondary-color: #ed7104;     /* Amber */
  --accent-color: #1ed1a0;        /* Emerald */
  --highlight-color: #fa5ab1;     /* Pink */
  --neutral-color: #5e728b;       /* Slate */
  
  /* Light Shades */
  --primary-light: #93a2ff;
  --secondary-light: #ffdc62;
  --accent-light: #5ed099;
  --highlight-light: #eda2c4;
  --neutral-light: #b3bfd9;
  
  /* Dark Shades */
  --primary-dark: #444ad2;
  --secondary-dark: #ca6e03;
  --accent-dark: #0c8d62;
  --highlight-dark: #be0760;
  --neutral-dark: #4c5565;
  
  /* Semantic Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --text-primary: #202d3c;
  --text-secondary: #667597;
  --border-color: #e5e9f0;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-padding: 1rem;
  
  /* Transitions */
  --transition-base: all 0.3s ease;
  --transition-fast: all 0.15s ease;
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  font-size: var(--font-size-base);
}

/* Conservative Typography */
h1, .h1 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2, .h2 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0.96rem;
}

h3, .h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 0.66rem;
}

p {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Navbar Brand - Conservative Size */
.navbar-brand {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.navbar-brand:hover {
  color: var(--primary-dark);
}

/* Section Styling */
.section {
  padding: var(--section-padding);
}

.section-bg {
  background-color: var(--bg-secondary);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: var(--font-size-lg);
  margin-bottom: 0.57rem;
}

/* Hero Section */
.hero {
  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::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a"><stop offset="0" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="1" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="300" r="180" fill="url(%23a)"/><circle cx="800" cy="700" r="200" fill="url(%23a)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 225px;
}

/* Services Cards */
.service-card {
  background: var(--bg-primary);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 6px 6px -1px rgba(0, 0, 0, 0.1);
  transition: var(--transition-base);
  border: 1px solid var(--border-color);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 17px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 1rem;
}

/* Team Cards */
.team-card {
  background: var(--bg-primary);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 11px 6px -1px rgba(0, 0, 0, 0.1);
  transition: var(--transition-base);
  border: 1px solid var(--border-color);
}

.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}

/* Review Cards */
.review-card {
  background: var(--bg-primary);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 7px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.review-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  color: var(--text-primary);
}

/* FAQ Cards */
.faq-card {
  background: var(--bg-primary);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 7px 11px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  margin-bottom: 1.61rem;
}

.faq-question {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.99rem;
}

.faq-answer {
  color: var(--text-secondary);
}

/* Contact Form */
.contact-form {
  background: var(--bg-primary);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 6px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
}

.form-control {
  border-radius: 0.5rem;
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  transition: var(--transition-base);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(84, 101, 237, 0.25);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: var(--transition-base);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Gallery */
.gallery-item {
  margin-bottom: 2rem;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 9px 6px -1px rgba(0, 0, 0, 0.1);
  transition: var(--transition-base);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Blog Cards */
.blog-card {
  background: var(--bg-primary);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 9px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  transition: var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.1);
}

.blog-card-body {
  padding: 1.5rem;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--neutral-dark) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--neutral-light);
  text-decoration: none;
  transition: var(--transition-base);
}

.footer a:hover {
  color: white;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-color);
}

.text-secondary-custom {
  color: var(--secondary-color);
}

.text-accent-custom {
  color: var(--accent-color);
}

.bg-primary-custom {
  background-color: var(--primary-color);
}

.bg-secondary-custom {
  background-color: var(--secondary-color);
}

.bg-gradient-custom {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.process-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  font-size: var(--font-size-lg);
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 1rem;
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-color);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 12px;
  width: 2px;
  height: calc(100% + 1rem);
  background: var(--border-color);
}

.timeline-item:last-child::after {
  display: none;
}

/* Price Plan Cards */
.price-card {
  background: var(--bg-primary);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 6px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  text-align: center;
  height: 100%;
}

.price-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.price-value {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Case Study Cards */
.case-study-card {
  background: var(--bg-primary);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 7px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

/* Feature Cards */
.feature-card {
  background: var(--bg-primary);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 6px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  text-align: center;
  height: 100%;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Career Cards */
.career-card {
  background: var(--bg-primary);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.career-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.65rem;
}

/* Core Info Cards */
.core-info-card {
  background: var(--bg-primary);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

/* Contact Info */
.contact-info {
  background: var(--bg-secondary);
  border-radius: 0.75rem;
  padding: 2rem;
  margin-top: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-info-item i {
  color: var(--primary-color);
  margin-right: 1rem;
  font-size: var(--font-size-lg);
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

/* Space Page */
#space {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
