/* Responsive CSS for Upcycled Denim Accessories Store Template */

/* Mobile First Approach - Base styles are for mobile */

/* Extra small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  /* Disable all animations on mobile */
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  p {
    font-size: 0.95rem;
  }
  
  /* Navigation */
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
  
  /* Sections */
  section {
    padding: 3rem 0;
  }
  
  /* Hero Section */
  .hero-section {
    min-height: 90vh;
    text-align: center;
  }
  
  .hero-decorative {
    display: none;
  }
  
  /* Cards */
  .service-card,
  .feature-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .process-card,
  .timeline-card,
  .career-card,
  .core-card,
  .blog-card,
  .faq-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  /* Remove hover effects on mobile */
  .service-card:hover,
  .feature-card:hover,
  .price-card:hover,
  .team-card:hover,
  .review-card:hover,
  .case-card:hover,
  .process-card:hover,
  .timeline-card:hover,
  .career-card:hover,
  .core-card:hover,
  .blog-card:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(18, 25, 32, 0.10);
  }
  
  /* Price Cards */
  .price-card.featured {
    transform: none;
  }
  
  .price-value {
    font-size: 2rem;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 2rem;
  }
  
  /* Gallery adjustments */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .gallery-item:hover img {
    transform: none;
  }
  
  /* Team photos */
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Service price */
  .service-price {
    font-size: 1.3rem;
  }
  
  /* Button adjustments */
  .btn-primary:hover {
    transform: none;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Disable animations on small screens too */
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-form {
    padding: 2.5rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  section {
    padding: 5rem 0;
  }
  
  .hero-section {
    min-height: 95vh;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  /* Full animations enabled on desktop */
  .hero-section {
    min-height: 100vh;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  section {
    padding: 6rem 0;
  }
}

/* Container adjustments for mobile */
@media (max-width: 767.98px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Utility classes for responsive behavior */
.mobile-center {
  text-align: center;
}

@media (min-width: 768px) {
  .mobile-center {
    text-align: left;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .gallery-item {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #000;
    page-break-after: avoid;
  }
  
  section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
} 

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