/* JaneBooking — iroda.iko.hu brand system
   Palette and tokens mirrored from https://iroda.iko.hu/styles/style.css */

:root {
  --brand-navy: #1a237e;
  --brand-indigo: #3949ab;
  --brand-indigo-dark: #0d47a1;
  --brand-accent: #ffeb3b;       /* amber CTA */
  --brand-accent-dark: #ffc107;
  --brand-success: #4caf50;
  --brand-success-light: #8bc34a;
  --brand-danger: #c0392b;

  --brand-bg: #f8f9fa;
  --brand-surface: #ffffff;
  --brand-text: #333333;
  --brand-muted: #555555;
  --brand-faint: #888888;
  --brand-border: #e5e5e5;

  --brand-header: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
  --radius: 10px;
  --radius-sm: 5px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);

  --font-body: 'Georgia', 'Times New Roman', serif;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  margin: 0;
  background: var(--brand-bg);
  color: var(--brand-text);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.5;
}

a { color: var(--brand-indigo-dark); }

/* ---- Branded header ---- */
.site-header {
  background: var(--brand-header);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.site-header__brand {
  color: #fff;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .2px;
}
.site-header__tagline {
  font-size: .9rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ---- Main wrapper grows so footer sticks to bottom ---- */
.site-main { flex: 1 0 auto; }

/* ---- Branded footer ---- */
.site-footer {
  background: var(--brand-navy);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 1.25rem 1.5rem;
  font-size: .85rem;
  margin-top: 3rem;
}
.site-footer a { color: var(--brand-accent); text-decoration: none; }
.site-footer a:hover { color: var(--brand-accent-dark); }

/* ---- Shared primary CTA (amber, navy text — mirrors iroda "Ingyenes konzultáció") ---- */
.cta-button {
  background: var(--brand-accent);
  color: var(--brand-navy);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.cta-button:hover {
  background: var(--brand-accent-dark);
  transform: translateY(-2px);
  color: var(--brand-navy);
}
