/*
Theme Name: DJ B-Posiitive Theme
Author: DJ B-Posiitive
Description: Modernes, responsives WordPress-Theme für DJs aus Graz und der Steiermark.
Version: 1.0
*/
.startseite-intro {
  background: rgba(0, 0, 0, 0.5);        /* schwarzer Hintergrund mit 60% Transparenz */
  backdrop-filter: blur(8px);           /* optionaler Unschärfeeffekt */
  -webkit-backdrop-filter: blur(8px);   /* für Safari */
  border-radius: 15px;
  padding: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* weicher Schatten */
  color: #fff;                          /* Text weiß lesbar */
  text-align: center;
}

.intromain {
  background: rgba(0, 0, 0, 0.5);        /* schwarzer Hintergrund mit 60% Transparenz */
  backdrop-filter: blur(8px);           /* optionaler Unschärfeeffekt */
  -webkit-backdrop-filter: blur(8px);   /* für Safari */
  border-radius: 15px;
  padding: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* weicher Schatten */
  color: #fff;                          /* Text weiß lesbar */
  
}

.main-navigation {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1rem 0;
  text-align: center;
}

.main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;                /* ← horizontal */
  justify-content: center;
  gap: 2rem;
}

.main-menu li {
  display: inline-block;
}

.main-menu li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s, color 0.3s;
}

.main-menu li a:hover {
  background-color: #1e3a8a;
  color: #fff;
}


.hero {
  height: 100vh;
  background-image: url('images/bg-dj.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /*color: white;*/
 background-color: rgba(255, 255, 255, 0.65); /* Weiß mit 65% Deckkraft */
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f7fa;
  color: #222;
}

main.content {
  max-width: 960px;
  margin: 4rem auto;
  padding: 2rem;
  /*background: #ffffff;*/
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

h1, h2, h3, h4 {
  color: #ff6600;
  font-weight: 700;
  margin-top: 1.5rem;
}

a {
  color: #1e90ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button, .btn {
  background-color: #ff6600;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: bold;
  text-decoration: none;
  text-align: justify;
  display: inline-block;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

button:hover, .btn:hover {
  background-color: #e65c00;        /* dunkleres Orange bei Hover */
  transform: translateY(-2px);
}

footer {
  text-align: center;
  padding: 2rem;
  background: #1e3a8a;
  color: white;
  margin-top: 4rem;
}

@media (max-width: 768px) {
  main.content {
    padding: 1rem;
    margin: 2rem 1rem;
  }
}

.kontaktformular-seite {
  background: rgba(0, 0, 0, 0.6);
  padding: 3rem;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

.kontaktformular-seite input,
.kontaktformular-seite textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: none;
}