/* Responsive Styles for Video Production Template */

/* Large devices (desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container-xl {
    max-width: 1140px;
  }
  
  .hero-content h1 {
  padding-top: 100px !important;
}

.hero-content {
  padding-top: 50px !important;
    padding: 0 2rem;
  }
  
  .section-padding {
    padding: 100px 0;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991.98px) {
  .hero-content h1 {
  padding-top: 100px !important;
}

.hero-content {
  padding-top: 50px !important;
    text-align: center;
  }
  
  .hero-image {
    margin-top: 2rem;
    max-width: 80%;
  }
  
  .hero-shape-1,
  .hero-shape-2 {
    display: none;
  }
  
  .navbar-collapse {
    background: var(--white);
    border-radius: 10px;
    margin-top: 1rem;
    padding: 1rem;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .price-card.featured {
    transform: none;
    margin-top: 2rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 767.98px) {
  :root {
    --font-size-h1: 1.5rem;
    --font-size-h2: 1.375rem;
    --font-size-h3: 1.25rem;
  }
  
  .hero-section h1 {
    padding-top: 150px !important;
}

.hero-section {
    min-height: 80vh;
  }
  
  .hero-content h1 {
  padding-top: 100px !important;
}

.hero-content {
  padding-top: 50px !important;
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .section-padding {
    padding: 40px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .hero-image {
    max-width: 100%;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: var(--font-size-base);
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.54rem;
  }
  
  .price-amount {
    font-size: 2rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-section h1 {
    padding-top: 150px !important;
}

.hero-section {
    min-height: 70vh;
  }
  
  .hero-content h1 {
  padding-top: 100px !important;
}

.hero-content {
  padding-top: 50px !important;
    min-height: 70vh;
  }
  
  .section-padding {
    padding: 30px 0;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .card {
    margin-bottom: 1rem;
  }
  
  .navbar-brand {
    font-size: var(--font-size-lg) !important;
  }
  
  .btn-primary {
    padding: 0.625rem 1.5rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .img-service {
    height: 180px;
  }
  
  .img-hero {
    height: 300px;
  }
  
  .img-case {
    height: 150px;
  }
  
  .img-blog {
    height: 180px;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .hero-shape-1,
  .hero-shape-2 {
    display: none !important;
  }
  
  .hero-section h1 {
    padding-top: 150px !important;
}

.hero-section {
    min-height: auto;
    background: none !important;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .card {
    box-shadow: none;
    border: 1px solid #c5c5c5;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --primary-blue: #0055c4;
    --primary-purple: #8f15dc;
    --primary-teal: #0b7473;
    --primary-coral: #c42c2d;
    --primary-gold: #d89407;
  }
  
  .card {
    border: 2px solid var(--gray-dark);
  }
  
  .btn-primary {
    border: 2px solid var(--dark-blue);
  }
}

/* Focus styles for accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
  outline: 3px solid var(--primary-blue);
  outline-offset: 2px;
}

/* Ensure sufficient spacing on mobile */
@media (max-width: 767.98px) {
  .row > * {
    margin-bottom: 2rem;
  }
  
  .row > *:last-child {
    margin-bottom: 0;
  }
}

/* Optimize images for different screen sizes */
@media (max-width: 575.98px) {
  .img-hero,
  .img-service,
  .img-gallery,
  .img-blog,
  .img-case {
    width: 100%;
    height: auto;
    min-height: 200px;
    object-fit: cover;
  }
} 