/* Remote Work Productivity Software Template - Responsive CSS */

/* Mobile First Approach */

/* Extra Small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .custom-card {
    padding: 1.5rem;
  }
  
  .price-card {
    padding: 2rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section h1 {
    font-size: 2.58rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section h1 {
    font-size: 2.82rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Navigation Responsive */
@media (max-width: 991.98px) {
  .navbar-nav {
    text-align: center;
    padding-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 0;
  }
}

/* Hero Section Responsive */
@media (max-width: 768px) {
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    text-align: center;
    padding: 2rem 0;
  }
  
  .hero-shape {
    display: none;
  }
}

/* Services Grid Responsive */
@media (max-width: 575.98px) {
  .services-grid .col-md-4 {
    margin-bottom: 2rem;
  }
}

/* Price Plans Responsive */
@media (max-width: 768px) {
  .price-card.featured {
    transform: none;
    margin-bottom: 2rem;
  }
  
  .price-card:hover {
    transform: none;
  }
}

/* Team Section Responsive */
@media (max-width: 768px) {
  .team-member {
    margin-bottom: 3rem;
  }
}

/* FAQ Responsive */
@media (max-width: 768px) {
  .faq-question,
  .faq-answer {
    padding: 1rem;
  }
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
  
  .footer .col-md-3 {
    margin-bottom: 2rem;
  }
}

/* Form Responsive */
@media (max-width: 768px) {
  .contact-form {
    margin: 1rem;
  }
}

/* Utility Classes for Responsive */
.d-mobile-none {
  display: none;
}

@media (min-width: 768px) {
  .d-mobile-none {
    display: block;
  }
}

.d-desktop-none {
  display: block;
}

@media (min-width: 768px) {
  .d-desktop-none {
    display: none;
  }
} 