/* AR City Explorer - Responsive CSS */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
}

/* Desktop (992px and up) */
@media (min-width: 992px) {
  .hero-content {
    padding-right: 2rem;
    padding-top: 275px;
}
  
  .features-content {
    padding-right: 2rem;
  }
}

/* Tablet (768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .team-member {
    margin-bottom: 2rem;
  }
  
  .timeline-item {
    width: 80%;
    margin-bottom: 1.5rem;
  }
  
  .contact-item {
    margin-bottom: 1.5rem;
  }
  
  .app-buttons {
    justify-content: center;
  }
  
  .gallery-item img {
    height: 150px;
  }
}

/* Mobile (576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 70vh;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-cta .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .feature-card,
  .service-card,
  .review-card,
  .case-study-card,
  .blog-card {
    margin-bottom: 2rem;
  }
  
  .process-step {
    margin-bottom: 1.5rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .price-card.featured {
    transform: none;
    margin-bottom: 2rem;
  }
  
  .timeline::after {
    left: 20px;
  }
  
  .timeline-item {
    width: calc(100% - 50px);
    left: 50px !important;
    margin-bottom: 1.5rem;
  }
  
  .timeline-item::after {
    left: -10px !important;
  }
  
  .contact-form {
    margin-bottom: 2rem;
  }
  
  .gallery-item img {
    height: 120px;
  }
  
  .footer-section .row > div {
    margin-bottom: 2rem;
  }
  
  .app-buttons {
    justify-content: center;
    gap: 1rem;
  }
}

/* Small Mobile (up to 575.98px) */
@media (max-width: 575.98px) {
  /* No animations on small mobile - but keep essential transitions */
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  
  /* Keep essential transitions for user experience */
  .btn, .nav-link, .gallery-item {
    transition: all 0.2s ease !important;
  }
  
  .navbar-brand {
    font-size: 1.1rem !important;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem;
    margin: 0.25rem 0;
  }
  
  .hero-section {
    min-height: 60vh;
    text-align: center;
    padding: 1rem 0;
  }
  
  .hero-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-cta .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.75rem;
    padding: 0.75rem 1rem;
  }
  
  .hero-decorative-shapes {
    display: none;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .section-description {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  
  .page-section {
    padding: 3rem 0;
  }
  
  /* Card spacing */
  .feature-card,
  .service-card,
  .review-card,
  .case-study-card,
  .blog-card,
  .price-card,
  .career-card,
  .info-card,
  .faq-card {
    margin-bottom: 1.5rem;
  }
  
  .feature-card,
  .info-card {
    padding: 1.5rem 1rem;
  }
  
  .service-content,
  .case-content,
  .blog-content {
    padding: 1.25rem;
  }
  
  .price-card {
    padding: 1.5rem;
  }
  
  .price-card.featured {
    transform: none;
    border: 2px solid var(--primary-color);
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  /* Process steps */
  .process-step {
    margin-bottom: 1.25rem;
    padding: 1.25rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Team members */
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  .team-name {
    font-size: 1rem;
  }
  
  .team-role {
    font-size: 0.8rem;
  }
  
  /* Timeline */
  .timeline::after {
    left: 15px;
  }
  
  .timeline-item {
    width: calc(100% - 40px);
    left: 40px !important;
    margin-bottom: 1.25rem;
    padding: 1rem;
  }
  
  .timeline-item::after {
    left: -10px !important;
    width: 15px;
    height: 15px;
    top: 1rem;
  }
  
  /* Features for additional pages */
  .feature-highlight,
  .experience-card,
  .personalization-item,
  .accessibility-feature,
  .future-feature,
  .tech-stack-item,
  .rendering-feature,
  .spatial-tech,
  .cms-feature,
  .performance-metric {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }
  
  .feature-icon-small {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  /* Contact section */
  .contact-form {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }
  
  .contact-item i {
    margin-right: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  
  /* Gallery */
  .gallery-item img {
    height: 100px;
  }
  
  /* Footer */
  .footer-section {
    padding: 3rem 0 2rem;
  }
  
  .footer-section .row > div {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .footer-brand {
    font-size: 1.25rem;
  }
  
  .footer-desc {
    font-size: 0.9rem;
  }
  
  .app-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .app-badge {
    width: 130px;
  }
  
  .footer-divider {
    margin: 1.5rem 0 1rem;
  }
  
  .footer-copyright,
  .footer-disclaimer {
    text-align: center !important;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }
  
  /* Breadcrumb */
  .breadcrumb-nav {
    padding: 0.75rem 0;
  }
  
  .breadcrumb-image {
    height: 25px;
  }
  
  /* Button adjustments */
  .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

/* Extra Small Mobile (up to 360px) */
@media (max-width: 360px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 1.35rem;
  }
  
  .feature-card,
  .service-card,
  .price-card,
  .review-card {
    padding: 1rem;
  }
  
  .service-content,
  .case-content,
  .blog-content {
    padding: 1rem;
  }
  
  .price-amount {
    font-size: 1.75rem;
  }
  
  .team-photo {
    width: 70px;
    height: 70px;
  }
  
  .contact-form {
    padding: 1.25rem;
  }
  
  .footer-brand {
    font-size: 1.1rem;
  }
  
  .app-badge {
    width: 120px;
  }
}

/* Landscape mobile orientation */
@media (max-width: 767.98px) and (orientation: landscape) {
  .hero-section {
    min-height: 80vh;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .page-section {
    padding: 2.5rem 0;
  }
}

/* High resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-image img,
  .service-image,
  .case-image,
  .blog-image,
  .team-photo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Dark mode support (if user prefers dark scheme) */

/* Print styles */
@media print {
  .navbar,
  .hero-decorative-shapes,
  .btn,
  .contact-form {
    display: none !important;
  }
  
  .gallery-section {
    display: block !important;
  }
  
  .gallery-item {
    display: block !important;
    page-break-inside: avoid;
  }
  
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .page-section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  .section-title {
    page-break-after: avoid;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    overflow-x: hidden;
}
  
  .hero-title {
    font-size: 24pt;
  }
  
  .section-title {
    font-size: 18pt;
  }
} 