/* Responsive Styles for Digital CV Video Creation Service */

/* Mobile First - Base styles for mobile devices */
@media (max-width: 575.98px) {
  /* No animations on mobile */
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  /* Typography adjustments */
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  .section-desc {
    font-size: 1rem;
  }
  
  /* Section padding */
  section {
    padding: 2.5rem 0;
  }
  
  /* Hero section */
  #hero {
    min-height: 90vh;
    text-align: center;
  }
  
  .hero-decorative {
    display: none;
  }
  
  /* Cards spacing */
  .feature-card,
  .service-card,
  .team-card,
  .review-card,
  .case-card,
  .process-step,
  .faq-card {
    margin-bottom: 1.5rem;
  }
  
  /* Price cards */
  .price-card.featured {
    transform: none;
  }
  
  /* Gallery items */
  .gallery-item img {
    height: 200px;
  }
  
  /* Contact form */
  .contact-form,
  .contact-info {
    margin-bottom: 2rem;
  }
  
  /* Team photos */
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Process numbers */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  section {
    padding: 3rem 0;
  }
  
  .hero-decorative {
    width: 200px;
    height: 200px;
  }
  
  .gallery-item img {
    height: 220px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  section {
    padding: 3.5rem 0;
  }
  
  .hero-decorative {
    width: 250px;
    height: 250px;
  }
  
  .gallery-item img {
    height: 240px;
  }
  
  /* Enable hover effects on tablets and up */
  .feature-card:hover,
  .service-card:hover,
  .team-card:hover {
    transform: translateY(-3px);
  }
  
  .btn-primary:hover {
    transform: translateY(-1px);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  section {
    padding: 4rem 0;
  }
  
  .gallery-item img {
    height: 260px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .gallery-item img {
    height: 280px;
  }
}

/* Print styles */
@media print {
  .navbar,
  #footer {
    display: none;
  }
  
  section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  .hero-decorative {
    display: none;
  }
  
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --primary-blue: #0066CC;
    --primary-blue-dark: #003D7A;
    --neutral-800: #000000;
    --neutral-900: #000000;
  }
  
  .btn-primary {
    border: 2px solid var(--primary-blue-dark);
  }
  
  .form-control {
    border: 2px solid var(--neutral-800);
  }
} 

body {
    overflow-x: hidden;
}

.hero-title {
    padding-top: 150px;
}