/* Responsive Styles for Curated Micro-Vacation Planning Agency */

/* Mobile Optimizations */
@media (max-width: 767.98px) {
  
  /* Typography adjustments for mobile */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  /* Section padding reduction */
  .section {
    padding: 3rem 0;
  }
  
  /* Hero section mobile */
  .hero-section {
    min-height: 70vh;
    text-align: center;
    padding: 2rem 0;
  }
  
  /* Hide decorative elements on mobile for performance */
  .hero-decoration {
    display: none;
  }
  
  /* Card adjustments */
  .service-card,
  .feature-card,
  .team-card,
  .review-card,
  .price-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  /* Contact form mobile */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Team photo size adjustment */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  /* Process/Timeline mobile */
  .process-item,
  .timeline-item {
    padding-left: 2rem;
  }
  
  .process-item::before,
  .timeline-item::before {
    width: 1rem;
    height: 1rem;
  }
  
  /* Remove hover effects on mobile for better performance */
  .service-card:hover,
  .feature-card:hover,
  .team-card:hover,
  .price-card:hover {
    transform: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  }
  
  .btn-primary:hover {
    transform: none;
  }
  
  .gallery-img:hover {
    transform: none;
  }
  
  /* Disable animations on mobile as per requirements */
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 991.98px) {
  
  h1 {
    font-size: 2.25rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .hero-section {
    min-height: 80vh;
  }
  
  .team-photo {
    width: 140px;
    height: 140px;
  }
}

/* Large screens */
@media (min-width: 1200px) {
  
  .container {
    max-width: 1140px;
  }
  
  .hero-section {
    padding: 0;
  }
  
  /* Larger decorative elements on big screens */
  .hero-decoration:nth-child(1) {
    width: 400px;
    height: 400px;
  }
  
  .hero-decoration:nth-child(2) {
    width: 250px;
    height: 250px;
  }
}

/* Extra large screens */
@media (min-width: 1400px) {
  
  .container {
    max-width: 1320px;
  }
  
  .section {
    padding: 6rem 0;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  
  /* Ensure images look crisp on retina displays */
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Print styles */
@media print {
  
  .navbar,
  footer,
  .hero-decoration {
    display: none !important;
  }
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  .service-card,
  .feature-card,
  .team-card,
  .review-card,
  .price-card {
    box-shadow: none;
    border: 1px solid #dee2e6;
  }
}

/* Accessibility - High contrast mode support */
@media (prefers-contrast: high) {
  
  :root {
    --primary-color: #0000FF;
    --secondary-color: #FF0000;
    --accent-color: #00AA00;
    --neutral-dark: #000000;
  }
  
  .service-card,
  .feature-card,
  .team-card,
  .review-card,
  .price-card {
    border: 2px solid var(--neutral-dark);
  }
}

/* Landscape mobile orientation */
@media (max-width: 767.98px) and (orientation: landscape) {
  
  .hero-section {
    min-height: 50vh;
  }
  
  .section {
    padding: 2rem 0;
  }
}

.hero-section h1 {
    padding-top: 175px;
}