/* Secret Supper Club - Responsive CSS */

/* Mobile First Responsive Design */

/* Extra Small Devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .service-card,
  .price-card {
    padding: 1.5rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .team-image {
    width: 150px;
    height: 150px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .contact-form {
    padding: 2.5rem;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero h1 {
    font-size: 2.75rem;
  }
  
  .navbar-nav .nav-link {
  font-size: 10px;
    margin: 0 0.5rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .container {
    max-width: 960px;
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
}

/* Navigation Responsive */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--primary-dark);
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
  }
  
  .navbar-nav {
    text-align: center;
  }
  
  .navbar-nav .nav-link {
  font-size: 10px;
    margin: 0.5rem 0;
    padding: 0.5rem 1rem;
  }
}

/* Hero Section Responsive */
@media (max-width: 767.98px) {
  .hero {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero .row {
    flex-direction: column-reverse;
  }
  
  .hero-content {
    margin-top: 2rem;
  }
}

/* Services Grid Responsive */
@media (max-width: 767.98px) {
  .services-grid .col-md-4 {
    margin-bottom: 2rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .services-grid .col-md-4:nth-child(2n+1) {
    clear: left;
  }
}

/* Team Grid Responsive */
@media (max-width: 767.98px) {
  .team-grid .col-md-4,
  .team-grid .col-lg-3 {
    margin-bottom: 2rem;
  }
  
  .team-card {
    text-align: center;
  }
}

/* Price Plan Responsive */
@media (max-width: 991.98px) {
  .price-card {
    margin-bottom: 2rem;
  }
}

/* Gallery Responsive */
@media (max-width: 767.98px) {
  .gallery-item {
    margin-bottom: 1rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .gallery-item img {
    height: 220px;
  }
}

/* Contact Section Responsive */
@media (max-width: 767.98px) {
  .contact-section .row {
    flex-direction: column;
  }
  
  .contact-info {
    margin-top: 2rem;
    text-align: center;
  }
}

/* Footer Responsive */
@media (max-width: 767.98px) {
  .footer .row {
    text-align: center;
  }
  
  .footer .col-md-3,
  .footer .col-md-4 {
    margin-bottom: 2rem;
  }
}

/* FAQ Responsive */
@media (max-width: 767.98px) {
  .faq-question {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  .faq-answer {
    padding: 1rem;
    font-size: 0.9rem;
  }
}

/* Blog Grid Responsive */
@media (max-width: 767.98px) {
  .blog-card {
    margin-bottom: 1.5rem;
  }
}

/* Timeline Responsive */
@media (max-width: 767.98px) {
  .timeline-item {
    padding: 1.5rem;
  }
}

/* Process Steps Responsive */
@media (max-width: 767.98px) {
  .process-step {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .process-step::before {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }
}

/* Core Info Responsive */
@media (max-width: 767.98px) {
  .core-info-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .core-info-item i {
    font-size: 2rem;
  }
}

/* Career Cards Responsive */
@media (max-width: 767.98px) {
  .career-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
}

/* Case Study Responsive */
@media (max-width: 767.98px) {
  .casestudy-item {
    margin-bottom: 1.5rem;
  }
}

/* Swiper Responsive - Disable autoplay and effects on mobile */
@media (max-width: 767.98px) {
  .swiper-wrapper {
    transform: none !important;
  }
  
  .swiper-slide {
    transition: none !important;
  }
  
  /* Disable Swiper autoplay on mobile - handled in JS */
}

/* Utility Classes for Mobile */
@media (max-width: 767.98px) {
  .mobile-center {
    text-align: center !important;
  }
  
  .mobile-hide {
    display: none !important;
  }
  
  .mobile-full-width {
    width: 100% !important;
  }
  
  .mobile-padding {
    padding: 1rem !important;
  }
  
  .mobile-margin {
    margin: 1rem 0 !important;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .contact-form {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .section {
    padding: 1rem 0 !important;
    page-break-inside: avoid;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: black !important;
    page-break-after: avoid;
  }
}

/* High DPI / Retina Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .team-image,
  .gallery-item img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Landscape Orientation for Mobile */
@media (max-width: 767.98px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
  }
  
  .navbar {
    padding: 0.5rem 0;
  }
  
  .section {
    padding: 2rem 0;
  }
} 