/* Responsive Styles for Voice-Controlled Workout Mirror Template */
/* Mobile-First Approach with Bootstrap 5 Grid */

/* No animations on mobile - per requirements */
@media (max-width: 768px) {
  .sal-animate,
  [data-sal] {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  
  .hero-decorative {
    display: none;
  }
}

/* Extra Small Devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-section {
    padding-top: 2rem;
    min-height: auto;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .contact-form {
    padding: 2rem 1rem;
  }
  
  .team-card img {
    height: 250px;
  }
  
  .pricing-card {
    margin-bottom: 2rem;
  }
  
  .process-step::before {
    display: none;
  }
  
  .timeline-item {
    padding-left: 2rem;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    padding-top: 1rem;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-card img {
    height: 280px;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .team-card img {
    height: 320px;
  }
  
  .gallery-item img {
    height: 300px;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .team-card img {
    height: 350px;
  }
  
  .service-card:hover {
    transform: translateY(-8px);
  }
  
  .pricing-card:hover {
    transform: scale(1.03);
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-section {
    padding: 0;
  }
  
  .team-card img {
    height: 400px;
  }
  
  .gallery-item img {
    height: 350px;
  }
}

/* Navigation Responsive */
@media (max-width: 991.98px) {
  .navbar-nav {
    text-align: center;
    padding-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 0;
  }
}

/* Footer Responsive */
@media (max-width: 767.98px) {
  footer .row > div {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  footer .row > div:last-child {
    margin-bottom: 0;
  }
}

/* Form Responsive */
@media (max-width: 575.98px) {
  .contact-form .row .col-md-6 {
    margin-bottom: 1rem;
  }
}

/* Cards Grid Responsive */
@media (max-width: 767.98px) {
  .service-card,
  .feature-card,
  .review-card,
  .pricing-card,
  .coreinfo-card {
    margin-bottom: 2rem;
  }
}

/* Blog Grid Responsive */
@media (max-width: 991.98px) {
  .blog-card {
    margin-bottom: 2rem;
  }
}

/* Timeline Responsive */
@media (max-width: 575.98px) {
  .timeline-item::before {
    left: -1rem;
  }
  
  .timeline-item::after {
    left: -1.375rem;
  }
  
  .timeline-item {
    padding-left: 1rem;
  }
}

/* Process Steps Responsive */
@media (max-width: 767.98px) {
  .process-step {
    margin-bottom: 3rem;
  }
  
  .step-number {
    margin-bottom: 1.5rem;
  }
}

/* Gallery Responsive */
@media (max-width: 575.98px) {
  .gallery-item {
    margin-bottom: 1.5rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
}

/* Career Cards Responsive */
@media (max-width: 767.98px) {
  .career-card {
    margin-bottom: 1.5rem;
  }
}

/* FAQ Responsive */
@media (max-width: 575.98px) {
  .faq-card {
    margin-bottom: 1.5rem;
  }
}

/* Text Sizing for Small Screens */
@media (max-width: 575.98px) {
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  p {
    font-size: 0.9rem;
  }
}

/* Button Responsive */
@media (max-width: 575.98px) {
  .btn-primary-custom {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Hide decorative elements on small screens */
@media (max-width: 991.98px) {
  .hero-decorative {
    display: none;
  }
}

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