/* B2B Podcast Agency Template - Main Styles */

:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-navy: #2c3e50;
  --primary-teal: #17a2b8;
  --primary-coral: #fd7e73;
  --primary-cream: #f8f9fa;
  --primary-sage: #6c757d;
  
  /* Light/Dark Shades */
  --navy-light: #34495e;
  --navy-dark: #1a252f;
  --teal-light: #20c997;
  --teal-dark: #138496;
  --coral-light: #ff9f96;
  --coral-dark: #e74c3c;
  --cream-light: #ffffff;
  --cream-dark: #e9ecef;
  --sage-light: #8a92a0;
  --sage-dark: #495057;
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--primary-navy);
  background-color: var(--primary-cream);
}

/* Typography - Conservative Sizes */
h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 500; }
h5 { font-size: 1rem; font-weight: 500; }
p { font-size: 1rem; margin-bottom: 1rem; }

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

/* Header */
.navbar {
  background-color: var(--cream-light);
  box-shadow: 0 2px 4px rgba(44, 62, 80, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  color: var(--primary-navy);
}

.navbar-nav .nav-link {
  color: var(--primary-navy);
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-teal);
}

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

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary-teal);
  border-radius: 50%;
  opacity: 0.1;
  top: 20%;
  right: 10%;
  z-index: 1;
}

.hero-decorative::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--primary-coral);
  border-radius: 50%;
  top: -75px;
  left: -75px;
  opacity: 0.8;
}

/* Sections */
.section-padding {
  padding: 5rem 0;
}

.section-title {
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--primary-teal);
  margin-bottom: 1.5rem;
}

.section-desc {
  color: var(--primary-sage);
  margin-bottom: 3rem;
}

/* About Features */
.about-feature {
  background-color: var(--cream-light);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 2px solid var(--cream-dark);
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  border-color: var(--primary-teal);
}

/* Services */
.service-card {
  background-color: var(--cream-light);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  border: 2px solid var(--cream-dark);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
  border-color: var(--primary-coral);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin-top: 1rem;
}

/* Features */
.feature-card {
  background-color: var(--cream-light);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-teal);
}

/* Price Plan */
.price-card {
  background-color: var(--cream-light);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  border: 2px solid var(--cream-dark);
  position: relative;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: scale(1.05);
  border-color: var(--primary-coral);
}

.price-card .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin: 1rem 0;
}

/* Team */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-teal);
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Reviews */
.review-card {
  background-color: var(--cream-light);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-coral);
}

.review-author {
  font-weight: 600;
  color: var(--primary-navy);
  margin-top: 1rem;
}

/* Case Studies */
.casestudy-card {
  background-color: var(--cream-light);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 2px solid var(--cream-dark);
}

/* Process */
.process-step {
  background-color: var(--cream-light);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  border-left: 4px solid var(--primary-teal);
}

.process-number {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-coral);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Timeline */
.timeline-item {
  background-color: var(--cream-light);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-sage);
}

/* Career */
.career-item {
  background-color: var(--cream-light);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 2px solid var(--cream-dark);
}

/* Core Info */
.coreinfo-item {
  background-color: var(--cream-light);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  border: 2px solid var(--cream-dark);
}

/* Contact Form */
.contact-form {
  background-color: var(--cream-light);
  border-radius: 15px;
  padding: 3rem;
  border: 2px solid var(--cream-dark);
}

.contact-info {
  background-color: var(--primary-navy);
  color: var(--cream-light);
  border-radius: 15px;
  padding: 3rem;
}

.form-control {
  border-radius: 10px;
  border: 2px solid var(--cream-dark);
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
}

.btn-primary {
  background-color: var(--primary-coral);
  border-color: var(--primary-coral);
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

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

/* Blog */
.blog-card {
  background-color: var(--cream-light);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 2px solid var(--cream-dark);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-teal);
}

/* FAQ */
.faq-item {
  background-color: var(--cream-light);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 2px solid var(--cream-dark);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--primary-sage);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--cream-dark);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Footer */
.footer {
  background-color: var(--primary-navy);
  color: var(--cream-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--cream-light);
  text-decoration: none;
}

.footer a:hover {
  color: var(--primary-coral);
}

/* Breadcrumbs */
.breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Animations - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: no-preference) {
  .sal-animate {
    transition: all 0.6s ease;
  }
}

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

/* Utility Classes */
.bg-primary-navy { background-color: var(--primary-navy); }
.bg-primary-teal { background-color: var(--primary-teal); }
.bg-primary-coral { background-color: var(--primary-coral); }
.bg-primary-cream { background-color: var(--primary-cream); }
.bg-primary-sage { background-color: var(--primary-sage); }

.text-primary-navy { color: var(--primary-navy); }
.text-primary-teal { color: var(--primary-teal); }
.text-primary-coral { color: var(--primary-coral); }
.text-primary-sage { color: var(--primary-sage); }

.hero-section h1 {
    padding-top: 100px;
}


/* 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;
    }
}
