/* Responsive Styles for Soy Candle Workshop Template */

/* Large screens (desktops) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  .hero-section {
    padding: 4rem 0;
  }
  
  .section {
    padding: 5rem 0;
  }
}

/* Medium screens (tablets) */
@media (max-width: 991.98px) {
  .navbar-brand {
    font-size: 1.3rem;
  }
  
  .navbar-nav {
    text-align: center;
  }
  
  .hero-section {
    text-align: center;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .service-card,
  .feature-card,
  .price-card,
  .review-card,
  .casestudy-card,
  .career-card,
  .coreinfo-card,
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .gallery-item {
    height: 200px;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .contact-info {
    margin-top: 2rem;
  }
}

/* Small screens (phones) */
@media (max-width: 767.98px) {
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .btn-primary,
  .btn-outline-primary {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .feature-card,
  .service-card,
  .price-card,
  .review-card,
  .casestudy-card,
  .career-card,
  .coreinfo-card,
  .blog-card {
    padding: 1.5rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .team-name {
    font-size: 1.1rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item {
    height: 180px;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .section-title {
    margin-bottom: 1.5rem;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .contact-info {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer .col-md-3 {
    margin-bottom: 1.5rem;
  }
  
  .hero-image::before {
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
  }
}

/* Extra small screens */
@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  h1 {
    font-size: 1.6rem;
  }
  
  h2 {
    font-size: 1.3rem;
  }
  
  .hero-section {
    min-height: 70vh;
    padding: 1.5rem 0;
  }
  
  .feature-card,
  .service-card,
  .price-card,
  .review-card,
  .casestudy-card,
  .career-card,
  .coreinfo-card,
  .blog-card {
    padding: 1.2rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .gallery-item {
    height: 150px;
  }
  
  .contact-form,
  .contact-info {
    padding: 1.2rem;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
  
  .faq-card {
    padding: 1.2rem;
  }
  
  .timeline-item {
    padding: 1.2rem;
  }
  
  .service-image,
  .blog-image {
    height: 150px;
  }
  
  .navbar-nav .nav-link {
    padding: 0.4rem 0.8rem;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn {
    display: none;
  }
  
  .hero-section {
    min-height: auto;
  }
  
  .section {
    padding: 1rem 0;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1 {
    font-size: 18pt;
  }
  
  h2 {
    font-size: 16pt;
  }
  
  h3 {
    font-size: 14pt;
  }
  
  .container {
    width: 100%;
    max-width: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .feature-card,
  .service-card,
  .price-card,
  .review-card,
  .casestudy-card,
  .career-card,
  .coreinfo-card,
  .blog-card,
  .faq-card {
    border: 2px solid var(--primary-charcoal);
  }
  
  .btn-primary,
  .btn-outline-primary {
    border-width: 2px;
  }
  
  .form-control {
    border-width: 2px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .feature-card:hover,
  .service-card:hover,
  .price-card:hover,
  .review-card:hover,
  .casestudy-card:hover,
  .career-card:hover,
  .coreinfo-card:hover,
  .blog-card:hover,
  .gallery-item:hover {
    transform: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
}

/* Focus styles for accessibility */
.btn:focus,
.form-control:focus,
.navbar-nav .nav-link:focus {
  outline: 2px solid var(--primary-terracotta);
  outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-terracotta);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 9999;
}

.skip-link:focus {
  top: 6px;
}

/* Landscape orientation adjustments */
@media (max-width: 991.98px) and (orientation: landscape) {
  .hero-section {
    min-height: 60vh;
  }
  
  .section {
    padding: 2rem 0;
  }
} 

.hero-content {
    padding-top: 100px;
}