/* ===============================================
   SPARKLING BOTANICAL SODA - RESPONSIVE CSS
   Mobile-First Responsive Design
   =============================================== */

/* Base styles are mobile-first (inherited from main.css) */

/* Add overflow-x: hidden to body */
body {
  overflow-x: hidden;
}

/* Disable all animations on mobile */
@media (max-width: 767px) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transform: none !important;
  }
  
  [data-sal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  
  .custom-card:hover,
  .service-card:hover,
  .gallery-item:hover img,
  .btn:hover,
  .navbar-nav .nav-link:hover,
  .footer a:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  
  /* Fix mobile menu issue */
  .navbar-collapse {
    background-color: var(--color-white);
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .navbar-collapse.show {
    display: block !important;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
  
  .hero-section h1 {
    font-size: 2.62rem;
    padding-top: 175px;
}
  
  .service-card {
    padding: 2.5rem 2rem;
  }
  
  .team-photo {
    width: 180px;
    height: 180px;
  }
}

/* Medium devices (tablets, 7610px and up) */
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
  
  /* Header adjustments */
  .navbar {
    padding: 1rem 0;
  }
  
  .navbar-brand {
    font-size: 10px !important;
    font-size: 1.65rem;
  }
  
  /* Hero section tablet layout */
  .hero-section {
    padding: 6rem 0;
  }
  
  .hero-section h1 {
    font-size: 3rem;
    padding-top: 175px;
}
  
  .hero-section p {
    font-size: 1.25rem;
  }
  
  /* Services grid */
  .services-grid .col-md-6 {
    margin-bottom: 2rem;
  }
  
  .service-card {
    height: 100%;
    padding: 3rem 2rem;
  }
  
  /* Team section */
  .team-photo {
    width: 200px;
    height: 200px;
  }
  
  /* Gallery adjustments */
  .gallery-item img {
    height: 300px;
  }
  
  /* FAQ cards */
  .faq-card {
    padding: 2rem;
  }
  
  /* Form adjustments */
  .form-control {
    padding: 1rem 1.25rem;
  }
  
  /* Section padding */
  .section {
    padding: 5rem 0;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
  
  /* Navigation */
  .navbar-nav .nav-link {
    font-size: 10px !important;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  /* Hero section desktop layout */
  .hero-section {
    padding: 8rem 0;
  }
  
  .hero-section h1 {
    font-size: 3.55rem;
    line-height: 1.2;
    padding-top: 175px;
}
  
  .hero-section p {
    font-size: 1.28rem;
  }
  
  /* Services layout */
  .services-grid .col-lg-4 {
    margin-bottom: 3rem;
  }
  
  .service-card {
    padding: 3rem 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 24px rgba(0,0,0,0.15);
  }
  
  /* Features grid */
  .features-item {
    padding: 2rem;
  }
  
  /* Price plan cards */
  .priceplan-card {
    padding: 3rem 2rem;
  }
  
  /* Team layout */
  .team-member {
    text-align: center;
    padding: 2rem 1rem;
  }
  
  /* Reviews layout */
  .reviews-item {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  /* Case studies */
  .casestudy-item {
    padding: 2.5rem 2rem;
  }
  
  /* Timeline improvements */
  .timeline-item {
    padding-left: 3rem;
    margin-bottom: 3rem;
  }
  
  .timeline-item::before {
    width: 16px;
    height: 16px;
    left: -9px;
  }
  
  /* Gallery grid */
  .gallery-item img {
    height: 350px;
  }
  
  /* Contact form */
  .contact-form {
    padding: 3rem;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }
  
  /* Footer layout */
  .footer {
    padding: 4rem 0 2rem;
  }
  
  /* Section spacing */
  .section {
    padding: 6rem 0;
  }
  
  .section-title {
    margin-bottom: 4rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
  
  /* Hero section extra large */
  .hero-section h1 {
    font-size: 4rem;
    padding-top: 175px;
}
  
  .hero-section p {
    font-size: 1.41rem;
  }
  
  /* Enhanced service cards */
  .service-card {
    padding: 4rem 3rem;
  }
  
  .service-price {
    font-size: 2.63rem;
  }
  
  /* Team photos larger */
  .team-photo {
    width: 220px;
    height: 220px;
  }
  
  /* Gallery enhanced */
  .gallery-item img {
    height: 400px;
  }
  
  /* Process steps */
  .process-item {
    padding: 2.5rem 2rem;
  }
  
  /* Career items */
  .career-item {
    padding: 2.5rem;
  }
  
  /* Core info items */
  .coreinfo-item {
    padding: 2rem;
  }
  
  /* Section spacing */
  .section {
    padding: 8rem 0;
  }
}

/* Extra extra large devices (1400px and up) */
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
  
  /* Maximum hero size */
  .hero-section h1 {
    font-size: 4.57rem;
    padding-top: 175px;
}
  
  /* Enhanced spacing */
  .section {
    padding: 10rem 0;
  }
  
  .service-card {
    padding: 5rem 3.5rem;
  }
}

/* Print styles */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  .navbar,
  .footer,
  .btn,
  .decorative-blob {
    display: none !important;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
  
  img {
    max-width: 100% !important;
  }
  
  .section {
    padding: 2rem 0;
  }
}

/* Accessibility and motion preferences */
@media (prefers-reduced-motion: reduce) {
  .custom-card,
  .service-card,
  .gallery-item img,
  .btn-primary {
    transition: none !important;
    transform: none !important;
  }
  
  .custom-card:hover,
  .service-card:hover,
  .gallery-item:hover img {
    transform: none !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .custom-card,
  .service-card,
  .faq-card {
    border: 2px solid #000;
  }
  
  .btn-primary,
  .btn-secondary {
    border: 2px solid #000;
  }
}

/* Landscape phone specific adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    min-height: 80vh;
    padding: 3rem 0;
  }
  
  .hero-section h1 {
    font-size: 2rem;
    padding-top: 175px;
}
  
  .section {
    padding: 3rem 0;
  }
}

/* Small height screens */
@media (max-height: 600px) {
  .hero-section {
    min-height: 90vh;
  }
}

/* Very small screens (max 480px) */
@media (max-width: 480px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .hero-section {
    padding: 3rem 0;
    min-height: 80vh;
  }
  
  .hero-section h1 {
    font-size: 2rem;
    line-height: 1.3;
    padding-top: 175px;
}
  
  .service-card {
    padding: 2rem 1.5rem;
    margin-bottom: 1.71rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .faq-card {
    padding: 1.25rem;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
} 