* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.main,

.main * {
  background-color: transparent !important;
}

.main .container {
  background: transparent !important;
}

html, body {
  height: 100%;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

.highlight {
  color: #ff3b2f;              /* leuchtendes Rot */
  font-style: italic;          /* schräg */
  font-weight: 700;
}

.highlight2 {
  color: #CF0;              /* leuchtendes Gelb */
  font-style: italic;          /* schräg */
  font-weight: 700;
  text-shadow:
    0 0 6px rgba(255,59,47,0.6),
    0 0 12px rgba(255,59,47,0.4);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

body {
  background-size: 1200px;
  font-family: Arial, Helvetica, sans-serif;
  background: 
    linear-gradient(rgba(247,244,239,0.72), rgba(247,244,239,0.72)),
    url('img/mauer.png');
    
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  color: #1f2933;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;

  background:
    radial-gradient(circle at 20% 20%, rgba(0,0,0,0.08), transparent 40%),
    radial-gradient(circle at 80% 40%, rgba(0,0,0,0.06), transparent 35%);
}

.sloagen


img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.header {
  background: linear-gradient(180deg, #ffffff 0%, #f6f3ee 100%);
  border-bottom: 1px solid rgba(166, 90, 58, 0.10);
  box-shadow: 0 6px 20px rgba(31, 41, 51, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo strong {
  display: block;
  font-size: 2rem;
  line-height: 1.1;
  color: #1f2933;
}

.logo span {
  display: block;
  margin-top: 4px;
  font-size: 0.95rem;
  color: #6b7280;
}

.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.nav a {
  display: inline-block;
  text-decoration: none;
  color: #2f3a40;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 16px;
  margin: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f3efe8 100%);
  border: 1px solid rgba(47, 58, 64, 0.08);
  box-shadow:
    0 3px 8px rgba(31, 41, 51, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition: all 0.2s ease;
}

.nav a:hover,
.nav a.menu-current,
.nav a.menu-parent {
  color: #a65a3a;
  transform: translateY(-1px);
  box-shadow:
    0 8px 18px rgba(31, 41, 51, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.hero {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      rgba(47,49,54,0.85),
      rgba(166,90,58,0.80)
    ),
    url('img/mauer.png');

  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  color: #ffffff;

  padding: 60px 0 30px;   /* ?? kleiner gemacht */
}

.hero h1 {
  margin-bottom: 10px;
}

.hero p {
  margin-bottom: 0;
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.12), transparent 40%),
    radial-gradient(circle at 80% 40%, rgba(255,255,255,0.08), transparent 35%);

  background-size: 80px 40px, 80px 40px, auto, auto;

  transform: perspective(900px) rotateX(25deg);
  transform-origin: top;

  opacity: 0.25;
  pointer-events: none;
}

.hero::after {
  display: none;
}

.main {
  padding: 60px 0 80px;
}

.content-area {
  position: relative;

  background: rgba(255,255,255,0.28) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 22px;
  padding: 40px;

  border: 1px solid rgba(255,255,255,0.35);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.35),   /* Hauptschatten */
    0 10px 30px rgba(0,0,0,0.25),   /* Mittelschicht */
    0 2px 10px rgba(0,0,0,0.15),    /* feine Tiefe */
    inset 0 1px 0 rgba(255,255,255,0.6); /* Lichtkante oben */
}


.content-area::before {
	background-color: transparent !important;
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(rgba(166,90,58,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(166,90,58,0.03) 1px, transparent 1px);

  background-size: 60px 30px;
  opacity: 0.4;

  pointer-events: none;
}

.content-area h1,
.content-area h2,
.content-area h3 {
  color: #2f3a40;
  margin-bottom: 16px;
  line-height: 1.2;
}

.content-area p,
.content-area ul,
.content-area ol {
  margin-bottom: 18px;
}

.content-area a {
  color: #a65a3a;
}

.content-area input[type="text"],
.content-area input[type="email"],
.content-area textarea,
.content-area select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8d2c8;
  border-radius: 10px;
  background: #fff;
  font-size: 1rem;
}

.content-area input[type="submit"],
.content-area button {
  display: inline-block;
  background: #a65a3a;
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.content-area input[type="submit"]:hover,
.content-area button:hover {
  background: #8f4d31;
}

.footer {
  margin-top: 40px;
  background: linear-gradient(135deg, #232323 0%, #2f3136 60%, #3a2b24 100%);
  color: #e5e7eb;
  padding: 34px 0;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }

  .nav .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero {
    padding: 70px 0;
  }

  .content-area {
    padding: 24px;
  }
}