/* Responsive CSS for Modular Furniture Rental Template */

/* Tablet Styles */
@media (max-width: 992px) {
  /* Hero Section */
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  /* Service Cards */
  .service-card {
    margin-bottom: 2rem;
  }
  
  /* Team Photos */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  /* Price Plans */
  .price-plan {
    margin-bottom: 2rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  /* NO ANIMATIONS ON MOBILE */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  .card:hover {
    transform: none !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
  }
  
  .btn-primary:hover {
    transform: none !important;
  }
  
  .price-plan:hover {
    transform: none !important;
  }
  
  .gallery-item:hover img {
    transform: none !important;
  }
  
  /* Typography */
  .navbar-brand {
    font-size: 1.125rem !important;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  /* Hero Section */
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero-section::before {
    display: none;
  }
  
  /* Section Spacing */
  .section {
    padding: 2rem 0;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  /* Cards */
  .service-card,
  .team-card,
  .review-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  /* Team Photos */
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Process Numbers */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  
  /* Price */
  .price {
    font-size: 2rem;
  }
  
  /* Gallery */
  .gallery-item img {
    height: 200px;
  }
  
  /* Footer */
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  /* Form Controls */
  .form-control {
    padding: 0.625rem;
  }
  
  /* Buttons */
  .btn-primary,
  .btn-secondary {
    padding: 0.625rem 1.25rem;
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 576px) {
  /* Container Padding */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Typography */
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.375rem;
  }
  
  /* Hero Section */
  .hero-section {
    min-height: 60vh;
  }
  
  /* Cards */
  .card {
    margin-bottom: 1rem;
  }
  
  .service-card,
  .team-card,
  .review-card,
  .contact-form {
    padding: 1rem;
  }
  
  /* Process Steps */
  .process-step {
    padding: 1rem;
  }
  
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }
  
  /* Price Plans */
  .price-plan {
    padding: 1.5rem;
  }
  
  .price {
    font-size: 1.75rem;
  }
  
  /* Team Photos */
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  /* Gallery */
  .gallery-item img {
    height: 150px;
  }
  
  /* FAQ Cards */
  .faq-card {
    padding: 1rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer {
    display: none;
  }
  
  .hero-section {
    min-height: auto;
    page-break-after: always;
  }
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  .card {
    box-shadow: none;
    border: 1px solid #ddd;
    page-break-inside: avoid;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #000080;
    --secondary-color: #008000;
    --accent-color: #ff8c00;
    --neutral-dark: #000000;
    --background-light: #ffffff;
  }
  
  .card {
    border: 2px solid var(--neutral-dark);
  }
  
  .btn-primary,
  .btn-secondary {
    border: 2px solid var(--neutral-dark);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .hero-section::before {
    animation: none;
  }
  
  * {
    scroll-behavior: auto !important;
  }
} 

body {
    overflow-x: hidden;
}

.hero-section h1 {
    padding-top: 225px;
}