/* AI Podcast Script Generator - Responsive Styles */

/* Mobile First Approach */

/* Extra Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  /* Disable animations on mobile */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  /* Navbar mobile improvements */
  .navbar {
    background: linear-gradient(135deg, var(--dark-purple), var(--dark-blue)) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }
  
  .navbar-collapse {
    background: rgba(94, 84, 150, 0.98);
    border-radius: 0 0 15px 15px;
    margin-top: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
  
  .navbar-nav .nav-link {
    color: white !important;
    padding: 10px 15px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-weight: 500;
  }
  
  .navbar-nav .nav-link:hover {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  /* Hero section mobile */
  #hero {
    min-height: 70vh;
    text-align: center;
  }
  
  .hero-shape {
    display: none;
  }
  
  /* Service cards stack */
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  /* Team photos smaller */
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  /* Contact form padding */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Footer adjustments */
  #footer {
    background: #1a1a1a !important;
    text-align: center;
    padding: 40px 0 20px;
  }
  
  #footer h5 {
    color: #ffffff !important;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  #footer p {
    color: #f0f0f0 !important;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  #footer a {
    color: #93c5fd !important;
    font-size: 0.9rem;
    text-decoration: underline;
  }
  
  #footer small {
    color: #e0e0e0 !important;
    font-size: 0.8rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Conservative animations only */
  .feature-card:hover,
  .service-card:hover,
  .career-card:hover {
    transform: none;
  }
  
  /* Navbar improvements for tablets */
  .navbar {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue)) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  }
  
  .navbar-brand {
    font-size: 1.1rem;
    color: white !important;
  }
  
  .navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
  }
  
  h1 {
    font-size: 2.25rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* Navbar for medium screens */
  .navbar {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue)) !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
  }
  
  .navbar-brand,
  .navbar-nav .nav-link {
    color: white !important;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  /* Navbar for large screens */
  .navbar {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue)) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  
  .navbar-brand,
  .navbar-nav .nav-link {
    color: white !important;
  }
  
  /* Full animations enabled */
  .hero-shape {
    animation: float 6s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Print styles */
@media print {
  * {
    animation: none !important;
    transition: none !important;
    box-shadow: none !important;
  }
  
  #header,
  #footer {
    display: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --primary-purple: #4A148C;
    --primary-blue: #0D47A1;
    --primary-mint: #00695C;
    --primary-coral: #C62828;
    --primary-cream: #FFFFFF;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .hero-shape {
    animation: none !important;
  }
  
  .feature-card:hover,
  .service-card:hover,
  .career-card:hover,
  .blog-card:hover,
  .gallery-item:hover img {
    transform: none !important;
  }
} 

body {
    overflow-x: hidden;
}