/* AI Podcast Script Generator - Main Styles */

:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-purple: #8B7FCF;
  --primary-blue: #6BA6E3;
  --primary-mint: #7DD3C0;
  --primary-coral: #F4A6A6;
  --primary-cream: #F5F1E8;
  
  /* Light/Dark Shades */
  --light-purple: #B8B0E8;
  --dark-purple: #5E5496;
  --light-blue: #A2C8F0;
  --dark-blue: #4A7FB3;
  --light-mint: #A8E5D6;
  --dark-mint: #4FB8A3;
  --light-coral: #F8C7C7;
  --dark-coral: #E67373;
  --light-cream: #FAF8F2;
  --dark-cream: #E8E0D0;
}

/* Global Styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: var(--primary-cream);
    overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-purple);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-purple);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-purple);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-blue);
}

p {
  font-size: 1rem;
  color: #555;
}

/* Header */
#header {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.navbar {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue)) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.navbar-brand {
  color: white !important;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  transition: color 0.3s ease;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link:hover {
  color: var(--primary-cream) !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.navbar-toggler {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
}

.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%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-purple), var(--light-blue));
  position: relative;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  background: var(--primary-mint);
  top: 10%;
  right: 15%;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  background: var(--primary-coral);
  bottom: 20%;
  left: 10%;
}

/* About Section */
#about {
  background-color: white;
  padding: 80px 0;
}

.feature-card {
  background: white;
  border: 1px solid var(--light-mint);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Services Section */
#services {
  background: linear-gradient(45deg, var(--light-cream), white);
  padding: 80px 0;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-purple);
}

/* Features Section */
#features {
  background-color: var(--light-mint);
  padding: 80px 0;
}

.features-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* Price Plan Section */
#priceplan {
  background: white;
  padding: 80px 0;
}

.price-card {
  background: white;
  border: 2px solid var(--light-purple);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-purple);
  transform: scale(1.02);
}

.price-card.featured {
  border-color: var(--primary-purple);
  transform: scale(1.05);
}

/* Team Section */
#team {
  background: var(--light-cream);
  padding: 80px 0;
}

.team-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-mint);
  margin-bottom: 1rem;
}

/* Reviews Section */
#reviews {
  background: white;
  padding: 80px 0;
}

.review-card {
  background: var(--light-cream);
  border-radius: 15px;
  padding: 2rem;
  border-left: 4px solid var(--primary-coral);
}

/* Case Studies Section */
#casestudy {
  background: var(--light-blue);
  padding: 80px 0;
}

.case-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Process Section */
#process {
  background: white;
  padding: 80px 0;
}

.process-step {
  background: var(--light-mint);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--primary-purple);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline Section */
#timeline {
  background: var(--light-cream);
  padding: 80px 0;
}

.timeline-item {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid var(--primary-blue);
  margin-bottom: 2rem;
}

/* Career Section */
#career {
  background: white;
  padding: 80px 0;
}

.career-card {
  background: var(--light-purple);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-3px);
}

/* Core Info Section */
#coreinfo {
  background: var(--light-coral);
  padding: 80px 0;
}

.info-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

/* Blog Section */
#blog {
  background: white;
  padding: 80px 0;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

/* FAQ Section */
#faq {
  background: var(--light-mint);
  padding: 80px 0;
}

.faq-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-purple);
}

.faq-question {
  font-weight: 600;
  color: var(--dark-purple);
  margin-bottom: 0.5rem;
}

/* Gallery Section */
#gallery {
  background: white;
  padding: 80px 0;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Contact Section */
#contacts {
  background: var(--light-purple);
  padding: 80px 0;
}

.contact-form {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border-radius: 8px;
  border: 2px solid var(--light-mint);
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(139, 127, 207, 0.25);
}

.btn-primary {
  background: var(--primary-purple);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--dark-purple);
  transform: translateY(-2px);
}

/* Footer */
#footer {
  background: #1a1a1a !important;
  color: #ffffff !important;
  padding: 60px 0 20px;
  border-top: 2px solid #333333;
}

#footer h5 {
  color: #ffffff !important;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.25rem;
}

#footer p {
  color: #f0f0f0 !important;
  line-height: 1.6;
  margin-bottom: 1rem;
}

#footer small {
  color: #e0e0e0 !important;
  font-size: 0.875rem;
}

#footer a {
  color: #93c5fd !important;
  text-decoration: underline;
  transition: color 0.3s ease;
  font-weight: 500;
}

#footer a:hover {
  color: #dbeafe !important;
  text-decoration: underline;
}

#footer ul li {
  margin-bottom: 0.75rem;
}

#footer .contact-info {
  color: #ffffff !important;
}

/* Utility Classes */
.section-padding {
  padding: 80px 0;
}

.text-primary-custom {
  color: var(--primary-purple);
}

.bg-primary-custom {
  background-color: var(--primary-purple);
}

/* Navbar Scroll Effect */
.navbar.scrolled {
  background: linear-gradient(135deg, rgba(139, 127, 207, 0.95), rgba(107, 166, 227, 0.95)) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Breadcrumb Styles */
.breadcrumb {
  background: transparent;
  padding: 0;
}

.breadcrumb-item img {
  filter: opacity(0.7);
  transition: opacity 0.3s ease;
}

.breadcrumb-item img:hover {
  opacity: 1;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header Fallback Styles - For guaranteed visibility */
.navbar,
.navbar.navbar-dark,
#header .navbar {
  background: linear-gradient(135deg, #8B7FCF, #6BA6E3) !important;
  min-height: 70px !important;
  border: none !important;
  box-shadow: 0 2px 15px rgba(0,0,0,0.15) !important;
}

.navbar-brand,
.navbar .navbar-brand {
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 1.25rem !important;
}

.navbar-nav .nav-link,
.navbar .navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 500 !important;
}

.navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:hover {
  color: #F5F1E8 !important;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .navbar {
    background: #000000 !important;
    border-bottom: 2px solid #ffffff !important;
  }
  
  .navbar-brand,
  .navbar-nav .nav-link {
    color: #ffffff !important;
    text-shadow: none !important;
  }
  
  #footer {
    background: #000000 !important;
    border-top: 3px solid #ffffff !important;
  }
  
  #footer h5,
  #footer p,
  #footer small {
    color: #ffffff !important;
  }
  
  #footer a {
    color: #ffffff !important;
    background: #333333 !important;
    padding: 2px 4px !important;
    border-radius: 3px !important;
  }
}

/* Footer Accessibility and Focus Styles */
#footer a:focus {
  outline: 2px solid #93c5fd !important;
  outline-offset: 2px !important;
  border-radius: 4px !important;
}

/* Footer Fallback Styles - Guaranteed Visibility */
footer,
footer#footer,
#footer {
  background-color: #1a1a1a !important;
  background: #1a1a1a !important;
}

footer h5,
footer#footer h5,
#footer h5 {
  color: #ffffff !important;
}

footer p,
footer#footer p,
#footer p {
  color: #f0f0f0 !important;
}

footer a,
footer#footer a,
#footer a {
  color: #93c5fd !important;
}

footer small,
footer#footer small,
#footer small {
  color: #e0e0e0 !important;
} 


/* 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;
    }
}
