/* Header Styles */
.header {
  text-align: center;
  padding: var(--spacing-lg) 0 var(--spacing-xs); /* Csökkentett alsó padding */
  margin-bottom: 0; /* Nincs alsó margó */
  position: relative;
}

/* Header content - fejléc tartalom */
.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0; /* Nincs alsó margó */
}

/* Header Logo Styles */
.logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--spacing-sm); /* Csökkentett margó */
}

.header-logo {
  max-height: 6rem;
  width: auto;
  object-fit: contain;
}

.header h1 {
  font-size: 1.4rem;
  color: var(--header-color);
  margin: 0;
  display: none; /* Az étterem név elrejtése a logó alatt */
}

.welcome-text {
  font-size: 1rem;
  max-width: 800px;
  margin: var(--spacing-sm) auto;
  line-height: 1.8;
  padding: 0 var(--spacing-sm);
}

/* Reszponzív beállítások */
@media (max-width: 768px) {
  .header {
    padding: var(--spacing-sm) 0 0;
    margin-bottom: 0;
  }
  
  .header-content {
    flex-direction: column;
    gap: 5px;
    margin-bottom: 0;
  }
  
  .header h1 {
    margin-bottom: 0;
  }

  .header-logo {
    max-height: 3.2rem;
    margin-bottom: 0;
  }
  
  .welcome-text {
    margin: var(--spacing-xs) auto var(--spacing-xs);
    font-size: 0.85rem;
    line-height: 1.5;
    padding: 0 var(--spacing-sm);
  }
}

@media (max-width: 480px) {
  .header {
    padding-bottom: 0;
  }
  
  .header-logo {
    max-height: 2.8rem;
  }
  
  .header h1 {
    font-size: 1.2rem;
  }
  
  .welcome-text {
    font-size: 0.8rem;
    line-height: 1.4;
    padding: 0 var(--spacing-sm);
    margin: var(--spacing-xs) auto;
  }
}