:root {
  --font-family: 'Inter', sans-serif;
  --bg-color: #F8F9FA;
  --text-color: #2D3748;
  --heading-color: #1A202C;
  --primary-color: #2b5b3c;  /* Forest Green */
  --primary-hover: #1e402a;
  --secondary-color: #a67c52; /* Warm Wood Tone */
  --accent-color: #3182ce;    /* Blue Accent */
  --light-bg: #ffffff;
  --card-shadow: 0 4px 6px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
  --container-width: 1200px;
}

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

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Nav */
.site-header {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.site-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.main-navigation .menu {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.main-navigation a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.main-navigation a:hover {
  color: white;
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(43, 91, 60, 0.4), rgba(26, 32, 44, 0.8));
}

.hero-content {
  position: relative;
  z-index: 1;
  transform: translateY(20px);
  animation: slideUp 0.8s ease forwards;
  opacity: 0;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Main Main layout */
.site-main {
  flex-grow: 1;
  padding: 3rem 0;
}

/* Grid Cards */
.grid-section {
  margin-top: -50px;
  position: relative;
  z-index: 10;
  margin-bottom: 4rem;
}

.main-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.grid-card {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-color);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.grid-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  border-top-color: var(--secondary-color);
}

.grid-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.grid-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

/* Base pages & Typography */
h1, h2, h3, h4 {
  color: var(--heading-color);
  font-weight: 700;
}

.page-header {
  margin-bottom: 2rem;
  text-align: center;
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-meta, .page-description {
  color: #718096;
  font-size: 1.1rem;
}

.single-content .entry-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--light-bg);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}
.entry-content p {
  margin-bottom: 1.5rem;
}

/* List Layout (Cards) */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--light-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.08);
}

.card-img-placeholder {
  height: 180px;
  background-color: var(--secondary-color);
  background-size: cover;
  background-position: center;
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card-title a {
  color: var(--heading-color);
  text-decoration: none;
}

.card-meta {
  font-size: 0.85rem;
  color: #A0AEC0;
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  background-color: #2D3748;
  color: #E2E8F0;
  padding: 2.5rem 0;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

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

.footer-links a {
  color: #E2E8F0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  text-decoration: underline;
}

.footer-copy {
  font-size: 0.85rem;
  color: #A0AEC0;
}

/* Dynamic Specifics */
.dynamic-article .article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.category-badge {
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 0.5rem;
}

.article-body {
  max-width: 800px;
  margin: 2rem auto;
  font-size: 1.1rem;
}

/* Venue specifics */
.venue-status-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
}
.status-gr\fc n { background: #C6F6D5; color: #22543D; }
.status-rot { background: #FED7D7; color: #742A2A; }
.status-grau { background: #E2E8F0; color: #4A5568; }

.venue-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.info-group {
  margin-bottom: 1.5rem;
}

.venue-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .menu-toggle { display: block; }
  .main-navigation .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    padding: 1rem;
  }
  .main-navigation .menu.active {
    display: flex;
  }
  .venue-layout { grid-template-columns: 1fr; }
}

/* Dynamic List Specifics */
.article-list, .venues-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.dynamic-card {
  display: flex;
  background: var(--light-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
}
.dynamic-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
.dynamic-card-img {
  width: 250px;
  height: 200px;
  object-fit: cover;
}
.dynamic-card-content {
  padding: 1.5rem;
  flex: 1;
}
.venue-group {
  margin-bottom: 3rem;
}
.venue-group h2 {
  margin-bottom: 1.5rem;
  text-transform: capitalize;
  border-bottom: 2px solid var(--secondary-color);
  display: inline-block;
  padding-bottom: 0.5rem;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table th, .hours-table td {
  padding: 0.5rem;
  border-bottom: 1px solid #E2E8F0;
  text-align: left;
}
.author-info-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #E2E8F0;
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
