

/* =========================================
   1) Schriftarten
   ========================================= */

@font-face {
  font-family: 'Inria Serif';
  src: url('/wp-content/themes/ausderliebe/fonts/inria-serif-v18-latin-300.woff2') format('woff2');
  font-style: normal;
  font-display: swap;
}

body, input, select, textarea {
  font-family: 'Inria Serif', 'Helvetica Neue', Arial, serif;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

h1, h2, h3, h4, h5, h6, button {
  font-family: 'Source Sans', sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
}


/* =========================================
   2) Hintergrundbild + Overlay
   ========================================= */

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: 100%;
  color: #fff;
}

body {
  background-image: url('https://ausderliebe.de/wp-content/uploads/2025/10/adl_cover_1920_72.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
}

/* OVERLAY (20 % Deckkraft)
   → sorgt für lesbare Typografie 
*/

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2); /* dunkles, transparentes Overlay */
}


/* =========================================
   3) Header + Navigation
   ========================================= */

header {
  padding: 20px;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(1px);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

header h1 {
  margin: 0 0 10px 0;
  font-size: 1.6rem;
  color: #000;
}
header h2 {
  margin: 0 0 10px 0;
  font-size: 1.4rem;
  color: #000;
}

header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

header nav ul li {
  display: inline-block;
  margin-right: 12px;
}

header nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

header nav ul li a:hover {
  text-decoration: underline;
}


/* =========================================
   4) Hauptinhalt
   ========================================= */

main {
  max-width: 800px;
  margin: 60px auto;
  padding: 30px 40px;

  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(1px);

  border-radius: 10px;
  color: #fff;
  font-size: 18px;
}

main h2 {
  margin-top: 0;
}

main nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

main nav ul li {
  display: inline-block;
  margin-right: 12px;
}

main nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

main nav ul li a:hover {
  text-decoration: underline;
}


/* =========================================
   5) Footer
   ========================================= */

footer {
  margin-top: 80px;
  padding: 20px;
  text-align: center;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(1px);
}

footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
}

footer a:hover {
  text-decoration: underline;
}


/* =========================================
   6) Sonstiges
   ========================================= */

img { max-width: 100%; height: auto; }
button { cursor: pointer; }

