﻿    html, body {
      height: 100%;
      margin: 0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    }


@font-face {
  font-family: 'ClanPro-Book';
  src: url('/upload/CMS/Newmen-Webseite/fonts/ClanPro-Book.eot') format('embedded-opentype');
  src: url('/upload/CMS/Newmen-Webseite/fonts/ClanPro-Book.woff') format('woff');
  src: url('/upload/CMS/Newmen-Webseite/fonts/ClanPro-Book.otf') format('opentype');
}
@font-face {
  font-family: 'ClanPro-Bold';
  src: url('/upload/CMS/Newmen-Webseite/fonts/ClanPro-Bold.eot') format('embedded-opentype');
  src: url('/upload/CMS/Newmen-Webseite/fonts/ClanPro-Bold.woff') format('woff');
  src: url('/upload/CMS/Newmen-Webseite/fonts/ClanPro-Bold.otf') format('opentype');
}

h1 {
    font-family: 'ClanPro-Bold';
    text-transform: uppercase;
    font-size: 24px !important;
    white-space: pre-line;
    margin-bottom: 2rem;
}
h2 {
  font-family: 'ClanPro-Bold';
  color: white;
  text-transform: uppercase;
  font-size: 36px;
}


a,
a:link,
a:visited,
a:active,
a:hover {
  color: black;
  text-decoration: underline;
}

input { font-family: 'ClanPro-Book' !important; }



    /* Container nimmt die ganze Viewport-Höhe und zentriert Inhalt */
    .mg-page {
      min-height: 100vh;
      display: flex;
      justify-content: center; /* horizontal */
      align-items: center;     /* vertikal */
      padding: 16px;           /* damit es auf Mobile nicht am Rand klebt */
      background: #f4f6f8;
    }

.btn {font-size: 14px !important; padding: 5px;}

.btn-nm {
    color: white !important;
    text-decoration: none !important;
    background-color: black;
    border: none;
    border-radius: 10px;
    padding: 10px 25px;
}

.btn-nm:hover {
  color: white !important;
  text-decoration: none;
}


    /* Die mittige Box */
    .mg-box {
      width: min(560px, 100%); /* max 560px, sonst 100% */
      padding: 24px;
      border-radius: 16px;
      background: white;
      box-shadow: 0 10px 30px rgba(0,0,0,0.12);
      text-align: center;
    }



    .mg-box p {
      margin: 0;
      line-height: 1.5;
      color: #444;
    }

    /* Optional: kleine Anpassungen je Gerät (nicht nötig fürs Zentrieren) */
    @media (min-width: 768px) {
      .mg-box { padding: 32px; }
      .mg-box h1 { font-size: 1.6rem; }
    }

    @media (min-width: 1024px) {
      .mg-box { width: 600px; }
    }


.btn-news {
  font-family: 'ClanPro-Book';
  background-color: black;
  color: white !important;
  font-size: 16px !important;
  border: none;
  border-radius: 3px;
  text-transform: none;
  transition: all 0.5s;
  position: relative;
  cursor: pointer;
  padding: 10px 10px 7px 10px;
  text-decoration: none !important;
  margin-top: 25px;
  margin-bottom: 25px;
}

.btn-news::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  cursor: pointer;
  padding: 10px 10px 7px 10px;
  border-radius: 3px;
  text-decoration: none !important;
}

.btn-news:hover::before {
  opacity: 0;
  transform: scale(0.5, 0.5);
  cursor: pointer;
  padding: 10px 10px 7px 10px;
  border-radius: 3px;
  text-decoration: none !important;
}

.btn-news::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  border: 0px solid rgba(255, 255, 255, 1);
  transform: scale(1.2, 1.2);
  cursor: pointer;
  padding: 10px 10px 7px 10px;
  border-radius: 3px;
  text-decoration: none !important;
}

.btn-news:hover::after {
  opacity: 1;
  transform: scale(1, 1);
  padding: 10px 10px 7px 10px;
  border-radius: 3px;
  text-decoration: none !important;
}
