/* VR Nature Relaxation App - Responsive Styles */

/* Mobile First Approach */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  #hero-title-1 {
    font-size: 2.75rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  #hero-title-1 {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .feature-card {
    padding: 2.5rem;
  }
  
  .service-card {
    padding: 2.5rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  #hero-title-1 {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .hero-section {
    padding: 0 2rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  #hero-title-1 {
    font-size: 4rem;
  }
}

/* Mobile specific styles */
@media (max-width: 767.98px) {
  /* Remove animations on mobile scroll as per requirements */
  .sal-animate {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  
  /* Hero adjustments */
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  #hero-title-1 {
    font-size: 2rem;
    text-align: center;
  }
  
  #hero-subtitle-1 {
    font-size: 1.1rem;
    text-align: center;
  }
  
  #hero-desc-1 {
    text-align: center;
    font-size: 1rem;
  }
  
  /* Section spacing */
  .section {
    padding: 2rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  /* Cards on mobile */
  .feature-card,
  .service-card,
  .pricing-card,
  .team-card,
  .review-card,
  .faq-card {
    margin-bottom: 2rem;
    padding: 1.5rem;
  }
  
  /* Pricing cards mobile */
  .pricing-card.featured {
    transform: none;
  }
  
  /* Contact form mobile */
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  /* Gallery mobile */
  .gallery-item {
    margin-bottom: 1rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  /* Team photos mobile */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  /* Service images mobile */
  .service-card img {
    height: 180px;
  }
  
  /* Navbar mobile adjustments */
  .navbar-collapse {
    background: rgba(255,255,255,0.95);
    border-radius: 10px;
    margin-top: 1rem;
    padding: 1rem;
  }
  
  .navbar-nav .nav-link {
    color: var(--sage-dark);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--sage-light);
  }
  
  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
  
  /* Footer mobile */
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer .col-md-3 {
    margin-bottom: 2rem;
  }
  
  /* Button adjustments mobile */
  .btn-primary {
    width: 100%;
    padding: 1rem;
  }
}

/* Tablet specific adjustments */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    padding: 2rem 0;
  }
  
  .feature-card,
  .service-card {
    margin-bottom: 2rem;
  }
  
  .pricing-card.featured {
    transform: scale(1.02);
  }
}

/* Large screen optimizations */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .hero-section {
    padding: 0 3rem;
  }
}

/* Print styles */
@media print {
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
  
  .navbar,
  .footer {
    display: none;
  }
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --primary-sage: #2d5a2d;
    --primary-lavender: #4d4d7d;
    --primary-mint: #1a7a1a;
    --primary-sky: #1a5a7d;
    --primary-coral: #7d1a1a;
  }
  
  .feature-card,
  .service-card,
  .pricing-card,
  .team-card,
  .review-card,
  .faq-card,
  .contact-form {
    border-width: 3px;
  }
}

/* Reduce motion media query implementation */
@media (prefers-reduced-motion: reduce) {
  .feature-card:hover,
  .service-card:hover,
  .pricing-card:hover,
  .team-card:hover,
  .gallery-item:hover,
  .navbar-nav .nav-link:hover,
  .btn-primary:hover {
    transform: none;
  }
  
  .sal-animate {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Focus management for accessibility */
.form-control:focus,
.btn:focus {
  outline: 3px solid var(--primary-sage);
  outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--sage-dark);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 9999;
}

.skip-link:focus {
  top: 6px;
}


body {
    overflow-x: hidden;
}

.hero-section h1 {
    padding-top: 275px;
}