/* Photography Workshop Template - Responsive CSS */

/* Mobile Styles */
@media (max-width: 767.98px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    text-align: center;
  }
  
  .hero-image img {
    height: 250px;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section h1 {
    font-size: 2.60rem;
  }
  
  .section-title {
    font-size: 2.33rem;
  }
}

/* Desktop Styles */
@media (min-width: 1200px) {
  .hero-section h1 {
    font-size: 3.57rem;
  }
  
  .section {
    padding: 100px 0;
  }
}
