/* Mobile First Responsive Styles */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .container-sm {
    max-width: 540px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 767.98px) {
  /* Disable animations on mobile as per requirements */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  /* Header adjustments */
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .navbar-nav {
    text-align: center;
    padding-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
  }
  
  /* Hero section mobile */
  #hero {
    min-height: 70vh;
    text-align: center;
  }
  
  .hero-content {
    padding: 3rem 0;
    padding-top: 250px;
}
  
  .hero-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .hero-desc {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  /* Hide decorative shapes on mobile */
  .hero-shape {
    display: none;
  }
  
  /* Section spacing */
  section {
    padding: 2.5rem 0;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .section-desc {
    margin-bottom: 2rem;
    font-size: 0.95rem;
  }
  
  /* Cards mobile layout */
  .ceramic-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .ceramic-card img {
    height: 180px;
    margin-bottom: 1rem;
  }
  
  .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .card-desc {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }
  
  .card-price {
    font-size: 1.25rem;
  }
  
  /* Services mobile */
  .service-item {
    margin-bottom: 2rem;
  }
  
  .service-item img {
    height: 200px;
    margin-bottom: 1rem;
  }
  
  /* Features mobile */
  .feature-item {
    padding: 1.5rem 0.5rem;
    margin-bottom: 1rem;
  }
  
  .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }
  
  /* Team mobile */
  .team-member {
    margin-bottom: 2rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
  }
  
  .team-name {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
  }
  
  .team-role {
    font-size: 0.9rem;
  }
  
  /* Reviews mobile */
  .review-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .review-text {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }
  
  .review-author {
    font-size: 0.9rem;
  }
  
  /* FAQ mobile */
  .faq-item {
    padding: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .faq-question {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .faq-answer {
    font-size: 0.9rem;
  }
  
  /* Gallery mobile */
  .gallery-item {
    margin-bottom: 1rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  /* Contact form mobile */
  .contact-form {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .form-control {
    padding: 0.625rem;
    font-size: 0.95rem;
  }
  
  .btn-primary {
    padding: 0.625rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
  }
  
  /* Footer mobile */
  #footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .footer-links {
    margin-bottom: 1.5rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }
  
  .footer-bottom {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .container-lg {
    max-width: 960px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container-xl {
    max-width: 1140px;
  }
  
  .hero-content {
    padding: 6rem 0;
    padding-top: 250px;
}
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
}

/* Extra extra large devices (1400px and up) */
@media (min-width: 1400px) {
  .container-xxl {
    max-width: 1320px;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --accent-color: #666666;
    --text-color: #000000;
    --bg-color: #ffffff;
  }
  
  .ceramic-card,
  .review-card,
  .faq-item,
  .contact-form {
    border: 2px solid #000000;
  }
}

/* Print styles */
@media print {
  .navbar,
  #footer,
  .btn,
  .hero-shape {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    color: #000000;
    background: #ffffff;
    overflow-x: hidden;
}
  
  .section-title,
  .hero-title {
    color: #000000;
    font-size: 18pt;
  }
  
  .ceramic-card,
  .review-card,
  .faq-item {
    border: 1px solid #000000;
    break-inside: avoid;
    margin-bottom: 1rem;
  }
} 