/* swafren statikus oldalak – a termékoldal színeihez illeszkedik */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap");

:root {
  --sw-bg: #fdfbf7;
  --sw-text: #3b2006;
  --sw-muted: #5c4a3a;
  --sw-accent: #ff761e;
  --sw-purple: #9e59a8;
  --sw-card: #fff;
  --sw-border: #e8dfd4;
}

* {
  box-sizing: border-box;
}

body.site-page {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--sw-text);
  background: var(--sw-bg);
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--sw-border);
  padding: 0.75rem 1rem;
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 64px;
}

.site-header .sp-logo {
  max-height: 48px;
  width: auto;
  display: block;
}

.site-main {
  flex: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  width: 100%;
}

.site-main h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--sw-text);
  margin: 0 0 1.25rem;
  line-height: 1.25;
}

.site-main h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--sw-text);
}

.site-main h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
}

.site-main p,
.site-main li {
  color: var(--sw-muted);
  margin: 0.5rem 0;
}

.site-main ul {
  padding-left: 1.25rem;
}

.site-main a {
  color: var(--sw-purple);
  text-decoration: none;
}

.site-main a:hover {
  text-decoration: underline;
}

.site-contact-box {
  background: var(--sw-card);
  border: 1px solid var(--sw-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.site-contact-box strong {
  color: var(--sw-text);
}

.site-footer {
  background: linear-gradient(180deg, #f5ddbc 0%, #f0d4b0 100%);
  padding: 2rem 1rem 2.5rem;
  margin-top: auto;
}

.site-footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.site-footer-contact {
  font-size: 0.95rem;
  color: var(--sw-text);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.site-footer-contact a {
  color: var(--sw-purple);
  font-weight: 600;
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.site-footer-nav a {
  color: var(--sw-text);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.site-footer-nav a:hover {
  color: var(--sw-accent);
}

.site-footer-copy {
  font-size: 0.8rem;
  color: var(--sw-muted);
}

.site-form-field {
  margin-bottom: 0.65rem;
}

.site-form-field > label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: var(--sw-text);
  font-size: 0.9rem;
}

.site-form input,
.site-form select,
.site-form textarea {
  width: 100%;
  max-width: 480px;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--sw-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}

.site-form-field--consent {
  margin-bottom: 0.75rem;
  margin-top: 0.15rem;
}

.site-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  max-width: 100%;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.45;
  cursor: pointer;
}

.site-form-consent input[type="checkbox"] {
  width: auto;
  max-width: none;
  flex-shrink: 0;
  margin: 0.2em 0 0;
  accent-color: var(--sw-purple);
}

.site-form-consent-text {
  flex: 1;
  min-width: 0;
  font-weight: 600;
  color: var(--sw-text);
}

.site-form-consent-text a {
  font-weight: 600;
}

.site-form button {
  background: linear-gradient(180deg, #ee6500, #ff721d);
  color: #fff;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 0.35rem;
}

.site-form button:hover {
  opacity: 0.95;
}

