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

html, body {
  width: 100%;
  font-family: 'Segoe UI', sans-serif;
  color: #111;
  background: #fff;
}

/* ── Hero image ── */
.tabor-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.tabor-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tabor-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.tabor-hero-title {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
  width: 90%;
}

/* ── Content area ── */
.tabor-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 5%;
}

.tabor-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.tabor-content .location{
  font-size: 1rem;
  color: #777;
  margin-bottom: 32px;
}
.tabor-content .location a {
  font-size: 1rem;
  color: #777;
  margin-bottom: 32px;
}

.tabor-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

/* ── Register button ── */
.tabor-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 16px 48px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  background: #111;
  border: 2px solid #111;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.tabor-btn:hover {
  background: transparent;
  color: #111;
}
