/* VR Dance Academy - Responsive CSS */

/* Mobile First Approach */

/* Extra Small Devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  /* No animations on mobile as per requirements */
  [data-sal] {
    transform: none !important;
    opacity: 1 !important;
  }
  
  /* Hero adjustments */
  #hero {
    padding-top: 80px;
    min-height: 100vh;
  }
  
  #hero h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  #hero h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  #hero p {
    font-size: 0.9rem;
  }
  
  /* Card spacing */
  .card {
    margin-bottom: 1.5rem;
  }
  
  /* Team images */
  #team img {
    width: 120px !important;
    height: 120px !important;
  }
  
  /* Process steps */
  .bg-primary.rounded-circle {
    width: 50px !important;
    height: 50px !important;
  }
  
  .bg-primary.rounded-circle span {
    font-size: 1.2rem !important;
  }
  
  /* Gallery grid */
  #gallery .col-md-4 {
    margin-bottom: 1rem;
  }
  
  /* Contact form */
  #contact .form-control {
    margin-bottom: 1rem;
  }
  
  /* Footer adjustments */
  #footer .col-md-4 {
    margin-bottom: 2rem;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  #hero h1 {
    font-size: 2rem;
  }
  
  #hero h2 {
    font-size: 1.5rem;
  }
  
  .card-columns {
    column-count: 2;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  #hero h1 {
    font-size: 2.25rem;
  }
  
  #hero h2 {
    font-size: 1.75rem;
  }
  
  /* Services grid adjustments */
  #services .col-md-6 {
    margin-bottom: 2rem;
  }
  
  /* Team layout */
  #team .col-md-6 {
    margin-bottom: 2rem;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
  /* Full desktop styles already defined in main.css */
  
  /* Enhanced hover effects for desktop */
  .card:hover {
    transform: translateY(-8px);
  }
  
  #gallery img:hover {
    transform: scale(1.08);
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  #hero h1 {
    font-size: 3rem;
  }
  
  #hero h2 {
    font-size: 2.25rem;
  }
}

/* Print Styles */
@media print {
  #header,
  #footer,
  .btn,
  [data-sal] {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    overflow-x: hidden;
}
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --primary-purple: #4C1D95;
    --primary-blue: #1E3A8A;
    --primary-pink: #9D174D;
    --primary-green: #064E3B;
    --primary-orange: #92400E;
  }
}

/* Dark Mode Support */

/* Focus Styles for Accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
  outline: 2px solid var(--primary-purple);
  outline-offset: 2px;
}

/* Skip to Content Link */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-purple);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: var(--border-radius);
  z-index: 9999;
}

.skip-to-content:focus {
  top: 6px;
} 