/* styles.css */

body {
  margin: 0;
  font-family: sans-serif;
}

header {
  position: relative;
  width: 100%;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Optional: maximale Breite & zentrieren */
.hero-image {
  max-width: 1468px;
  margin: 0 auto;
}

nav {
  padding: 1rem;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5); /* halbtransparenter Hintergrund über Bild */
  position: absolute;
  top: 0;
  width: 100%;
  color: white;
}
/* ab hier start*/
.hero {
  background-color: #f3f4f6; /* Helles, neutrales Grau */
  color: #111;
/*  padding: 3em 2em;*/
  text-align: center;
}


.cta-button {
  background-color: #ff6600;
  color: white;
  padding: 0.8em 1.4em;
  border-radius: 4px;
  text-decoration: none;
}
.cta-button2 {
  background-color: #ff6600;
  color: white;
  padding:0.8em  1.4em;
  border-radius: 4px;
  text-decoration: none;
  width: 90%;
  height:90%;
  display: inline-block;
text-align:center;
}
.grid-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5em;
  padding: 2em;
}


.card {
  background: white;
  padding: 1.5em;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.card2 {
  background: white;
  padding: 1.5em 1.5em;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.card img {
  background: white;
/*  padding: 1.5em 1.5em;*/
  max-width: 99%;
  height: auto;
/*  display: block;*/
  border-radius: 0.5em; /* Optional: für abgerundete Ecken */
 box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/*ab hier end */
/* Mailform*/
form {
  max-width: 600px;
  margin: 2em auto;
  padding: 2em;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', sans-serif;
}

form label {
  display: block;
  margin-bottom: 0.5em;
  font-weight: bold;
  color: #333;
}

form input,
form textarea {
  width: 100%;
  padding: 0.8em;
  margin-bottom: 1.5em;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
  box-sizing: border-box;
}

form input:focus,
form textarea:focus {
  border-color: #ff6600;
  outline: none;
  box-shadow: 0 0 5px rgba(255, 102, 0, 0.4);
}

button[type="submit"] {
  background-color: #ff6600;
  color: white;
  padding: 0.8em 1.4em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
  width: 100%;
}

button[type="submit"]:hover {
  background-color: #e65c00;
}



@media (max-width: 768px) {
  header {
    min-height:25vh; /* etwas höher auf kleinen Geräten */
    width:100%;
    background-position: top center; /* fokussiert oberen Bildbereich */
  }

  header h1 {
    font-size: 1.4em;
  }

  header p {
    font-size: 1em;
  }
}

@media screen and (max-width: 480px) and (orientation: portrait) {
  header {
    background-position: top center; /* Bild nach oben ausrichten */
    min-height: 25vh; /* mehr Platz im Hochformat */
    width: 100%;
  }

  header h1 {
    font-size: 1.2em;
  }

  header p {
    font-size: 1em;
  }
}
/* kein Preis */
#pjWrapper .pjTbListTicketsInfo li {display:none; /* hwo disabled*/ padding: 8px 80px 0 0; }