/*
Theme Name: Krampus Mystic
Author: Markus
Description: Düstere, mystische Krampus-Theme-Vorlage mit Startseite, Beitragsliste und Event-Bereich (The Events Calendar kompatibel).
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: krampus-mystic
*/

:root {
    --krampus-bg: #0b0b0b;
    --krampus-text: #d1d1d1;
    --krampus-red: #f00;
    --krampus-red-strong: #c91b1b;
    --krampus-gray: #2b2b2b;
}

html,
body {
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at center, var(--krampus-bg) 60%, #000 100%);
    color: var(--krampus-text);
    line-height: 1.6;
}

p{
	font-family: Arial, Helvetica, sans-serif;
}


h1,h2,h3,h4,h5,h6{
	    font-family: 'Jim Nightshade', cursive;
}
wp-element-caption{
	font-family: Arial, Helvetica, sans-serif;
}


a {
    color: var(--krampus-red);
    text-decoration: none;
}

a:hover {
    color: var(--krampus-red-strong);
}

.container {
    width: min(1100px, 92vw);
    margin: 0 auto;
    padding: 24px 0;
}

header.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid #111;
    backdrop-filter: blur(6px);
}

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

.site-title a {
    color: #f2f2f2;
    font-weight: 800;
    font-size: clamp(18px, 2.4vw, 26px);
    letter-spacing: 0.5px;
}

.site-tagline {
    opacity: .8;
    font-size: 14px;
}

nav.primary-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

nav.primary-menu a {
    color: #ddd;
    padding: 8px 10px;
    border-radius: 10px;
}

nav.primary-menu a:hover {
    background: #151515;
}

.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 60px 0;

  background:
    linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.30)),
    url("https://spbt.at/wp-content/uploads/2025/12/bg.jpeg") center / cover no-repeat;

  border-bottom: 1px solid #111;
  
}
.hero h1 {
  font-size: clamp(38px, 7vw, 84px);
  margin: 0;
  color: #f4f4f4;
  text-shadow: 0 0 16px rgba(139, 0, 0, .65);
}

.hero p {
  margin-top: 250px;
  opacity: .9;
}

@media (max-width: 768px) {
  .hero {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #000;
    min-height: 60vh;
  }

  .hero p {
    margin-top: 150px;
  }
}


.button,
.wp-element-button,
.button a,
.hero .cta a {
    display: inline-block;
    background: var(--krampus-red);
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover,
.wp-element-button:hover,
.hero .cta a:hover {
    background: var(--krampus-red-strong);
    box-shadow: 0 0 18px rgba(201, 27, 27, .55);
    transform: translateY(-1px);
}

.section {
    padding: 56px 0;
    border-bottom: 1px solid #111;
    background: rgba(0, 0, 0, 0.35);
}

.section h2 {
    margin-top: 0;
    text-shadow: 0 0 12px rgba(139, 0, 0, .55);
}

.grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.card {
    background: #121212;
    border: 1px solid #1b1b1b;
    border-radius: 14px;
    padding: 16px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .45);
    border-color: #2a2a2a;
}

.post-meta {
    font-size: 13px;
    color: #bcbcbc;
    opacity: .9;
}

footer.site-footer {
    background: #0a0a0a;
    border-top: 1px solid #111;
    padding: 26px 0;
    text-align: center;
    color: #bdbdbd;
}

footer .footer-menu {
    margin-top: 10px;
}

footer .footer-menu a {
    color: #bbb;
    margin: 0 8px;
}

li::marker {
  font-size: 0em;
}



