/* Logo Enhancement Styles */

/* Increase logo size in header */
.logo img {
  height: 80px;
  width: auto;
  transition: all 0.3s ease;
}

/* Add a prominent logo display in hero section */
.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.hero-logo img {
  height: 150px;
  width: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Make header more prominent with logo */
header {
  padding: 10px 0;
}

.header-container {
  padding: 5px 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo img {
    height: 60px;
  }
  
  .hero-logo img {
    height: 120px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 50px;
  }
  
  .hero-logo img {
    height: 100px;
  }
}
