/* =====================================================================
   BODY.CSS
   Oldalvaz, globalis betutipus, hero alapok.
   Hasznalat: globalis.
   ===================================================================== */

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(247, 191, 144, 0.45), transparent 30%),
    radial-gradient(circle at bottom right, rgba(191, 90, 54, 0.18), transparent 35%),
    linear-gradient(180deg, #fdf7f1 0%, var(--bg) 100%);
}

.page-shell {
  width: min(1180px, calc(100% - 30px));
  margin: 0px auto;
  padding: 19px 0px 15px;
}

.info-page-shell {
  display: grid;
  gap: 24px;
}

.info-shell-card {
  border-radius: 32px;
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero {
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) 350px;
  gap: 8px;
}

.hero-copy,
.hero-panel,
.feature-card {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  padding: 12px;
}

.hero-panel {
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 10px;
}

.hero h1 {
  max-width: 620px;
  margin: 13px 0 14px;
  font-size: var(--h1-hero);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.header-content-base {
  color: var(--muted);
  line-height: 1.7;
}

.lead,
.feature-card p,
.form-message {
  /* color: #b4a09b; */
  line-height: 1.7;
}

.auth-form-message {
  width: 100%;
  margin: -4px 0 10px;
  color: #9b1c1c;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.auth-form-message:empty {
  display: none;
}

.auth-helper-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: clamp(0.82rem, 1.5vw, 0.95rem);
  font-style: italic;
  line-height: 1.35;
  text-align: center;
}

#auth-panel-login h2,
#auth-panel-register h2,
#login-password-reset-content h2,
#regisztracio h2,
#jelszo-helyreallitas h2,
#regisztracio-jelszo h2 {
  width: 100%;
  text-align: center;
}

.feature-list {
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.9;
}

.feature-list li::marker {
  color: var(--accent-dark);
}

.section {
  margin-top: 10px;
}

.page-shell > main > .section:first-child {
  margin-top: 4px;
}

@media (max-width: 480px) {
  .page-shell > main > .section:first-child > .feature-card.profile-preview-card.events-panel {
    margin-top: -13px;
  }

}

