/* Virtual Coworking Space Template - Responsive Styles */

/* Mobile First Approach - Base styles are for mobile */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .hero-section h1 {
    font-size: 2.87rem;
  }
  
  .service-card {
    padding: 2.5rem;
  }
  
  .navbar-nav .nav-link {
    font-size: 8px !important;
    padding: 0.25rem 0.4rem !important;
  }
  
  .dropdown-menu {
    left: auto !important;
    right: 0 !important;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero-section {
    padding: 3rem 0;
  }
  
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .navbar-brand {
    font-size: 10px !important;
  }
  
  .navbar-nav .nav-link {
    font-size: 8px !important;
    padding: 0.25rem 0.4rem !important;
  }
  
  .dropdown-menu {
    left: auto !important;
    right: 0 !important;
  }
  
  .section-padding {
    padding: 6rem 0;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-image {
    height: 300px;
  }
  
  .price-card.featured {
    transform: scale(1.05);
    margin-top: -1rem;
    margin-bottom: -1rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section h1 {
    font-size: 3.57rem;
  }
  
  .section-padding {
    padding: 7rem 0;
  }
  
  .service-card {
    margin-bottom: 0;
  }
  
  .feature-card {
    padding: 2rem;
  }
  
  .contact-form {
    padding: 3rem;
  }
  
  .process-step {
    padding: 2rem;
  }
  
  .timeline-item {
    padding-left: 2rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-section h1 {
    font-size: 4rem;
  }
  
  .hero-section {
    padding: 4rem 0;
  }
  
  .service-card {
    padding: 3rem;
  }
  
  .price-card {
    padding: 2.5rem;
  }
  
  .team-image {
    height: 350px;
  }
}

/* Extra extra large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .section-padding {
    padding: 8rem 0;
  }
}

/* Mobile specific adjustments */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .service-card {
    margin-bottom: 1.75rem;
    padding: 1.5rem;
  }
  
  .price-card {
    margin-bottom: 1.67rem;
    padding: 1.5rem;
  }
  
  .price-card.featured {
    transform: none;
    border-width: 3px;
  }
  
  .team-image {
    height: 200px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .process-step {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .timeline-item {
    padding-left: 1rem;
    margin-bottom: 1.64rem;
  }
  
  .faq-card {
    padding: 1rem;
  }
  
  .review-card {
    margin-bottom: 1rem;
    padding: 1rem;
  }
  
  .feature-card {
    margin-bottom: 1rem;
    padding: 1rem;
  }
  
  .gallery-image {
    height: 150px;
  }
  
  .footer {
    text-align: center;
    padding: 2rem 0 1rem;
  }
  
  .navbar-brand {
    font-size: 10px !important;
  }
  
  .navbar-nav .nav-link {
    font-size: 8px !important;
    padding: 0.25rem 0.35rem !important;
  }
  
  .dropdown-menu {
    width: 100% !important;
    max-width: none !important;
    position: static !important;
    float: none !important;
  }
  
  h1 {
    font-size: 1.78rem;
  }
  
  h2 {
    font-size: 1.53rem;
  }
  
  h3 {
    font-size: 1.32rem;
  }
}

/* Print styles */
@media print {
  .hero-section::before {
    display: none;
  }
  
  .service-card,
  .price-card,
  .team-card,
  .review-card {
    box-shadow: none;
    border: 1px solid var(--gray-200);
  }
  
  .btn {
    border: 1px solid var(--gray-800);
    background: transparent;
    color: var(--gray-800);
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .service-card,
  .price-card,
  .team-card,
  .review-card,
  .faq-card,
  .blog-card {
    border: 2px solid var(--gray-800);
  }
  
  .hero-section::before {
    opacity: 0.2;
  }
}

/* Dark mode support */

.hero-content {
    padding-top: 200px;
}