/* =====================================
   MURAL ARTIST BOOKING PLATFORM - RESPONSIVE CSS
   ===================================== */

/* Extra Large Devices (1400px and up) */
@media (min-width: 1400px) {
  .hero-content h1 {
    font-size: 3.59rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .service-card {
    padding: 2.5rem;
  }
}

/* Large Devices (1200px and up) */
@media (min-width: 1200px) {
  .hero-section {
    padding: 0 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

/* Medium Devices (992px and up) */
@media (min-width: 992px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .section {
    padding: 100px 0;
  }
  
  .service-card .service-icon {
    width: 90px;
    height: 90px;
  }
  
  .team-card .team-image {
    height: 280px;
  }
}

/* Small Devices (768px and up) */
@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 2.57rem;
  }
  
  .section-title {
    font-size: 2.57rem;
  }
  
  .navbar-brand {
    font-size: 1.91rem;
  }
  
  .contact-form {
    padding: 2.5rem;
  }
  
  .footer {
    padding: 4rem 0 1.5rem;
  }
}

/* Extra Small Devices (576px and down) */
@media (max-width: 576px) {
  /* DISABLE ALL ANIMATIONS AND TRANSITIONS */
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
  
  /* Disable all transforms on hover */
  .btn-primary-custom:hover,
  .btn-outline-custom:hover,
  .card-custom:hover,
  .service-card:hover,
  .team-card:hover,
  .gallery-item:hover,
  .gallery-item:hover img,
  .social-link:hover {
    transform: none !important;
  }
  
  /* Disable all box-shadow changes on hover */
  .btn-primary-custom:hover,
  .card-custom:hover,
  .service-card:hover,
  .gallery-item:hover {
    box-shadow: var(--shadow-sm) !important;
  }
  
  /* Disable hero background animation */
  .hero-section::before {
    animation: none !important;
  }
  
  /* Disable all scale effects */
  .gallery-item:hover {
    transform: none !important;
    scale: 1 !important;
  }
  
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    padding-top: 20px; /* Added padding top for text */
  }
  
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.70rem;
    padding-top: 10px; /* Added padding top for text */
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    padding-top: 15px; /* Added padding top for text */
  }
  
  .section-subtitle {
    font-size: 1.17rem;
    padding-top: 10px; /* Added padding top for text */
  }
  
  .section-description {
    font-size: 1.00rem;
    margin-bottom: 2rem;
    padding-top: 8px; /* Added padding top for text */
  }
  
  .navbar-brand {
    font-size: 1.52rem;
  }
  
  .btn-primary-custom,
  .btn-outline-custom {
    padding: 10px 20px;
    font-size: 1.06rem;
  }
  
  .service-card {
    padding: 1.5rem;
    margin-bottom: 1.68rem;
  }
  
  .service-card .service-icon {
    width: 70px;
    height: 70px;
    font-size: 1.57rem;
  }
  
  .service-card h3 {
    font-size: 1.42rem;
    padding-top: 12px; /* Added padding top for text */
  }
  
  .service-price {
    font-size: 1.65rem;
    padding-top: 8px; /* Added padding top for text */
  }
  
  .team-card .team-image {
    height: 200px;
  }
  
  .team-card .team-info {
    padding: 1rem;
    padding-top: 1.5rem; /* Added padding top for text */
  }
  
  .team-card h4 {
    font-size: 1.26rem;
    padding-top: 10px; /* Added padding top for text */
  }
  
  .review-card {
    padding: 1.5rem;
    margin-bottom: 1.74rem;
  }
  
  .review-card .review-text {
    font-size: 1rem;
    padding-top: 10px; /* Added padding top for text */
  }
  
  .faq-card .faq-question {
    padding: 1rem;
    padding-top: 1.5rem; /* Added padding top for text */
    font-size: 1rem;
  }
  
  .faq-card .faq-answer {
    padding: 1rem;
    padding-top: 1.2rem; /* Added padding top for text */
    font-size: 1.07rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .contact-form .form-control {
    padding: 0.6rem 0.8rem;
  }
  
  .footer {
    padding: 2.5rem 0 1rem;
  }
  
  .footer h5 {
    font-size: 1.13rem;
  }
  
  .card-custom .card-body {
    padding: 1.5rem;
  }
  
  .card-custom .card-header {
    padding: 1rem;
  }
  
  /* Hide decorative shapes on mobile */
  .decorative-shape {
    display: none;
  }
}

