/* Přesunuté CSS z index.html */

:root {
  --bg: #f5f8f6;
  --card: #ffffff;
  --text: #1a1f1c;
  --muted: #5a6b60;
  --accent: #22c55e;
  --accent-light: #a7f3d0;
  --radius: 14px;
  --max-width: 1080px;
  --font-sans: 'Inter', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #86efac, #22c55e);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  box-shadow: 0 6px 14px rgba(34, 197, 94, 0.3);
}

.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(34, 197, 94, 0.3);
}

nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

nav a:hover {
  background: var(--accent-light);
  color: var(--text);
}

.cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(34,197,94,0.3);
}

.section {
  margin-top: 60px;
}

h2 {
  color: #14532d;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.reason {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.reason:hover {
  transform: translateY(-4px);
}

.reason span {
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
}

.reason h3 {
  color: #14532d;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.reason p {
  color: var(--muted);
  font-size: 0.95rem;
}

#map {
  height: 500px;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

footer {
  text-align: center;
  margin-top: 60px;
  font-size: 14px;
  color: var(--muted);
}

.news-banner {
  background: linear-gradient(135deg, #86efac, #d1fae5);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.2);
}

.news-content {
  max-width: 800px;
  margin: 0 auto;
}

.news-content h2 {
  color: #14532d;
  font-size: 2rem;
  margin-bottom: 16px;
  text-align: left;
}

.news-content p {
  color: #1a1f1c;
  font-size: 1rem;
  margin-bottom: 24px;
}

.news-content h3 {
  color: #14532d;
  font-size: 1.3rem;
  margin-top: 28px;
  margin-bottom: 12px;
  border-bottom: 2px solid #22c55e;
  padding-bottom: 8px;
}

.news-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.news-content li {
  color: #1a1f1c;
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.7;
}

.news-content li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
  font-size: 1.2rem;
}

.news-content strong {
  color: #14532d;
  font-weight: 700;
}

.news-content a {
  color: #22c55e;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #22c55e;
  transition: color 0.2s;
}

.news-content a:hover {
  color: #16a34a;
}

@media (max-width: 900px) {
  nav { display: none; }
  
  .news-banner {
    padding: 24px;
  }
  
  .news-content h2 {
    font-size: 1.6rem;
  }
}