/* Leipzig Lifelong Learning Fair - Responsive CSS */

/* Tablet styles */
@media (max-width: 992px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section .lead {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  .navbar-brand {
    font-size: 1.1rem !important;
  }
  
  /* Hero section mobile */
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero-section .lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  /* Hide decorative blobs on mobile */
  .blob-shape {
    display: none;
  }
  
  /* Section spacing */
  .section {
    padding: 40px 0;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  /* Cards and components */
  .service-card,
  .feature-box,
  .price-card,
  .team-member,
  .testimonial-card,
  .career-card,
  .case-card,
  .info-card,
  .timeline-item {
    margin-bottom: 1.5rem;
  }
  
  .service-card,
  .contact-form {
    padding: 1.5rem;
  }
  
  .price-card {
    padding: 2rem 1.5rem;
  }
  
  /* Team photos smaller on mobile */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  /* Gallery grid mobile */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  /* Process steps mobile */
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  /* Price amount smaller */
  .price-amount {
    font-size: 2.5rem;
  }
  
  /* FAQ mobile */
  .faq-question,
  .faq-answer {
    padding: 1rem;
  }
  
  /* Footer mobile */
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  /* Form adjustments */
  .form-control {
    padding: 0.75rem;
  }
  
  .btn-primary {
    padding: 0.75rem 1.5rem;
    width: 100%;
  }
  
  /* Navbar mobile */
  .navbar-nav {
    text-align: center;
  }
  
  .navbar-nav .nav-link {
  font-size: 12px !important;
    margin: 5px 0;
  }
  
  /* Swiper mobile specific */
  .swiper-container {
    /* Disable autoplay and effects on mobile as per requirements */
  }
  
  .swiper-slide {
    /* Ensure slides work properly on mobile */
  }
}

/* Small mobile styles */
@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 1.75rem;
  }
  
  .hero-section .lead {
    font-size: 0.95rem;
  }
  
  .section {
    padding: 30px 0;
  }
  
  .service-card,
  .contact-form {
    padding: 1rem;
  }
  
  .price-card {
    padding: 1.5rem 1rem;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .gallery-item img {
    height: 180px;
  }
  
  /* Feature icons smaller */
  .feature-icon,
  .info-icon {
    font-size: 2.5rem;
  }
  
  /* Container padding adjustments */
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
  }
  
  .section {
    padding: 50px 0;
  }
}

/* High DPI displays */
@media (min-resolution: 2dppx) {
  .service-image,
  .team-photo,
  .blog-image,
  .gallery-item img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .swiper-container {
    display: none !important;
  }
  
  .section {
    padding: 20px 0;
    page-break-inside: avoid;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
} 