* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle at top, #2b1f10, #050403);
  color: #e7d6a2;
  font-family: 'Inter', sans-serif;
}

/* NAVBAR */
.navbar {
  height: 80px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(215, 180, 90, 0.2);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-circle {
  width: 42px;
  height: 42px;
  border: 2px solid #d6b15a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;        /* ⬅️ tohle je nutné */
}

.logo-circle img {
  max-width: 70%;          /* ⬅️ NIKDY width:100% */
  max-height: 70%;
  object-fit: contain;
  display: block;
}

.logo-text .title {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 14px;
}

.logo-text .subtitle {
  font-size: 10px;
  letter-spacing: 1px;
  opacity: 0.7;
}

nav a {
  margin-left: 30px;
  color: #e7d6a2;
  text-decoration: none;
  opacity: 0.8;
}

nav a:hover {
  opacity: 1;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-logo {
  width: 120px;
  height: 120px;
  border: 3px solid #d6b15a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 36px;
  margin: 0 auto 30px;
}

.hero-logo img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  display: block;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 48px;
  letter-spacing: 3px;
}

.hero h2 {
  font-size: 14px;
  letter-spacing: 3px;
  margin: 15px 0 30px;
  opacity: 0.8;
}

.hero p {
  max-width: 600px;
  margin: auto;
  line-height: 1.7;
  opacity: 0.85;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn {
  padding: 14px 32px;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
}

.btn.primary {
  background: #d6b15a;
  color: #1a1206;
}

.btn.outline {
  border: 1px solid #d6b15a;
  color: #d6b15a;
}

/* ANNOUNCEMENTS */
.announcements {
  padding: 120px 80px;
}

.announcements h2 {
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 32px;
  margin-bottom: 15px;
}

.section-desc {
  text-align: center;
  opacity: 0.7;
  margin-bottom: 70px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
}

.card {
  background: linear-gradient(180deg, #1b140a, #0c0804);
  border: 1px solid rgba(214, 177, 90, 0.25);
  padding: 30px;
  border-radius: 10px;
}

.tag {
  display: inline-block;
  background: rgba(214, 177, 90, 0.15);
  color: #d6b15a;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.card h3 {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  margin-bottom: 15px;
}

.card p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
}

.card a {
  display: inline-block;
  margin-top: 18px;
  color: #d6b15a;
  font-size: 13px;
  cursor: pointer;
}

.government {
  background: radial-gradient(circle at top, #1b140c, #0f0b06);
  padding: 100px 8%;
  color: #e8dcc6;
  text-align: center;
}

.government h2 {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  color: #d4af37;
  margin-bottom: 10px;
}

.gov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.gov-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 35px;
  text-align: left;
}

.gov-card.large {
  grid-column: span 2;
}

.gov-card h3 {
  font-family: 'Cinzel', serif;
  color: #f5e6b8;
  margin: 15px 0;
}

.gov-card p {
  font-size: 14px;
  color: #cbbf9c;
}

.gov-card .tag {
  background: #d4af37;
  color: #1a1208;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
}

.footer {
  background: radial-gradient(circle at top, #1b140c, #0f0b06);
  padding: 80px 8% 30px;
  color: #cbbf9c;
  font-size: 14px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.logo-circle.small {
  width: 48px;
  height: 48px;
  border: 2px solid #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-weight: 700;
  font-family: 'Cinzel', serif;
}

.footer-desc {
  max-width: 320px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  color: #d4af37;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: #cbbf9c;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-col a:hover {
  color: #d4af37;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-bottom {
  text-align: center;
  margin-top: 25px;
  color: #9f946f;
  font-size: 13px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal.active {
  display: flex;
}

.modal-box {
  background: radial-gradient(circle at top, #1b140c, #0f0b06);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 40px;
  max-width: 600px;
  width: 90%;
  color: #e8dcc6;
  position: relative;
}

.modal-box h3 {
  font-family: 'Cinzel', serif;
  color: #d4af37;
  margin-bottom: 20px;
}

.modal-box p {
  line-height: 1.7;
  color: #cbbf9c;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
  color: #d4af37;
}

section {
  scroll-margin-top: 120px; /* výška navbaru */
}

footer {
  scroll-margin-top: 120px;
}

html {
  scroll-behavior: smooth;
}