/* Main CSS for Podcast Production Service Template */
:root {
  /* Primary Color Palette - 5 colors with light/dark shades */
  --primary-purple: #785cff;
  --primary-purple-light: #ad9de7;
  --primary-purple-dark: #8733cc;
  
  --primary-blue: #3767fd;
  --primary-blue-light: #8ebbf8;
  --primary-blue-dark: #0f59d9;
  
  --primary-teal: #0ca6a5;
  --primary-teal-light: #59e8c6;
  --primary-teal-dark: #1a8777;
  
  --primary-orange: #ff7104;
  --primary-orange-light: #f9c677;
  --primary-orange-dark: #c62f0f;
  
  --primary-pink: #e04f85;
  --primary-pink-light: #feaadb;
  --primary-pink-dark: #d01e82;
  
  /* Neutral Colors */
  --neutral-white: #FFFFFF;
  --neutral-light: #F8FAFC;
  --neutral-gray: #697d8e;
  --neutral-dark: #121a26;
  --neutral-black: #0f1636;
  
  /* Conservative Font Sizes */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --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: 4rem 0;
  --container-padding: 1.5rem;
}

/* Base Styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--neutral-dark);
  background-color: var(--neutral-white);
}

/* Conservative Typography */
h1 { font-size: var(--font-size-3xl); font-weight: 700; margin-bottom: 1rem; }
h2 { font-size: var(--font-size-2xl); font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: var(--font-size-xl); font-weight: 600; margin-bottom: 0.97rem; }
h4 { font-size: var(--font-size-lg); font-weight: 500; margin-bottom: 0.96rem; }
h5 { font-size: var(--font-size-base); font-weight: 500; margin-bottom: 0.56rem; }
h6 { font-size: var(--font-size-small); font-weight: 500; margin-bottom: 0.55rem; }

p { font-size: var(--font-size-base); margin-bottom: 1rem; }

/* Header Styles */
.navbar-brand {
  font-size: var(--font-size-xl) !important;
  font-weight: 700;
  color: var(--primary-purple) !important;
}

.navbar {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(13px);
  border-bottom: 1px solid rgba(117, 76, 222, 0.10);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 25px rgba(178, 119, 255, 0.10);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(142, 97, 239, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--neutral-dark) !important;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-purple) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-purple-light) 0%, var(--primary-blue-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
}

.hero-decorative-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, var(--primary-teal), var(--primary-blue));
  border-radius: 50% 30% 70% 40%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.hero-decorative-shape:nth-child(1) { top: 10%; right: 10%; animation-delay: 0s; }
.hero-decorative-shape:nth-child(2) { bottom: 10%; left: 10%; animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(5deg); }
}

/* Button Styles */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-purple-dark), var(--primary-blue-dark));
  transform: translateY(-2px);
  box-shadow: 0 11px 25px rgba(140, 109, 255, 0.30);
}

.btn-outline-primary {
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-purple);
  color: white;
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-purple);
  font-size: var(--font-size-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.71rem;
}

/* Services Grid */
.service-card {
  background: white;
  border-radius: 25px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(138, 110, 244, 0.10);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-purple), var(--primary-teal));
}

.service-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 20px 40px rgba(128, 96, 222, 0.15);
}

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-purple);
  margin: 1rem 0;
}

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
  border: 4px solid var(--primary-purple-light);
  transition: all 0.3s ease;
}

.team-photo:hover {
  border-color: var(--primary-purple);
  transform: scale(1.05);
}

/* Testimonials */
.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin: 1rem;
  border-left: 4px solid var(--primary-teal);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-purple);
  margin-top: 1rem;
}

/* FAQ Section */
.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid rgba(127, 78, 255, 0.10);
  overflow: hidden;
}

.faq-question {
  background: var(--primary-purple-light);
  padding: 1.5rem;
  margin: 0;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-purple);
  color: white;
}

.faq-answer {
  padding: 1.5rem;
  border-top: 1px solid rgba(153, 86, 243, 0.10);
  background: var(--neutral-light);
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid rgba(138, 96, 243, 0.10);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(100, 79, 228, 0.25);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--neutral-dark), var(--neutral-black));
  color: white;
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--primary-purple-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-purple);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
    padding: 2rem 0;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-decorative-shape {
    animation: none;
  }
}

/* Image placeholder sizing */
.img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(45deg, var(--primary-purple-light), var(--primary-teal-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-dark);
  font-weight: 600;
}

/* Breadcrumb styles */
.breadcrumb-img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 5px;
}

/* Blog styles */
.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

/* Price plan cards */
.price-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.price-card.featured {
  border-color: var(--primary-purple);
  transform: scale(1.05);
}

.price-card:hover {
  border-color: var(--primary-teal);
  box-shadow: 0 20px 40px rgba(105, 77, 249, 0.15);
}

.price-value {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--primary-purple);
}

/* Process steps */
.process-step {
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-teal));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* 5-column layout for team, process, and timeline sections */
#team .row,
#process .row,
#timeline .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

@media (min-width: 992px) {
  #team .row,
  #process .row,
  #timeline .row {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 991px) {
  #team .row,
  #process .row,
  #timeline .row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  #team .row,
  #process .row,
  #timeline .row {
    grid-template-columns: 1fr;
  }
} 


/* 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);
}

.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;
    }
}
