:root{
  /*
  --elm-bg: #0f1418;
  --elm-text: rgba(255,255,255,.88);
  --elm-muted: rgba(255,255,255,.68);
  --elm-line: rgba(255,255,255,.18);
  --elm-line-strong: rgba(255,255,255,.28);
  --elm-shadow: rgba(0,0,0,.55);
  --elm-btn-bg: rgba(15,20,24,.55);
  --elm-btn-border: rgba(255,255,255,.22);
  --elm-btn-border-hover: rgba(255,255,255,.40);

  --elm-gold-main: rgb(214,198,150);
  --elm-gold-soft: rgb(176,158,112);
  --elm-gold-muted: rgb(214,198,150);

  --elm-text-body: rgb(210,214,217);
  */
  --elm-bg: #0f1418;
  --elm-text: rgb(214,198,150);
  --elm-muted: rgb(214,198,150);
  --elm-line: rgb(176,158,112);
  --elm-line-strong: orange;
  
  --elm-shadow: rgba(0,0,0,.55);
  --elm-btn-bg: rgba(15,20,24,.55);
  --elm-btn-border: rgba(255,255,255,.22);
  --elm-btn-border-hover: rgba(255,255,255,.40);
}

/* Full height baseline */
html, body { height: 100%; }
.elmburg-body{
  background: var(--elm-bg);
  color: var(--elm-text);
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
}

/* Header / nav like mockup */
.elmburg-header{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1030;
  background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,0));
  backdrop-filter: blur(2px);
}

.elmburg-navbar{
  padding-top: .85rem;
  padding-bottom: .65rem;
}

.elmburg-navlink{
  color: rgba(255,255,255,.75) !important;
  font-size: .95rem;
  letter-spacing: .02em;
  padding: .25rem .25rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.elmburg-navlink:hover{
  color: rgba(255,255,255,.92) !important;
  border-bottom-color: rgba(255,255,255,.28);
}

.elmburg-navlink.active{
  color: rgba(255,255,255,.95) !important;
  border-bottom-color: rgba(255,255,255,.38);
}

.elmburg-navsep{
  margin: 0 .7rem;
  color: rgba(255,255,255,.35);
  transform: translateY(-1px);
}

.elmburg-topline{
  height: 1px;
  background: rgba(255,255,255,.12);
}

/* Hero (fills visible area) */
.elmburg-hero{
  min-height: 100vh;             /* requirement */
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 96px;             /* room for fixed header */
  padding-bottom: 56px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.elmburg-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 50% 35%, rgba(0,0,0,.15), rgba(0,0,0,.55)),
    linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.55));
}

.elmburg-hero > .container{
  position: relative;
  z-index: 2;
}

/* Center block typography */
.elm-brand{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  color: var(--elm-text);
  /*color: rgba(255,255,255,.80);*/
  letter-spacing: .08em;
  text-transform: lowercase;
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
}

.elm-brand::before, .elm-brand::after{
  content: "—";
  margin: 0 .55rem;
  color: rgba(255,255,255,.55);
}

.elm-title{
  font-weight: 500;
  text-shadow: 0 10px 35px var(--elm-shadow);
  line-height: 1.05;
  margin: 0;
}

.elm-title .line1{ font-size: clamp(2.3rem, 5vw, 4.1rem); }
.elm-title .line2{ font-size: clamp(1.6rem, 3.6vw, 3.2rem); }

.elm-hr{
  width: min(520px, 92%);
  height: 1px;
  background: var(--elm-line);
  margin: 1rem auto .8rem;
  position: relative;
}

.elm-hr::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%,-50%) rotate(45deg);
  background: rgba(255,255,255,.22);
  outline: 1px solid rgba(0,0,0,.25);
}

.elm-hr2{
  width: min(520px, 92%);
  height: 1px;
  background: var(--elm-line);
  margin: 1px auto 1px;
  position: relative;
}

.elm-hr2::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%,-50%) rotate(45deg);
  background: rgba(255,255,255,.22);
  outline: 1px solid rgba(0,0,0,.25);
}

.elm-quote{
  color: var(--elm-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  text-shadow: 0 8px 26px var(--elm-shadow);
  margin: 0 auto 1.35rem;
  max-width: 46rem;
}

.elm-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.6rem;
  border-radius: .15rem;
  background: var(--elm-btn-bg);
  border: 1px solid var(--elm-btn-border);
  color: var(--elm-text);
  /*color: rgba(255,255,255,.88);*/
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0,0,0,.45);
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
  font-size: 1.05rem;
}

.elm-btn:hover{
  transform: translateY(-1px);
  border-color: var(--elm-btn-border-hover);
  background: rgba(15,20,24,.65);
  color: var(--elm-muted);
  /* color: rgba(255,255,255,.95); */
}

