/* Virtual Reality Art Exhibitions - Responsive CSS */

/* Tablet Styles */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: 70vh;
    text-align: center;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .gallery-img {
    height: 250px;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

/* Mobile Styles */
@media (max-width: 767.98px) {
  /* No animations on mobile as per rules */
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  /* Override hover effects on mobile */
  .feature-card:hover,
  .service-card:hover,
  .price-card:hover,
  .team-card:hover,
  .case-card:hover,
  .career-card:hover,
  .blog-card:hover,
  .gallery-img:hover {
    transform: none !important;
  }
  
  .hero-section {
    min-height: 60vh;
    padding: 2rem 0;
  }
  
  .hero-section::before,
  .hero-section::after {
    display: none;
  }
  
  h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  p {
    font-size: 0.9rem;
  }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  .section-padding {
    padding: 40px 0;
  }
  
  /* Card adjustments */
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .career-card,
  .info-card,
  .blog-card,
  .faq-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  /* Team section */
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  /* Gallery */
  .gallery-img {
    height: 200px;
    margin-bottom: 1rem;
  }
  
  /* Price section */
  .price {
    font-size: 2rem;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
  
  /* Step numbers */
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Icons */
  .feature-card .fa,
  .info-icon {
    font-size: 2rem;
  }
  
  /* Timeline adjustments */
  .timeline-item {
    padding: 1.5rem;
    border-left-width: 3px;
  }
  
  /* Footer adjustments */
  .footer {
    padding: 40px 0 20px;
    text-align: center;
  }
  
  .footer .row > div {
    margin-bottom: 2rem;
  }
  
  /* Form adjustments */
  .form-control {
    padding: 0.6rem 0.8rem;
    margin-bottom: 1rem;
  }
  
  .btn-primary {
    padding: 0.6rem 1.5rem;
    width: 100%;
  }
  
  /* Breadcrumb */
  .breadcrumb-section {
    padding: 1.5rem 0;
  }
  
  .breadcrumb-img {
    width: 30px;
    height: 30px;
  }
}

/* Small Mobile Styles */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 50vh;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.3rem;
  }
  
  h3 {
    font-size: 1.1rem;
  }
  
  .section-padding {
    padding: 30px 0;
  }
  
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .career-card,
  .info-card,
  .blog-card,
  .faq-card {
    padding: 1rem;
  }
  
  .contact-form {
    padding: 1rem;
    margin: 0.5rem;
  }
  
  .gallery-img {
    height: 180px;
  }
  
  .team-photo {
    width: 70px;
    height: 70px;
  }
  
  .price {
    font-size: 1.75rem;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .footer {
    padding: 30px 0 15px;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  h1 {
    font-size: 1.3rem;
  }
  
  h2 {
    font-size: 1.2rem;
  }
  
  .section-padding {
    padding: 25px 0;
  }
  
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .career-card,
  .info-card,
  .blog-card,
  .faq-card {
    padding: 0.75rem;
  }
  
  .contact-form {
    padding: 0.75rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .breadcrumb-section {
    display: none;
  }
  
  .hero-section {
    min-height: auto;
    background: white;
    color: black;
  }
  
  .section-padding {
    padding: 20px 0;
  }
  
  .card {
    border: 1px solid #ddd;
    box-shadow: none;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
}


body {
    overflow-x: hidden;
}

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