/* Responsive CSS for Voice-Activated Note-Taking Hardware Website */

/* Large screens */
@media (min-width: 1200px) {
  .hero-section {
    padding: 0 2rem;
  }
  
  .service-card {
    min-height: 350px;
  }
  
  .feature-item {
    min-height: 250px;
  }
}

/* Medium screens */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-section .col-lg-6 {
    margin-bottom: 2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-member {
    margin-bottom: 2rem;
  }
  
  .contact-form {
    margin-bottom: 2rem;
  }
}

/* Small screens */
@media (max-width: 767.98px) {
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 1.77rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .navbar-brand {
    font-size: 1.26rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
  }
  
  .service-card, .feature-item, .team-member, .review-card {
    margin-bottom: 1.77rem;
  }
  
  .section-title h2 {
    font-size: 1.60rem;
  }
  
  .section-title p {
    font-size: 0.94rem;
  }
  
  .contact-section {
    padding: 60px 0;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .footer {
    padding: 30px 0 20px;
    text-align: center;
  }
}

/* Extra small screens */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 60vh;
    padding: 1rem 0;
  }
  
  .hero-title {
    font-size: 1.55rem;
  }
  
  .hero-subtitle {
    font-size: 0.98rem;
  }
  
  .navbar-brand {
    font-size: 1.24rem;
  }
  
  .service-card, .feature-item, .team-member, .review-card {
    padding: 1.5rem;
  }
  
  .section-title h2 {
    font-size: 1.38rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .team-member img {
    width: 100px;
    height: 100px;
  }
  
  .service-price {
    font-size: 1.32rem;
  }
  
  .btn-primary {
    padding: 0.5rem 1.5rem;
    font-size: 1.00rem;
  }
}

/* Container adjustments */
@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
}

@media (max-width: 767.98px) {
  .container {
    max-width: 540px;
  }
}

@media (max-width: 575.98px) {
  .container {
    max-width: 100%;
    padding: 0 1rem;
  }
}

/* Utility classes for responsive behavior */
.text-center-mobile {
  text-align: center;
}

@media (min-width: 768px) {
  .text-center-mobile {
    text-align: left;
  }
}

.mb-mobile {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .mb-mobile {
    margin-bottom: 0;
  }
}

/* Contact form responsive adjustments */
@media (max-width: 767.98px) {
  .contact-form .form-control {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* Navigation responsive */
@media (max-width: 991.98px) {
  .navbar-collapse {
    text-align: center;
    margin-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f8f9fa;
  }
  
  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
} 

.hero-content {
    padding-top: 175px;
}