/* Responsive Styles for Digital CV Video Creation Service */

/* Mobile-first approach */

/* Extra small devices (phones) */
@media (max-width: 576px) {
  /* Disable animations on mobile per requirements */
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  /* Navbar brand conservative size */
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  /* Hero section mobile */
  #hero {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-blob-1, .hero-blob-2 {
    display: none;
  }
  
  /* Section padding mobile */
  .section {
    padding: 2rem 0;
  }
  
  /* Service cards mobile */
  .service-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
  
  /* Team images mobile */
  .team-image {
    height: 200px;
  }
  
  /* Pricing cards mobile */
  .pricing-card.featured {
    transform: none;
    border-width: 2px;
  }
  
  .pricing-price {
    font-size: 2rem;
  }
  
  /* Process number mobile */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Contact form mobile */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Gallery images mobile */
  .gallery-item img {
    height: 200px;
  }
  
  /* Blog images mobile */
  .blog-image {
    height: 150px;
  }
  
  /* Footer mobile */
  #footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  /* Button adjustments */
  .btn-primary, .btn-outline-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Small devices (landscape phones) */
@media (min-width: 576px) and (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  .pricing-card.featured {
    transform: scale(1.02);
  }
}

/* Medium devices (tablets) */
@media (min-width: 768px) and (max-width: 992px) {
  .hero-blob-1 {
    width: 250px;
    height: 250px;
  }
  
  .hero-blob-2 {
    width: 150px;
    height: 150px;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .pricing-card.featured {
    transform: scale(1.03);
  }
}

/* Large devices (desktops) */
@media (min-width: 992px) and (max-width: 1200px) {
  .section {
    padding: 3.5rem 0;
  }
}

/* Extra large devices (large desktops) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-blob-1 {
    width: 350px;
    height: 350px;
  }
  
  .hero-blob-2 {
    width: 250px;
    height: 250px;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .service-card,
  .team-card,
  .testimonial-card,
  .faq-card,
  .process-step,
  .pricing-card,
  .case-study-card,
  .contact-form,
  .blog-card {
    border: 2px solid var(--neutral-color);
  }
  
  .btn-primary {
    border-width: 2px;
  }
}

/* Print styles */
@media print {
  .navbar,
  #footer,
  .btn,
  .hero-decorative {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    overflow-x: hidden;
}
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
} 

.hero-content {
    padding-top: 200px;
}