/* Responsive CSS for Storytelling Workshops Template */

/* Large Desktop */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  

}

/* Desktop */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-title {
    font-size: 3rem;
  }
  

}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  

  
  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 2rem !important;
    padding-right: 0 !important;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item::before {
    left: 10px !important;
  }
}

/* Mobile Large */
@media (min-width: 576px) and (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  

  
  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 2rem !important;
    padding-right: 0 !important;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item::before {
    left: 10px !important;
  }
}

/* Mobile Small */
@media (max-width: 575px) {
  .hero-section {
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-desc {
    font-size: 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  

  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .navbar-brand {
    font-size: 1.3rem;
  }
  
  .navbar-nav {
    text-align: center;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 0;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .team-member {
    padding: 1.5rem;
  }
  
  .review-card {
    padding: 1.5rem;
  }
  
  .about-feature {
    padding: 1.5rem;
  }
  
  .price-plan-card {
    padding: 1.5rem;
  }
  
  .process-step {
    padding: 1.5rem;
  }
  
  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 1.5rem !important;
    padding-right: 0 !important;
  }
  
  .timeline::before {
    left: 15px;
  }
  
  .timeline-item::before {
    left: 5px !important;
  }
  
  .timeline-content {
    padding: 1.5rem;
  }
  
  .faq-question {
    padding: 1rem;
  }
  
  .faq-answer {
    padding: 1rem;
  }
  
  .feature-item {
    padding: 1.5rem;
  }
  
  .core-info-item {
    padding: 1.5rem;
  }
  
  .career-item {
    padding: 1.5rem;
  }
  
  .case-study-item {
    padding: 1.5rem;
  }
  
  .blog-content {
    padding: 1.5rem;
  }
  
  .price-plan-card.featured {
    transform: none;
  }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
  
  .price-plan-price {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .service-card {
    padding: 1rem;
  }
  
  .team-member {
    padding: 1rem;
  }
  
  .review-card {
    padding: 1rem;
  }
  
  .about-feature {
    padding: 1rem;
  }
  
  .price-plan-card {
    padding: 1rem;
  }
  
  .process-step {
    padding: 1rem;
  }
  
  .timeline-content {
    padding: 1rem;
  }
  
  .feature-item {
    padding: 1rem;
  }
  
  .core-info-item {
    padding: 1rem;
  }
  
  .career-item {
    padding: 1rem;
  }
  
  .case-study-item {
    padding: 1rem;
  }
  
  .blog-content {
    padding: 1rem;
  }
}

/* Print Styles */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .navbar,
  .footer,
  .contact-form,
  .btn {
    display: none !important;
  }
  
  .hero-section {
    background: white !important;
    color: black !important;
    min-height: auto !important;
  }
  
  .section {
    padding: 1rem 0 !important;
  }
  

  
  .service-card,
  .team-member,
  .review-card,
  .about-feature,
  .price-plan-card,
  .process-step,
  .feature-item,
  .core-info-item,
  .career-item,
  .case-study-item,
  .blog-item {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  
  img {
    max-width: 100% !important;
    height: auto !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #000080;
    --secondary-color: #800080;
    --accent-color: #800000;
    --text-primary: #000000;
    --text-secondary: #333333;
    --light-bg: #ffffff;
    --dark-bg: #000000;
  }
  
  .service-card,
  .team-member,
  .review-card,
  .about-feature,
  .price-plan-card,
  .process-step,
  .feature-item,
  .core-info-item,
  .career-item,
  .case-study-item,
  .blog-item {
    border: 2px solid #000000;
  }
  
  .btn-primary {
    background: #000080;
    border: 2px solid #000000;
  }
  
  .navbar {
    border-bottom: 2px solid #000000;
  }
}

/* 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;
  }
  
  .hero-section::before {
    animation: none !important;
  }
  
  .fade-in,
  .slide-in-left,
  .slide-in-right,
  .scale-in {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Dark Mode Support */

/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 600px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 2rem 0;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .service-card:hover,
  .team-member:hover,
  .review-card:hover,
  .about-feature:hover,
  .price-plan-card:hover,
  .process-step:hover,
  .feature-item:hover,
  .core-info-item:hover,
  .career-item:hover,
  .case-study-item:hover,
  .blog-item:hover {
    transform: none;
  }
  
  .btn {
    min-height: 44px;
    min-width: 44px;
  }
  
  .navbar-nav .nav-link {
    padding: 1rem 0.5rem;
  }
}

/* Specific Mobile Fixes */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }
  
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    margin-top: 1rem;
    padding: 1rem;
  }
  
  .footer-content {
    text-align: center;
  }
  
  .footer-section {
    margin-bottom: 2rem;
  }
  

  
  .faq-item {
    margin-bottom: 0.5rem;
  }
  
  .contact-form .form-control {
    padding: 0.75rem;
  }
  
  .btn-primary {
    padding: 0.75rem 1.5rem;
    width: 100%;
  }
}

/* Very Small Screens */
@media (max-width: 350px) {
  .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .hero-title {
    font-size: 1.3rem;
  }
  
  .section-title h2 {
    font-size: 1.3rem;
  }
  
  .service-price {
    font-size: 1.3rem;
  }
  
  .price-plan-price {
    font-size: 1.8rem;
  }
} 