/* =========================================
   BURINANDA – Stylesheet
   ========================================= */

/* --- Lokale Schriftart Einbindung --- */
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter/static/Inter_18pt-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* --- Grundlayout --- */
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #0d0d0d; /* edles Schwarz */
  color: #f1f1f1;
  line-height: 1.8;
  font-size: 18px;
  overflow-x: hidden;
}

/* --- Header --- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #111;
  border-bottom: 1px solid #222;
  box-shadow: 0 2px 10px rgba(0,0,0,0.6);
  position: relative;
  z-index: 10;
}
header h1 {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
  color: #f5f5f5;
}
.menu-toggle {
  cursor: pointer;
  font-size: 1.8rem;
  color: #f5f5f5;
  user-select: none;
  transition: transform 0.3s ease;
}

/* --- Navigation --- */
nav {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: #111;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.4s ease, opacity 0.4s ease;
  z-index: 9;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
nav.open {
  height: auto;
  opacity: 1;
  overflow: visible;
}
nav a {
  display: block;
  padding: 1rem;
  border-top: 1px solid #222;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  color: #f1f1f1;
}
nav a:hover {
  background: #1a1a1a;
  color: #D4AF37;
}

/* --- Desktop Navigation --- */
.header-links {
  display: none;
}
.header-links a {
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 500;
  color: #f1f1f1;
  position: relative;
}
.header-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #D4AF37;
  transition: width 0.3s ease;
}
.header-links a:hover::after {
  width: 100%;
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
  nav { display: none !important; }
  .header-links {
    display: flex;
    justify-content: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid #222;
    background: #111;
  }
}

/* --- Hauptinhalt --- */
main {
  max-width: 1000px;
  margin: 0rem auto;
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
}

/* --- Einleitender Satz --- */
.intro-line {
  font-size: 1.4rem;
  font-family: 'Georgia', serif;
  font-style: italic;
  color: #ccc;
  margin-bottom: 1.5rem;
  letter-spacing: 0.3px;
}