/* Bottom tagline */
.elm-footline{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  text-shadow: 0 10px 30px var(--elm-shadow);
}

.elm-footline span{
  display: inline-block;
  padding: .35rem .75rem;
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}

/* Mobile tweaks */
@media (max-width: 575.98px){
  .elmburg-hero{ padding-top: 86px; }
  .elm-brand{ font-size: 1.02rem; }
}

/* Page wrapper below fixed header */
.elmburg-page{
  padding-top: 86px; /* fixed header space */
}

/* Chroniken hero: etwas flacher als Startseite */
.elmburg-hero--chroniken{
  min-height: 58vh;
  padding-top: 46px;   /* zusätzlich zur page padding-top */
  padding-bottom: 44px;
}

.elm-title--single .line1{
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
}

.elm-lead{
  color: var(--elm-muted);
  font-size: clamp(1.02rem, 1.35vw, 1.15rem);
  max-width: 54rem;
  margin: 0 auto;
  line-height: 1.65;
  text-shadow: 0 8px 26px var(--elm-shadow);
}

/* Divider like the mockup (thin line + little ornament) */
.elm-section-divider{
  position: relative;
  height: 52px;
  margin: 0;
  background:
    linear-gradient(to right, transparent, rgba(255,255,255,.14), transparent);
}

.elm-section-divider .orn{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%,-50%) rotate(45deg);
  background: rgba(255,255,255,.18);
  outline: 1px solid rgba(0,0,0,.25);
}

/* Sections */
.elmburg-section{
  padding-top: 22px;
  padding-bottom: 22px;
}

/* Band card */
.elm-bandcard{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(15,20,24,.65);
  box-shadow: 0 18px 35px rgba(0,0,0,.45);
  overflow: hidden;
}

.elm-bandimg{
  height: 220px;
  background-size: cover;
  background-position: center;
  filter: saturate(.9) contrast(1.03);
}

@media (min-width: 992px){
  .elm-bandimg{ height: 100%; min-height: 330px; }
}

.elm-bandbody{
  padding: 22px 22px 20px;
}

.elm-bandtitle{
  margin: 0 0 .6rem;
  font-weight: 500;
  color: var(--elm-text);
  /* color: rgba(236,232,223,.92); */
  text-shadow: 0 8px 26px var(--elm-shadow);
  font-size: clamp(1.35rem, 2.1vw, 1.7rem);
}

.elm-bandtext{
  margin: 0 0 1rem;
  color: var(--elm-muted);
  /*color: rgba(210,214,217,.86);*/
  line-height: 1.6;
}

.elm-bandactions{
  display: flex;
  justify-content: flex-end;
}

.elm-btn--small{
  padding: .55rem 1.05rem;
  font-size: 1.0rem;
}

.elm-arrow{
  display: inline-block;
  margin-left: .35rem;
  transform: translateY(-1px);
}

/* Pager like mockup */
.elm-pager{
  display: flex;
  justify-content: center;
  gap: .75rem;
  padding: 10px 0 6px;
  color: rgba(255,255,255,.65);
}

.elm-pager--small{
  padding-top: 12px;
}

.elm-page{
  color: rgba(255,255,255,.60);
  text-decoration: none;
  padding: .15rem .25rem;
  border-bottom: 1px solid transparent;
}

.elm-page:hover{
  color: rgba(255,255,255,.88);
  border-bottom-color: rgba(255,255,255,.22);
}

.elm-page.active{
  color: rgba(255,255,255,.92);
  border-bottom-color: rgba(255,255,255,.30);
}

/* Sub block like "Fragmente & Randnotizen" */
.elm-subblock{
  text-align: center;
  padding: 18px 0 8px;
}

.elm-subtitle{
  margin: 0 0 .65rem;
  font-weight: 500;
  color: rgba(236,232,223,.92);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  text-shadow: 0 8px 26px var(--elm-shadow);
}

.elm-subtext{
  margin: 0 auto;
  max-width: 46rem;
  color: rgba(210,214,217,.84);
  line-height: 1.65;
}

.promotion-link {
  color:rgb(112, 96, 46);
  font-weight: bold;
  text-decoration: none;
}

.promotion-link:hover {
  text-decoration: underline;
}

.partner-link {
  color: rgb(112, 96, 46);
  font-weight: bold;
  text-decoration: none;
}

.partner-link:hover {
  text-decoration: underline;
}

.disclaimer-link {
  color: rgb(112, 96, 46);
  font-weight: bold;
  text-decoration: none;
}

.disclaimer-link:hover {
  text-decoration: underline;
}

.mail-link  {
  color: rgb(112, 96, 46);
  font-weight: bold;
  text-decoration: none;
}

.mail-link:hover {
  text-decoration: underline;
}