/* Virtual Reality Dance Lessons - Responsive CSS */
/* Mobile-First Responsive Design */

/* Extra Small Devices (Portrait Phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 90vh;
    padding: 1rem 0;
  }
  
  .hero-section h1 {
    font-size: 1.75rem;
  }
  
  .hero-section p {
    font-size: 0.875rem;
  }
  
  .section-padding {
    padding: 1.5rem 0;
  }
  
  .service-card,
  .price-card,
  .team-card,
  .review-card {
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .navbar {
    padding: 0.5rem 0;
  }
  
  .navbar-brand {
    font-size: 1.125rem !important;
  }
  
  /* NO ANIMATIONS ON MOBILE */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  .service-card:hover,
  .team-card:hover,
  .casestudy-card:hover,
  .career-card:hover,
  .coreinfo-card:hover,
  .blog-card:hover {
    transform: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
}

/* Small Devices (Landscape Phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 95vh;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .contact-form {
    padding: 2.5rem 2rem;
  }
  
  /* Reduced animations on small screens */
  @media (prefers-reduced-motion: no-preference) {
    .service-card:hover,
    .team-card:hover {
      transform: translateY(-3px);
    }
  }
}

/* Medium Devices (Tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .service-card,
  .price-card {
    margin-bottom: 2rem;
  }
  
  .price-card.featured {
    transform: scale(1.02);
  }
}

/* Large Devices (Desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
  
  /* Full animations on desktop */
  .price-card.featured {
    transform: scale(1.05);
  }
}

/* Extra Large Devices (Large Desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .section-padding {
    padding: 5rem 0;
  }
}

/* Ultra Wide Screens (1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .hero-section {
    padding: 2rem 0;
  }
}

/* Portrait vs Landscape */
@media (orientation: portrait) and (max-width: 768px) {
  .hero-section {
    text-align: center;
  }
  
  .hero-section .row {
    flex-direction: column;
  }
  
  .gallery-item {
    height: 200px;
  }
}

@media (orientation: landscape) and (max-height: 600px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .service-icon,
  .feature-icon,
  .team-photo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Dark Mode Support */

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .hero-section::before {
    animation: none;
  }
  
  .shape-blob {
    animation: none;
  }
  
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .shape-blob {
    display: none;
  }
  
  .hero-section {
    min-height: auto;
    padding: 1rem 0;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
  
  .service-card,
  .price-card,
  .team-card,
  .review-card {
    box-shadow: none;
    border: 1px solid #ccc;
    margin-bottom: 1rem;
  }
  
  body {
    color: black;
    overflow-x: hidden;
}
}


.hero-content {
    padding-top: 150px;
}