/* Digital Etiquette Coaching - Responsive Styles */

/* Large Devices (Desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-section h1 {
    font-size: 3rem;
    padding-top: 275px;
}
  
  .service-card {
    min-height: 400px;
  }
}

/* Medium Devices (Tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 1199px) {
  .navbar-nav {
    margin-left: auto;
  }
  
  .hero-section {
    min-height: 90vh;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-photo {
    height: 200px;
  }
}

/* Small Devices (Landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .hero-section {
    min-height: 70vh;
    text-align: center;
  }
  
  .hero-section h1 {
    font-size: 1.75rem;
    padding-top: 275px;
}
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .service-card,
  .team-card,
  .price-card {
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}

/* Extra Small Devices (Portrait phones, less than 576px) */
@media (max-width: 575px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  .navbar-nav .nav-link {
    margin: 0 0.5rem;
    font-size: 0.9rem;
  }
  
  .hero-section {
    min-height: 60vh;
    text-align: center;
    padding: 2rem 0;
  }
  
  .hero-section h1 {
    font-size: 1.5rem;
    line-height: 1.3;
    padding-top: 275px;
}
  
  .hero-section .lead {
    font-size: 1rem;
  }
  
  section {
    padding: 2rem 0;
  }
  
  .section-title {
    font-size: 1.25rem;
    text-align: center;
  }
  
  .section-subtitle {
    font-size: 1rem;
    text-align: center;
  }
  
  .section-desc {
    font-size: 0.95rem;
    text-align: center;
  }
  
  .service-card {
    margin-bottom: 1rem;
    min-height: auto;
  }
  
  .team-photo {
    height: 180px;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .price-card {
    margin-bottom: 1rem;
  }
  
  .feature-icon {
    font-size: 2rem;
  }
  
  .feature-item {
    padding: 1rem;
  }
  
  .review-card {
    padding: 1rem;
  }
  
  .faq-card {
    margin-bottom: 0.5rem;
  }
  
  .faq-card .card-body {
    padding: 1rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .process-item,
  .timeline-item,
  .career-item,
  .casestudy-item {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .coreinfo-item {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  footer .row > div {
    margin-bottom: 1rem;
  }
}

/* Mobile Navigation Adjustments - NO ANIMATIONS per requirements */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: var(--cream-light);
    border-radius: 8px;
    margin-top: 1rem;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.1);
  }
  
  .navbar-nav {
    text-align: center;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    margin: 0.25rem 0;
    border-radius: 4px;
  }
  
  .navbar-nav .nav-link:hover {
    background-color: var(--cream-dark);
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-section::before {
    transform: rotate(-15deg) scale(1.1);
  }
}

/* Print Styles */
@media print {
  .navbar,
  .breadcrumb-container,
  footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero-section {
    min-height: auto;
    background: white;
  }
  
  .service-card,
  .team-card,
  .price-card,
  .review-card {
    border: 1px solid #ddd;
    box-shadow: none;
  }
}

/* Orientation Changes */
@media (orientation: landscape) and (max-height: 600px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .navbar {
    padding: 0.25rem 0;
  }
}

/* Focus States for Better Accessibility */
@media (min-width: 768px) {
  .nav-link:focus,
  .btn:focus,
  .form-control:focus {
    outline: 2px solid var(--primary-teal);
    outline-offset: 2px;
  }
}

/* Container Adjustments */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Tablet Portrait Specific */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .hero-section {
    min-height: 80vh;
  }
  
  .col-md-6 .service-card {
    min-height: 350px;
  }
}