/* Virtual Conference Production Service Template - Responsive CSS */
/* Mobile-First Responsive Design */

/* Base Mobile Styles (Default) */
/* Already included in main.css */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-item {
    padding: 1.5rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  
  :root {
    --section-padding: 6rem 0;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 1.5rem !important;
  }
  
  .hero {
    padding: 8rem 0;
  }
  
  .service-item {
    padding: 2rem;
  }
  
  .about-feature {
    padding: 2.5rem;
  }
  
  .contact-form {
    padding: 4rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  
  .gallery-item img {
    height: 300px;
  }
  
  .team-member img {
    width: 250px;
    height: 250px;
  }
  
  .blog-item img {
    height: 250px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .hero {
    padding: 10rem 0;
  }
  
  .service-item {
    padding: 3rem;
  }
  
  .about-feature {
    padding: 3rem;
  }
  
  .contact-form {
    padding: 5rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 2rem !important;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }
  
  .gallery-item img {
    height: 350px;
  }
  
  .footer-content {
    margin-bottom: 3rem;
  }
  
  .priceplan-item.featured {
    transform: scale(1.1);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero h1 {
    font-size: 4rem;
  }
  
  .section-title {
    font-size: 3.5rem;
  }
  
  .hero {
    padding: 12rem 0;
  }
  
  .service-item {
    padding: 3.5rem;
  }
  
  .about-feature {
    padding: 3.5rem;
  }
  
  .contact-form {
    padding: 6rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  }
  
  .gallery-item img {
    height: 400px;
  }
}

/* Extra extra large devices (1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .hero h1 {
    font-size: 4.5rem;
  }
  
  .section-title {
    font-size: 4rem;
  }
  
  .service-item {
    padding: 4rem;
  }
  
  .about-feature {
    padding: 4rem;
  }
  
  .contact-form {
    padding: 7rem;
  }
}

/* Mobile-specific adjustments */
@media (max-width: 575px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .service-item {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .about-feature {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .team-member img {
    width: 150px;
    height: 150px;
  }
  
  .blog-item img {
    height: 180px;
  }
  
  .priceplan-item.featured {
    transform: none;
  }
  
  .process-item::before {
    position: static;
    transform: none;
    margin: 0 auto 1rem;
  }
  
  .timeline-item {
    border-left: none;
    border-top: 3px solid var(--primary-teal);
    padding-left: 0;
    padding-top: 2rem;
  }
  
  .timeline-item::before {
    left: 0;
    top: -8px;
  }
  
  .faq-question {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  .faq-answer {
    padding: 1rem;
    font-size: 0.9rem;
  }
}

/* Tablet Portrait */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content .col-md-6 {
    text-align: center;
  }
  
  .service-item {
    margin-bottom: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* Print styles */
@media print {
  * {
    background: white !important;
    color: black !important;
    text-shadow: none !important;
    box-shadow: none !important;
  }
  
  header,
  footer,
  .navbar,
  .btn,
  .contact-form {
    display: none !important;
  }
  
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .page-break {
    page-break-before: always;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-purple: #0000FF;
    --primary-teal: #008080;
    --primary-coral: #FF0000;
    --primary-mint: #00FF00;
    --primary-lavender: #800080;
    --dark-gray: #000000;
    --gray: #666666;
    --light-gray: #CCCCCC;
  }
  
  .service-item,
  .about-feature,
  .contact-form,
  .blog-item,
  .faq-item {
    border: 2px solid var(--dark-gray);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  
  .service-item:hover,
  .about-feature:hover,
  .gallery-item:hover,
  .btn-primary:hover {
    transform: none;
  }
  
  .hero::before {
    animation: none;
  }
}

/* Dark mode support (if needed in future) */

/* Landscape mobile adjustments */
@media (max-width: 767px) and (orientation: landscape) {
  .hero {
    min-height: 70vh;
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 3rem 0;
  }
}

/* Focus and accessibility improvements */
@media (any-hover: hover) {
  .service-item:hover,
  .about-feature:hover,
  .gallery-item:hover,
  .blog-item:hover,
  .casestudy-item:hover,
  .priceplan-item:hover {
    transform: translateY(-5px);
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .service-item:hover,
  .about-feature:hover,
  .gallery-item:hover,
  .blog-item:hover,
  .casestudy-item:hover,
  .priceplan-item:hover {
    transform: none;
  }
  
  .btn-primary {
    padding: 1.25rem 2rem;
  }
  
  .navbar-nav .nav-link {
    padding: 1rem 1.5rem !important;
  }
}

/* Very small screens (320px and below) */
@media (max-width: 320px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .service-item,
  .about-feature,
  .contact-form {
    padding: 1rem;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  .team-member img {
    width: 120px;
    height: 120px;
  }
} 