html {
  box-sizing: border-box;
  font-size: 100%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  max-width: 100%;
  min-height: 100vh;
  height: auto;
  letter-spacing: 0.1em;
}

/* LOGO */
.logo {
  width: 180px;
}

/* HEADLINES */
h4 {
  color: #024873;
}

/* LINK BUTTONS */
.links__item {
  display: block;
  max-width: 550px;
  margin: 0 auto 5px;
  padding: 15px 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  color: #fff;
}

.links__item .links__item--green {
  border-radius: 25px;
  border: 2px solid #ffbd4c;
  background-color: #ffbd4c;
}

.links__item .links__item--green:hover {
  background-color: #fff;
  color: #ffbd4c;
}

/* SOCIAL CHANNELS – FIXED & CLICKABLE */
.channels {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  position: relative;
  z-index: 1000;        /* <<< garantiert klickbar */
  pointer-events: auto;
}

.channels__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0;
  position: relative;
  z-index: 1001;
  pointer-events: auto;
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
}

.channels__item:hover {
  transform: scale(1.25);
}

.channels__item img {
  display: block;
  width: 40px;
  height: 40px;
}
