/* ==========================================
   PODCAST AGENCY TEMPLATE - MAIN STYLES
   Bootstrap-like Framework + Custom Theme
   ========================================== */

/* Custom CSS Variables - Color Palette */
:root {
  /* Primary Colors */
  --primary-purple: #8B5CF6;
  --primary-blue: #3B82F6;
  --primary-teal: #14B8A6;
  --primary-orange: #F97316;
  --primary-pink: #EC4899;
  
  /* Light Shades */
  --light-purple: #DDD6FE;
  --light-blue: #DBEAFE;
  --light-teal: #CCFBF1;
  --light-orange: #FED7AA;
  --light-pink: #FCE7F3;
  
  /* Dark Shades */
  --dark-purple: #5B21B6;
  --dark-blue: #1E40AF;
  --dark-teal: #047857;
  --dark-orange: #C2410C;
  --dark-pink: #BE185D;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8FAFC;
  --gray: #64748B;
  --dark-gray: #334155;
  --black: #0F172A;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
  --gradient-secondary: linear-gradient(135deg, var(--primary-teal), var(--primary-orange));
  --gradient-accent: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
  
  /* Typography */
  --font-base: 16px;
  --font-small: 14px;
  --font-large: 18px;
  --line-height: 1.6;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-base);
  line-height: var(--line-height);
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Bootstrap-like Grid System */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-fluid {
  width: 100%;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
  position: relative;
  width: 100%;
  padding: 0 15px;
}

.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--black);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  font-size: var(--font-base);
}

/* Bootstrap-like Navbar */
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  display: inline-block;
}

.navbar-toggler {
  background: none;
  border: 1px solid var(--gray);
  padding: 0.25rem 0.5rem;
  font-size: 1.25rem;
  line-height: 1;
  border-radius: 0.25rem;
  cursor: pointer;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

.navbar-toggler-icon::before {
  content: "☰";
  font-size: 1.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark-gray);
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
  text-decoration: none;
  display: block;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-purple);
}

.nav-item {
  display: list-item;
}

.ms-auto {
  margin-left: auto;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-primary);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../NAX_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: var(--font-large);
  margin-bottom: 2.5rem;
  opacity: 0.8;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--gray);
}

/* Bootstrap-like Utilities */
.bg-light {
  background-color: var(--light-gray);
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary-purple) !important;
}

.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-5 { margin-top: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.d-block { display: block; }
.d-none { display: none; }

.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Card Styles */
.custom-card {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  height: 100%;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Icon Replacements (Text-based) */
.icon-microphone::before { content: "🎙️"; }
.icon-chart::before { content: "📈"; }
.icon-headphones::before { content: "🎧"; }
.icon-rocket::before { content: "🚀"; }
.icon-award::before { content: "🏆"; }
.icon-clock::before { content: "⏰"; }
.icon-users::before { content: "👥"; }
.icon-shield::before { content: "🛡️"; }
.icon-phone::before { content: "📞"; }
.icon-envelope::before { content: "📧"; }
.icon-location::before { content: "📍"; }

/* Services Section */
.services-item {
  text-align: center;
  margin-bottom: 2rem;
}

.services-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.services-item-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-purple);
}

.services-item-desc {
  font-size: var(--font-small);
  color: var(--gray);
  margin-bottom: 1rem;
}

.services-item-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 0.5rem;
}

.services-item-features {
  font-size: var(--font-small);
  color: var(--dark-gray);
}

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 4px solid var(--light-purple);
}

.team-member-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--black);
}

.team-member-role {
  font-size: var(--font-small);
  color: var(--primary-purple);
}

/* Reviews/Testimonials */
.review-card {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.review-author {
  font-weight: 600;
  color: var(--primary-purple);
}

/* FAQ Section */
.faq-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--light-purple);
  padding: 1.5rem;
  margin: 0;
  font-weight: 600;
  color: var(--dark-purple);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-purple);
  color: var(--white);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--gray);
  border-top: 1px solid var(--light-gray);
}

/* Forms */
.contact-form {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 3rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem;
  font-size: var(--font-base);
  color: var(--dark-gray);
  background-color: var(--white);
  border: 2px solid var(--light-purple);
  border-radius: 10px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: 0;
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 0.25em;
  float: left;
  margin-left: -1.5em;
}

.form-check-label {
  color: var(--dark-gray);
}

.btn {
  display: inline-block;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.75rem 2rem;
  font-size: var(--font-base);
  line-height: 1.5;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  border-color: var(--primary-purple);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
  border-radius: 12px;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/* Footer */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-purple);
}

.footer-bottom {
  border-top: 1px solid var(--dark-gray);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Blog Grid */
#blog_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-item {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-item-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.blog-item-excerpt {
  color: var(--gray);
  margin-bottom: 1rem;
}

.blog-item-link {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 500;
}

.blog-item-link:hover {
  text-decoration: underline;
}

/* Space Page */
#space {
  min-height: 60vh;
  background: var(--light-gray);
  border-radius: 15px;
  margin: 2rem 0;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* High Contrast Mode */
.high-contrast {
  filter: contrast(1.2);
}

.high-contrast * {
  text-shadow: none !important;
  box-shadow: none !important;
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
