/* ===== NEW COLOR PALETTE & TYPOGRAPHY ===== */
:root {
  --z-bg: #faf7f0;               /* топъл крем фон вместо сиво-бяло */
  --z-surface: #ffffff;
  --z-text: #2b2418;             /* топло тъмно кафяво-черно */
  --z-muted: #7a7263;

  --z-primary: #4a6b3a;          /* маслинено зелено */
  --z-primary-hover: #3a5530;
  --z-primary-light: #e8f0e2;

  --z-accent: #d97b3f;           /* теракота / оранж */
  --z-accent-hover: #c1652c;
  --z-accent-light: #fbe9dc;

  --z-gold: #c9a227;             /* за "символична цена" бадж */
  --z-border: #e8e2d3;

  --z-radius: 16px;
  --z-radius-sm: 100px;
  --z-shadow: 0 2px 8px rgba(43,36,24,0.06);
  --z-shadow-hover: 0 10px 24px rgba(43,36,24,0.14);

  /* NEW FONTS */
  --font-display: 'Fraunces', 'Georgia', serif;   /* топъл сериф за заглавия */
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

body {
  background: var(--z-bg);
  font-family: var(--font-body);
  color: var(--z-text);
  line-height: 1.6;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6, .entry-title, .section-title {
  font-family: var(--font-display);
  font-weight: 700;
}

body, p, a, button, input, textarea, select {
  font-family: var(--font-body);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--z-primary);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--z-primary-hover);
}

ul, ol {
  list-style: none;
}

.container, .site-content, main {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ===== HEADER / NAV ===== */
header, .site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--z-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--z-primary);
}

.site-logo .logo-icon {
  font-size: 1.5rem;
}

.site-logo .logo-text span {
  color: var(--z-accent);
}

.site-header nav ul,
header nav ul {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  align-items: center;
}

.site-header nav a, header nav a {
  color: var(--z-text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.site-header nav a:hover, header nav a:hover {
  color: var(--z-primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
}

.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--z-text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.site-main {
  flex: 1;
  padding-block: 2.5rem;
}

/* ===== HERO (Теракота CTA + Маслинен фон) ===== */
.hero, .site-hero, section.hero, .hero-banner {
  background: linear-gradient(160deg, #4a6b3a 0%, #33492a 100%) !important;
  border-radius: 24px;
  padding: 4.5rem 2rem 3.5rem !important;
  text-align: center;
  color: #ffffff !important;
  margin-bottom: 2.5rem;
  border: none !important;
}

.hero h1, .site-hero h1, .hero-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem) !important;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 1rem;
  color: #ffffff !important;
}

.hero p, .site-hero p, .hero-banner p {
  font-size: 1.05rem !important;
  opacity: 0.92;
  max-width: 620px;
  margin: 0.75rem auto 1.75rem !important;
  color: #e8f0e2 !important;
}

.hero .buttons, .hero-cta {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer, .site-footer {
  background: #2b2418;
  color: #e8e2d3;
  padding: 2.5rem 2rem;
  margin-top: 3rem;
  border-radius: 28px 28px 0 0;
  font-size: 0.9rem;
}
footer a, .site-footer a { color: #d97b3f; }

.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(232, 226, 211, 0.15);
}

.footer-logo {
  color: #ffffff;
}

.footer-tagline {
  max-width: 400px;
  font-size: 0.9rem;
  margin-top: 0.75rem;
  color: #b8b0a0;
}

.footer-menu {
  display: flex;
  gap: 1.5rem;
}

.footer-menu a {
  color: #e8e2d3;
  font-size: 0.9rem;
}

.footer-menu a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #8c8272;
  text-align: center;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--z-surface);
    border-bottom: 1px solid var(--z-border);
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }

  .site-nav.is-active {
    display: block;
  }

  .site-nav .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
