:root {
  --bg-main: #050608;
  --bg-section: #111218;
  --accent-gold: #f5d27a;
  --accent-gold-soft: #ffd86b;
  --text-main: #f5f5f5;
  --text-muted: #bbbbbb;
  --border-soft: #2a2b33;
  --max-width: 960px;
  --radius: 10px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.6);
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background: var(--bg-main) url("img/background.svg");
  background-size: 600px;
  background-repeat: repeat;
  background-attachment: fixed;
  background-blend-mode: overlay;
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Layout container */
main {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto 40px auto;
  padding: 0 16px 40px 16px;
}

/* Header / logo */
.site-header {
  padding: 24px 16px 8px 16px;
  text-align: center;
}

.logo-img {
  max-width: 480px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(245, 210, 122, 0.4));
}

/* Banner gratis entree */
.banner-free {
  margin: 16px auto 24px auto;
  max-width: var(--max-width);
  background: linear-gradient(90deg, #2a1b08, #3b260d);
  border-radius: var(--radius);
  border: 1px solid rgba(245, 210, 122, 0.5);
  box-shadow: var(--shadow-soft);
  padding: 10px 16px;
  text-align: center;
  font-weight: 600;
  color: var(--accent-gold);
}

/* Sections */
section {
  background: rgba(10, 11, 18, 0.92);
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 18px 16px 20px 16px;
  margin-bottom: 20px;
}

section h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: var(--accent-gold);
}

/* Event info */
.event-info p {
  margin: 6px 0;
  font-size: 0.98rem;
}

.event-location {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.link-icon {
  width: 18px;
  height: 18px;
  margin-left: 6px;
  filter: drop-shadow(0 0 4px rgba(245, 210, 122, 0.6));
}

.maps-link:hover .link-icon {
  filter: brightness(1.2);
}

/* Contact */
.contact-section p {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-row label {
  font-size: 0.9rem;
  color: var(--accent-gold);
}

.form-row input,
.form-row textarea {
  background: #05060b;
  border-radius: 6px;
  border: 1px solid var(--border-soft);
  padding: 8px 10px;
  color: var(--text-main);
  font-size: 0.95rem;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent-gold-soft);
  box-shadow: 0 0 0 1px rgba(245, 210, 122, 0.4);
}

/* Buttons */
.btn-primary,
.btn-article {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #f5d27a, #ffb347);
  color: #2b1a07;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.btn-primary:hover,
.btn-article:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
  filter: brightness(1.05);
}

/* Footer */
.site-footer {
  margin-top: auto;
  padding: 16px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsive */
@media (min-width: 640px) {
  section {
    padding: 22px 22px 24px 22px;
  }

  .banner-free {
    padding: 12px 22px;
    font-size: 1rem;
  }

  .logo-img {
    max-width: 520px;
  }
}

@media (min-width: 900px) {
  main {
    padding: 0 0 40px 0;
  }

  .event-info,
  .contact-section,
  .article-section {
    padding-left: 26px;
    padding-right: 26px;
  }

  .logo-img {
    max-width: 600px;
  }
}
.jam-seo-block {
    background: #000;
    border: 1px solid rgba(255, 204, 102, 0.4);
    padding: 25px 30px;
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 0 18px rgba(255, 204, 102, 0.25);
}

.jam-seo-block h2 {
    color: #ffcc66;
    font-size: 26px;
    margin-bottom: 15px;
    text-shadow: 0 0 8px rgba(255, 204, 102, 0.6);
}

.jam-seo-block p {
    color: #e6e6e6;
    line-height: 1.6;
    font-size: 17px;
    margin-bottom: 15px;
}

.jam-seo-block strong {
    color: #ffcc66;
    font-weight: 600;
}
.route-link {
    color: #ffcc66;
    font-weight: 600;
    text-decoration: none;
    margin-left: 6px;
}

.route-link:hover {
    text-shadow: 0 0 8px rgba(255, 204, 102, 0.7);
}
