/*
Theme Name: B'nai B'rith Alliance
Theme URI: https://example.org/
Author: Private
Author URI: https://example.org/
Description: Custom WordPress theme for The B'nai B'rith Alliance – Northern, Central and Southern Europe.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: bba-alliance
*/

:root {
  --primary: #1b4b7f;
  --primary-light: #285f9e;
  --accent: #d4a017;
  --bg: #f5f7fb;
  --text: #1f2933;
  --muted: #6b7280;
  --white: #ffffff;
  --border: #d1d5db;
  --radius-lg: 16px;
  --shadow-soft: 0 16px 30px rgba(15, 23, 42, 0.08);
  --shadow-light: 0 8px 15px rgba(15, 23, 42, 0.05);
  --transition-fast: 0.2s ease;
  --max-width: 1120px;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(circle at top left, #eef2ff 0, #f9fafb 40%, #eef2ff 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Layout */

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 250, 251, 0.95);
  border-bottom: 1px solid rgba(209, 213, 219, 0.6);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 60px;
}

.brand-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
}

.brand-subtitle {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Buttons */

.btn {
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--primary);
}

/* Hero */

.hero {
  padding: 2.5rem 0;
}

.hero-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hero-title span {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 1.5rem;
}

/* Footer */

footer {
  margin-top: auto;
  background: #0f172a;
  color: #e5e7eb;
  padding: 2rem 0;
}

.footer-small {
  font-size: 0.75rem;
  color: #9ca3af;
	/* News section */
.news-list {
  margin-top: 1rem;
}

.news-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.news-item:last-child {
  border-bottom: none;
}

.news-title {
  margin: 0 0 0.25rem 0;
  font-size: 1.125rem;
  line-height: 1.3;
}

.news-title a {
  text-decoration: none;
}

.news-title a:hover {
  text-decoration: underline;
}

.news-meta {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  opacity: 0.75;
}

.news-excerpt p {
  margin: 0;
}
	