/* Very Small Devices (480px and down) */
@media (max-width: 480px) {
  /* DISABLE ALL ANIMATIONS AND TRANSITIONS */
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
  
  /* Disable all transforms on hover */
  .btn-primary-custom:hover,
  .btn-outline-custom:hover,
  .card-custom:hover,
  .service-card:hover,
  .team-card:hover,
  .gallery-item:hover,
  .gallery-item:hover img,
  .social-link:hover {
    transform: none !important;
  }
  
  /* Disable all box-shadow changes on hover */
  .btn-primary-custom:hover,
  .card-custom:hover,
  .service-card:hover,
  .gallery-item:hover {
    box-shadow: var(--shadow-sm) !important;
  }
  
  /* Disable hero background animation */
  .hero-section::before {
    animation: none !important;
  }
  
  .hero-content h1 {
    font-size: 1.92rem;
    padding-top: 20px; /* Added padding top for text */
  }
  
  .section-title {
    font-size: 1.91rem;
    padding-top: 15px; /* Added padding top for text */
  }
  
  .navbar-brand {
    font-size: 1.31rem;
  }
  
  .service-card {
    padding: 1rem;
  }
  
  .service-card .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.43rem;
  }
  
  .service-card h3 {
    font-size: 1.30rem;
    padding-top: 12px; /* Added padding top for text */
  }
  
  .service-price {
    font-size: 1.39rem;
    padding-top: 8px; /* Added padding top for text */
  }
  
  .team-card .team-image {
    height: 180px;
  }
  
  .review-card {
    padding: 1rem;
  }
  
  .faq-card .faq-question,
  .faq-card .faq-answer {
    padding: 0.8rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .gallery-item img {
    height: 180px;
  }
}

/* Tablet Landscape (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.45rem;
  }
  
  .section-title {
    font-size: 2.33rem;
  }
  
  .service-card {
    padding: 1.8rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
  }
  
  .gallery-item img {
    height: 220px;
  }
  
  .team-card .team-image {
    height: 240px;
  }
}

/* Mobile Landscape (480px - 768px) */
@media (min-width: 480px) and (max-width: 768px) {
  /* DISABLE ALL ANIMATIONS AND TRANSITIONS */
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
  
  /* Disable all transforms on hover */
  .btn-primary-custom:hover,
  .btn-outline-custom:hover,
  .card-custom:hover,
  .service-card:hover,
  .team-card:hover,
  .gallery-item:hover,
  .gallery-item:hover img,
  .social-link:hover {
    transform: none !important;
  }
  
  /* Disable all box-shadow changes on hover */
  .btn-primary-custom:hover,
  .card-custom:hover,
  .service-card:hover,
  .gallery-item:hover {
    box-shadow: var(--shadow-sm) !important;
  }
  
  /* Disable hero background animation */
  .hero-section::before {
    animation: none !important;
  }
  
  .hero-section {
    min-height: 75vh;
  }
  
  .hero-content h1 {
    font-size: 2.27rem;
    padding-top: 18px; /* Added padding top for text */
  }
  
  .section-title {
    font-size: 2.26rem;
    padding-top: 15px; /* Added padding top for text */
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .gallery-item img {
    height: 190px;
  }
}

/* Navigation Responsive */
@media (max-width: 992px) {
  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  .navbar-collapse {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    margin-top: 1rem;
    padding: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
  }
  
  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
}

/* Print Styles */
@media print {
  .hero-section,
  .navbar,
  .footer {
    display: none;
  }
  
  .section {
    padding: 20px 0;
  }
  
  .card-custom {
    box-shadow: none;
    border: 1px solid var(--light-gray);
  }
  
  .service-card,
  .team-card,
  .review-card,
  .faq-card {
    box-shadow: none;
    border: 1px solid var(--light-gray);
    margin-bottom: 1rem;
  }
  
  .gallery-item {
    box-shadow: none;
  }
  
  .gallery-item:hover {
    transform: none;
  }
  
  .btn-primary-custom,
  .btn-outline-custom {
    border: 1px solid var(--dark-gray);
    color: var(--dark-gray);
    background: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --primary-1: #2700ef;
    --primary-2: #620069;
    --primary-3: #f62300;
    --primary-4: #ff9b00;
    --primary-5: #016f00;
    --dark-gray: #000000;
    --medium-gray: #575555;
  }
  
  .service-card,
  .team-card,
  .review-card,
  .faq-card {
    border: 2px solid var(--dark-gray);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .hero-section::before {
    animation: none;
  }
  
  .gallery-item:hover {
    transform: none;
  }
  
  .gallery-item:hover img {
    transform: none;
  }
  
  .service-card:hover,
  .team-card:hover,
  .card-custom:hover {
    transform: none;
  }
  
  .btn-primary-custom:hover {
    transform: none;
  }
}

/* Focus Styles for Accessibility */
@media (prefers-reduced-motion: no-preference) {
  .btn-primary-custom:focus,
  .btn-outline-custom:focus {
    outline: 2px solid var(--primary-1);
    outline-offset: 2px;
  }
  
  .form-control:focus {
    outline: 2px solid var(--primary-1);
    outline-offset: 2px;
  }
  
  .nav-link:focus {
    outline: 2px solid var(--primary-1);
    outline-offset: 2px;
  }
} 