/* --- Sections --- */
section {
  padding: 1rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid #222;
}
section:nth-of-type(odd) { background: #0d0d0d; }
section:nth-of-type(even) { background: #111; }

section h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: #d4af37;
}
section p, section ul {
  max-width: 700px;
  margin: 0.8rem auto;
  color: #e8e8e8;
}

/* --- Typografie --- */
h3 {
  color: #d4af37;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}
p {
  color: #eee;
  margin-bottom: 1rem;
}
ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}
ul li {
  margin-bottom: 0.6rem;
}
strong {
  color: #d4af37;
}
a {
  color: #d4af37;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* --- Bilder --- */
.section-image {
  max-width: 200px;
  margin: 1.5rem auto;
  display: block;
  border-radius: 50%;
  opacity: 0.9;
}

/* --- Pure Variante: Nur das reine Bild, ohne Effekte --- */
.section-image-pure {
  max-width: auto;
  margin: 0rem auto;
  display: block;
  border-radius: 0%;
  border: none;
  box-shadow: none;
  background: none;
  padding: 0;
  filter: none;
  opacity: 1;
  transition: none;
}


/* --- Edle Variante: Section Image Black --- */
.section-image-black {
  max-width: 220px;
  margin: 1.5rem auto;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle at center, #0d0d0d 60%, #1a1a1a 100%);
  box-shadow:
    0 0 10px rgba(255,255,255,0.08),
    0 0 25px rgba(255,255,255,0.06),
    inset 0 0 10px rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px;
  filter: brightness(0.95);
  transition: all 0.4s ease;
  opacity: 0.95;
}

/* Sanfter Lux-Glanz beim Hover */
.section-image-black:hover {
  box-shadow:
    0 0 15px rgba(255,255,255,0.15),
    0 0 35px rgba(255,255,255,0.08),
    inset 0 0 12px rgba(255,255,255,0.1);
  transform: scale(1.03);
  filter: brightness(1.05);
}


/* --- Hervorhebungen --- */
.highlight-blue {
  background: #0022cc;
  color: #fff;
  padding: 0 0.3em;
  border-radius: 4px;
}
.highlight-gold {
  background: #d4af37;
  color: #111;
  padding: 0 0.3em;
  border-radius: 4px;
}
.highlight-blue-glow,
.highlight-gold-glow {
  font-weight: 600;
  position: relative;
  transition: all 0.4s ease;
}
.highlight-blue-glow:hover {
  color: #7fa9ff;
  text-shadow: 0 0 8px rgba(0,34,204,0.4);
}
.highlight-gold-glow:hover {
  color: #d4af37;
  text-shadow: 0 0 8px rgba(212,175,55,0.4);
}

/* --- Highlight Box --- */
.highlight-box {
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

/* --- Hinweisbox (Info-Bereich) --- */
.hinweis-box {
  background: linear-gradient(90deg, rgba(212,175,55,0.05), rgba(0,34,204,0.08));
  border-left: 4px solid #d4af37;
  border-radius: 6px;
  padding: 1.2rem;
  margin: 2rem auto;
  max-width: 700px;
  text-align: left;
}

/* --- Buttons --- */
.btn-burinanda {
  display: inline-block;
  background: linear-gradient(90deg, #0022cc 0%, #001a99 100%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.9rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 34, 204, 0.3);
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn-burinanda:hover {
  background: linear-gradient(90deg, #001a99 0%, #000f66 100%);
  box-shadow: 0 0 25px rgba(0, 34, 204, 0.6);
  transform: translateY(-2px);
  color: #fff;
}
.btn-burinanda:active {
  transform: translateY(0);
  box-shadow: 0 0 10px rgba(0, 34, 204, 0.4);
}
.btn-burinanda.gold {
  background: linear-gradient(90deg, #d4af37 0%, #b8961d 100%);
  color: #111;
  box-shadow: 0 0 15px rgba(212,175,55,0.3);
}
.btn-burinanda.gold:hover {
  background: linear-gradient(90deg, #b8961d 0%, #8a6f14 100%);
  box-shadow: 0 0 25px rgba(212,175,55,0.6);
  color: #fff;
}
.btn-center {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .btn-burinanda {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }
}

/* --- Kontaktformular --- */
.contact-form {
  background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem auto;
  max-width: 650px;
  text-align: left;
  box-shadow: 0 0 25px rgba(255,255,255,0.05);
}
.contact-form label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.4rem;
  color: #d4af37;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 95%;
  padding: 0.8rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: #111;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 10px rgba(212,175,55,0.3);
}
.form-hinweis {
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 1.2rem;
  line-height: 1.6;
}
.text-accent {
  color: #d4af37;
  text-decoration: underline;
}
.kontakt-hinweis {
  font-size: 0.95rem;
  color: #bbb;
  margin-top: 2rem;
}

/* --- Tabellen/Listen für Rechtstexte --- */
ol {
  list-style: none;
  counter-reset: paragraph;
  padding-left: 0;
}
ol > li::before {
  counter-increment: paragraph;
  content: counter(paragraph) ". ";
  color: #d4af37;
  font-weight: bold;
}
ol > li {
  margin-bottom: 2rem;
}

/* --- Footer --- */
.footer-links {
  background: #111;
  border-top: 1px solid #222;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: auto;
}
.footer-links h3 {
  margin-bottom: 1rem;
  color: #D4AF37;
}
.footer-links a {
  color: #f1f1f1;
  text-decoration: none;
  line-height: 1.8;
}
.footer-links a:hover {
  color: #D4AF37;
  text-decoration: underline;
}
footer {
  background: #0a0a0a;
  text-align: center;
  color: #aaa;
  padding: 2rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
footer .footer-logo img {
  max-width: 120px;
  margin: 0 auto 1rem auto;
  display: block;
  filter: brightness(1.1);
}
@media (max-width: 768px) {
  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
