/* ===================================
   Responsive Styles
   =================================== */

/* Extra Large Devices */
@media (max-width: 1400px) {
  .hero-title {
    font-size: 5rem;
  }

  .hero-subtitle {
    font-size: 3.5rem;
  }
}

/* Large Devices */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1.25rem;
  }
}

/* Medium Devices (Tablets) */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .carousel-img {
    height: 400px;
  }

  .app-content {
    text-align: center !important;
    margin-top: var(--spacing-md);
  }

  .download-buttons {
    justify-content: center !important;
  }
}

/* Small Devices (Mobile Landscape) */
@media (max-width: 768px) {
  :root {
    --font-size-hero: 2rem;
    --font-size-subtitle: 1.75rem;
  }

  .options .option .label {
    padding: 20px;
    bottom: 0;
  }

  .app-bg {
    padding: 20px;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }

  .hero-content {
    margin-top: -100px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .thumbnail-card {
    width: 150px;
  }

  .thumbnail-text {
    font-size: 0.8rem;
    padding: 10px;
  }

  .carousel-img {
    height: 300px;
  }

  .carousel-caption-custom {
    padding: 20px 15px 15px;
  }

  .carousel-caption-custom h3 {
    font-size: 1.5rem;
  }

  .carousel-caption-custom p {
    font-size: 0.9rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  .partners-container {
    padding: 30px 20px;
    gap: 50px;
    flex-direction: column;
  }

  .app-content h2 {
    font-size: 50.772px;
  }

  .download-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .download-buttons-box {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: stretch;
  }

  .download-btn {
    justify-content: center;
  }

  .footer-links {
    flex-wrap: nowrap;
  }

  .social-icons {
    flex-direction: column !important;
  }

  .tab-btn {
    font-size: 1rem;
    padding: 8px 20px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .language-switcher,
  .social-icons,
  .download-buttons,
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }

  body {
    background-color: white;
    color: black;
  }

  .hero-section,
  .journey-section,
  .app-section {
    background: white !important;
    color: black !important;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
