/* VR Nature Relaxation App - Responsive Styles */

/* Mobile First - Base styles for mobile devices */
@media (max-width: 575.98px) {
  /* Typography adjustments for mobile */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.25rem; }
  h5 { font-size: 1.1rem; }
  h6 { font-size: 1rem; }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  /* Section padding adjustments */
  section {
    padding: 2rem 0;
  }
  
  #hero {
    min-height: 80vh;
    text-align: center;
  }
  
  /* Remove hover effects and animations on mobile */
  .card:hover {
    transform: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .btn:hover {
    transform: none;
  }
  
  .gallery-item:hover img {
    transform: none;
  }
  
  /* Disable all transitions on mobile for performance */
  * {
    transition: none !important;
    animation: none !important;
  }
  
  /* Card adjustments */
  .service-card,
  .feature-card,
  .price-card,
  .team-card,
  .review-card,
  .casestudy-card,
  .process-item,
  .timeline-item,
  .career-card,
  .coreinfo-card,
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  /* Gallery adjustments */
  .gallery-item img {
    height: 200px;
  }
  
  /* Hero shapes hidden on mobile */
  .hero-shape {
    display: none;
  }
  
  /* Team images smaller on mobile */
  .team-card img {
    width: 100px;
    height: 100px;
  }
  
  /* Service images smaller on mobile */
  .service-card img {
    width: 60px;
    height: 60px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .container-sm {
    max-width: 540px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  section {
    padding: 3rem 0;
  }
  
  #hero {
    min-height: 90vh;
  }
  
  .gallery-item img {
    height: 220px;
  }
  
  /* Re-enable some subtle effects on tablets */
  .card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  section {
    padding: 4rem 0;
  }
  
  #hero {
    min-height: 100vh;
  }
  
  .gallery-item img {
    height: 250px;
  }
  
  /* Full effects on desktop */
  .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }
  
  .btn {
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    transform: translateY(-2px);
  }
  
  .gallery-item img {
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  /* Show hero shapes on desktop */
  .hero-shape {
    display: block;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container-xl {
    max-width: 1140px;
  }
  
  /* Larger hero shapes on very large screens */
  .hero-shape-1 {
    width: 250px;
    height: 250px;
  }
  
  .hero-shape-2 {
    width: 180px;
    height: 180px;
  }
}

/* Extra extra large devices (1400px and up) */
@media (min-width: 1400px) {
  .container-xxl {
    max-width: 1320px;
  }
}

/* Print styles */
@media print {
  .navbar,
  .btn,
  #footer {
    display: none !important;
  }
  
  section {
    page-break-inside: avoid;
    padding: 1rem 0;
  }
  
  .card {
    box-shadow: none;
    border: 1px solid #dee2e6;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    overflow-x: hidden;
}
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .card {
    border: 2px solid var(--dark-gray);
  }
  
  .btn-primary {
    border: 2px solid var(--dark-gray);
  }
  
  .btn-outline-primary {
    border: 2px solid var(--dark-gray);
  }
}

/* Reduced motion - comprehensive coverage */
@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;
  }
  
  .card:hover {
    transform: none !important;
  }
  
  .btn:hover {
    transform: none !important;
  }
  
  .gallery-item:hover img {
    transform: none !important;
  }
  
  .price-card.featured {
    transform: none !important;
  }
  
  .hero-shape {
    display: none !important;
  }
}

/* Dark mode support */

.hero-content {
    padding-top: 175px;
}