/* roboto-regular - latin */

    @font-face {
        font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 400;
        src: url('../fonts/roboto-v48-latin/roboto-v48-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
    }

    /* roboto-800 - latin */

    @font-face {
        font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 800;
        src: url('../fonts/roboto-v48-latin/roboto-v48-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
    }

/* Reset & Basics */
html, body {
  margin: 0;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* Global Layout */
body {
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f4f4f4 100%);

  color: #333;
  padding: 40px 20px;
  line-height: 1.7;
}

/* Container */
.container {
  background: linear-gradient(to bottom, #ffffff 0%, #f5f7fa 100%);
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  text-align: left;
  max-width: 720px;
  width: 100%;
  border: 1px solid rgba(200, 200, 200, 0.4);
  transition: box-shadow 0.3s ease;
}

.container:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

/* Headings */
h1 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: #222;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem); /* passt sich Bildschirmbreite an */
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #111;
  padding-left: 1rem;
  position: relative;
  background: linear-gradient(to right, rgba(255, 165, 0, 1) 4px, transparent 4px);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 4px 100%;
  hyphens: auto;
  overflow-wrap: break-word;
}


/* Paragraphs */
p,
address {
  font-size: 1.05rem;
  margin: 1rem 0;
  color: #444;
}

address {
    font-style: normal;
}

/* Links */

a[href^="http"],
a[href^="https"] {
  overflow-wrap: break-word;
  word-break: break-all;
}

a {
  color: #111;
  text-decoration: underline;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.75;
  text-decoration: none;
}

/* page header */

.page-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(150, 150, 150, 0.2);
}

.page-header h1 {
  font-size: 2.2rem;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #222;
}

.page-header .subtitle {
  font-size: 1rem;
  color: #666;
  margin-top: 0.5rem;
  font-style: italic;
}


/* notice box */
.notice-box {
  background: #f4f4f4; /* sehr helles Grau */
  border-left: 4px solid rgba(255, 165, 0, 1); /* dunkles Grau/Schwarz als Akzent */
  padding: 1.5rem;
  margin: 2rem auto;
  border-radius: 8px;
  font-size: 1rem;
  color: #111;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  line-height: 1.6;
  max-width: 700px;
  transition: background 0.3s ease;
}

.notice-box a {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
}

.notice-box a:hover {
  text-decoration: none;
  opacity: 0.8;
}



/* Footer */
.footer {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  opacity: 0.9;
}

.footer a {
  color: #444;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: rgba(255, 165, 0, 1);
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }

  .container {
    padding: 2rem;
  }

  p,
  address {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }

  .container {
    padding: 1.5rem;
  }

  p,
  address {
    font-size: 0.95rem;
  }
}
