/* Mobile responsiveness fixes for hero section */
@media (max-width: 992px) {
  .hero-section .container {
    flex-direction: column;
    text-align: center;
    padding-top: 80px; /* Add space for fixed navbar */
  }
  
  .hero-content {
    max-width: 100%;
    margin-bottom: 40px;
  }
  
  .hero-image {
    max-width: 80%;
    margin: 0 auto;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .hero-content .subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 100px 0 50px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-image {
    max-width: 90%;
  }
  
  .hero-image::before {
    display: none; /* Remove decorative border on mobile */
  }
  
  .navbar .container {
    padding: 0 15px;
  }
  
  .nav-links {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  /* Mobile menu styles */
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
  }
  
  .nav-links.active li {
    margin: 10px 0;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-content .subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .hero-image {
    max-width: 100%;
  }
}
