/* ================= RESET ================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #f4f7f6;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  color: #24302e;
}

/* ================= LAYOUT ================= */

.nh-wrap {
  max-width: 800px;
  margin: 60px auto;
  padding: 20px;
}

.nh-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

/* ================= HEADINGS ================= */

h1 {
  margin: 0 0 12px 0;
  font-size: 32px;
  font-weight: 800;
}

p.lead {
  color: #5f6f6d;
  margin-bottom: 36px;
  font-size: 17px;
  line-height: 1.5;
}

/* ================= FORM ELEMEK ================= */

label {
  font-weight: 600;
  margin-top: 22px;
  display: block;
}

input,
select {
  width: 100%;
  padding: 18px;
  font-size: 16px;
  border-radius: 12px;
  border: 1px solid #cfd6d5;
  margin-top: 8px;
  background: #ffffff;
}

input:focus,
select:focus {
  outline: none;
  border-color: #4f6f6a;
  box-shadow: 0 0 0 3px rgba(79, 111, 106, 0.15);
}

/* ================= SZEKCIÓ CÍMEK ================= */

.section-title {
  font-size: 22px;
  font-weight: 800;
  margin-top: 46px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8e7;
}

/* ================= VENDÉG KÁRTYÁK ================= */

.guest-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 26px;
  box-shadow:
    0 8px 26px rgba(0, 0, 0, 0.05);
}

.guest-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8e7;
}

/* ================= VENDÉG HOZZÁADÁSA – EREDETI STÍLUS ================= */

.add-guest-btn {
  margin: 32px auto;
  padding: 18px;
  text-align: center;
  font-size: 16px;
  border-radius: 16px;
  border: 2px dashed #c7d2fe;
  background: #f8faff;
  color: #1e40af;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}

.add-guest-btn:hover {
  background: #eef2ff;
}

/* ================= SUBMIT GOMB ================= */

button[type="submit"] {
  margin-top: 70px;
  width: 100%;
  padding: 32px 44px;
  font-size: 22px;
  line-height: 1.2;
  border-radius: 22px;
  border: none;
  background: #4f6f6a;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.4px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background: #3f5f5a;
}

/* ================= MOBIL FINOMÍTÁS ================= */

@media (max-width: 600px) {

  .nh-card {
    padding: 28px;
  }

  h1 {
    font-size: 26px;
  }

  .guest-title {
    font-size: 22px;
  }

  button[type="submit"] {
    font-size: 20px;
    padding: 26px 32px;
  }
}
/* ================= KÖSZÖNET OLDAL ================= */

.thankyou-card {
  text-align: center;
}

.thankyou-info {
  margin: 28px 0 36px 0;
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
}

.thankyou-cta {
  display: flex;
  justify-content: center;
}

.thankyou-button {
  display: inline-block;
  padding: 18px 34px;
  font-size: 17px;
  font-weight: 800;
  border-radius: 18px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.thankyou-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.45);
}

