@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700&family=Marcellus&display=swap");

:root {
  --font-body: "Cairo", "Segoe UI", Tahoma, sans-serif;
  --font-display: "Marcellus", "Cairo", serif;
  --color-emerald: #3e7c5f;
  --color-emerald-dark: #2d5f47;
  --color-ink: #1b2a24;
  --color-muted: #5a6b63;
  --color-sand: #f7f2e8;
  --shadow-soft: 0 12px 24px rgba(27, 42, 36, 0.08);
  --shadow-strong: 0 24px 60px rgba(27, 42, 36, 0.15);
}

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

body {
  font-family: var(--font-body);
  min-height: 100vh;
  padding: 0;
  color: var(--color-ink);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
}

p {
  line-height: 1.6;
}

a {
  text-decoration: none;
  transition: all 0.3s;
}

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

.badge {
  background: #10b981;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-left: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--color-emerald);
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--color-emerald-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-ink);
  border-color: rgba(27, 42, 36, 0.2);
}

.btn-secondary:hover {
  border-color: var(--color-emerald);
  color: var(--color-emerald-dark);
}
