/* ===== Header Styling ===== */
.main-header {
  width: 100%;
  background-color: #FFE5EC;   /* Neutral background */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  top: 0;
  z-index: 9999;
  transition: background-color 0.3s ease;
}

.header-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
}

/* Logo */
.logo-img {
  display: block;
  max-height: 80px;
  height: auto;
  width: auto;
  border-radius: 12px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

/* ===== Mobile Friendly ===== */
@media (max-width: 768px) {   /* tablets & smaller */
  .header-overlay {
    padding: 0.5rem;          /* tighter padding */
  }
  .logo-img {
    max-height: 100px;         /* smaller logo */
  }
}

@media (max-width: 480px) {   /* phones */
  .header-overlay {
    flex-direction: column;   /* stack elements if you add nav later */
    padding: 0.5rem 0.25rem;
  }
  .logo-img {
    max-height: 100px;         /* even smaller for small phones */
  }
}
