/* Separated CSS. Simple theme, responsive, centered content column. */

:root{
  /*
  --text: #3f3f3f;
  --bg: #fafafa;
  --accent: #085400;
  */  
  /* Hintergrund: ruhiges, edles Grau */

  /* Glas */
  --glassHighlight: rgba(255,255,255,0.70);
  --card: rgba(255,255,255,0.55);

  /*
  --shadow: 0 8px 32px 0 rgba(0,0,0,0.16);
  */

  --text: #272727;
  --accent: #085400;

  --bg0: #e7e9ee;
  --bg1: #f6f7f9;

  --glass: rgba(255,255,255,0.34);
  --glassBorder: rgba(255,255,255,0.40);
  --shadow: 0 18px 55px rgba(0,0,0,0.12);
}

*{ box-sizing: border-box; }

body{
  margin: 0;
  font-family: Tahoma, Verdana, Arial, sans-serif;
  color: var(--text);
  
  /* background: var(--bg); */
  background:
    radial-gradient(800px 500px at 10% 5%, rgba(255,255,255,0.95), transparent 55%),
    radial-gradient(900px 600px at 90% 10%, rgba(255,255,255,0.70), transparent 58%),
    radial-gradient(700px 500px at 50% 110%, rgba(255,255,255,0.55), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));

  line-height: 1.45;
  font-size: clamp(16px, 2.2vw, 20px);
}

.page{
  max-width: 48rem;
  margin: 0 auto;
  padding: 16px;
}

.header{
  margin-bottom: 18px;
}

.title{
  margin: 0 0 8px 0;
  line-height: 1.15;
}

.subtitle{
  margin: 0 0 10px 0;
  font-weight: 700;
}

.address{
  font-style: normal;
  margin: 0;
}

.section,
.notice,
.info{
  margin: 18px 0;
  padding: 14px;
  border-radius: 10px;
  /*
  background: var(--card);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.18);
  */

  position: relative;
  background: var(--glass);
  border: 1px solid var(--glassBorder);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

/* ganz leichte Lichtkante oben */
.section::before,
.notice::before,
.info::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(500px 120px at 30% 0%, rgba(255,255,255,0.75), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.45), transparent 40%);
  opacity: 0.40;
}

/* very subtle inner edge */
.section::after,
.notice::after,
.info::after{
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(10px - 1px);
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
  opacity: 0.9;
}

.sectionTitle{
  margin-top: 0;
  margin-bottom: 0.6em;
  font-weight: 700;
  line-height: 1.2;
}

.notice,
.info{
  color: var(--accent);
}

.notice p,
.info p{
  margin: 8px 0;
}

p{
  margin: 0.7em 0;
}

.bulletList{
  margin: 10px 0 0 0;
  padding-left: 1.2em;
}

.bulletList li{
  margin: 6px 0;
}

.table{
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.table th,
.table td{
  padding: 8px 10px;
  vertical-align: top;
  text-align: left;
}

.table th{
  font-weight: 700;
  white-space: nowrap;
  width: 1%;
}

ul{
  padding-left: 1.4em;
  margin: 0.6em 0;
}

li{
  margin: 0.4em 0;
}

.btnRow{
  margin: 12px 0 0 0;
}

.btn{
  display: inline-block;
  text-align: center;
  /* border-radius: 5px; */
  box-shadow: 0px 1px 3px #666666;
  font-family: Arial, sans-serif;
  /* color: #ffffff; */
  font-size: 1.1em;
  font-weight: 600;
  /* padding: 10px 20px; v*/
  text-decoration: none;
  /* background: linear-gradient(to bottom, #0d6e00, #0a5400); */
  background: rgba(255,255,255,0.55);  
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: #3f3f3f;
  padding: 12px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover{
  /* background: linear-gradient(to bottom, #129600, #0d6e00); */
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn:focus-visible{
  outline: 3px solid #000;
  outline-offset: 2px;
}

.footer{
  margin-top: 24px;
  padding-top: 12px;
  display: flex;
  align-items: center;        /* vertikal sauber */
  justify-content: space-between; /* links / rechts */
  gap: 12px;
}

.footerNav{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footerLink{
  color: inherit;
  text-decoration: underline;
}

.cssBadge img{
  display: block; /* entfernt Inline-Gap unter Bildern */
}

@media (max-width: 480px){
  .page{ padding: 12px; }
  .section, .notice, .info{ padding: 12px; }
  .btn{ width: 100%; font-size: 18px; }
  .table th, .table td{ padding: 7px 8px; }
}
