/* Bluestream Entertainment - Responsive Styles
   Additional responsive fixes for better mobile experience
   Created 2025
*/

/* Extra Small Devices (phones, 576px and down) */
@media (max-width: 576px) {
  .header-container {
    padding: 0 var(--spacing-md);
  }
  
  .logo img {
    max-width: 160px;
  }
  
  .hero {
    padding: var(--spacing-xl) 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section {
    padding: var(--spacing-xl) 0;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .service-card, .event-card {
    margin-bottom: var(--spacing-lg);
  }
  
  .contact-form {
    padding: var(--spacing-lg);
  }
}

/* Small Devices (landscape phones, 576px to 768px) */
@media (min-width: 576px) and (max-width: 768px) {
  .logo img {
    max-width: 180px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

/* Medium Devices (tablets, 768px to 992px) */
@media (min-width: 768px) and (max-width: 992px) {
  .logo img {
    max-width: 200px;
  }
  
  .service-card, .event-card {
    margin-bottom: var(--spacing-xl);
  }
}

/* Large Devices (desktops, 992px to 1200px) */
@media (min-width: 992px) and (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .logo img {
    max-width: 250px;
  }
}

/* Fix for navigation on all devices */
.nav-menu.active {
  display: flex !important;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fix for buttons on mobile */
@media (max-width: 768px) {
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .btn-group {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .btn-group .btn {
    width: 100%;
    margin: 0;
  }
}

/* Fix for gallery on mobile */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: var(--spacing-md);
  }
}

/* Fix for testimonials on mobile */
@media (max-width: 768px) {
  .testimonial-card {
    padding: var(--spacing-md);
  }
  
  .testimonial-author {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .testimonial-author img {
    margin-bottom: var(--spacing-sm);
    margin-right: 0;
  }
}