/* ==========================================
   Globale Resets & Box-Sizing
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

/* ==========================================
   Hero-Bild & Responsive Overlay (Headline)
   ========================================== */
.bild-container {
  max-width: 1920px;
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--nav-hg);
}

.bild-container video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover; 
}

.transparent {
  opacity: 0.25;
  width: 100%;
  height: auto;
  display: block;
}

.overlay-content {
  position: absolute;
  top: 60%;
  left: 45%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  z-index: 999;
  opacity: 0;
  animation: fadeIn 6s ease 0.2s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.theater-header {
  margin: 0;
  padding: 0;
}

.text-top {
  font-family: var(--raleway);    
  font-weight: 300;  
  font-size: 0.85rem; 
  color: var(--schrift-w);
  letter-spacing: 2px; 
  opacity: 0.7;
  padding-left: 1rem; 
}

.text-title {
  font-family: var(--grechen-fuemen);    
  font-weight: 700;  
  font-size: clamp(2rem, 1.25rem + 9vw, 12rem); 
  color: var(--schrift-bl);
  letter-spacing: 8px; 
  opacity: 0.5;
}

.u-title {
  display: inline-block; 
  color: var(--schrift-w);
  margin-left: -0.1em;   
  transform: translate(0, 0.02em) rotate(-25deg);
}

.text-bottom {
  font-family: var(--raleway);    
  font-weight: 300;  
  font-size: 0.85rem; 
  color: var(--schrift-w);
  letter-spacing: 2px; 
  opacity: 0.7;
  margin: 0;
  margin-top: -1em;
  padding-left: 1em; 
}

.wrapper {
  display: flex;    
  gap: 4.1em;  
  margin: 1.2em 1em; 
  white-space: nowrap;       
}

.text-wrapper {
   padding: 2px;
   font-weight: 400;  
   color: var(--schrift-w);
   font-size: 0.98rem; 
   font-style: italic;
   letter-spacing: 1px;
   opacity: 0.65;
   border-bottom: thin solid var(--schrift-w);
}

.button-container {
  display: flex;    
  gap: 4.8em;  
  margin: 1.1em 1.3em; 
  white-space: nowrap;   
}

button { 
    width: 12em;
    font-size: 0.9rem;
    letter-spacing: 2px;
    padding: 0.8em 1.35em;
    border: 1px solid var(--schrift-bl);
    background: transparent;
    color: var(--schrift-w);
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
  border: 1px solid var(--schrift-bl);
  background-color: var(--tabelle);
}

/* Sicherstellen, dass Links im Button die Textfarbe erben */
button a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================
   Layout-Inhalte & Abstände
   ========================================== */
.inhalt {
  max-width: 1000px;
  margin: auto;
  padding: 10px;
}
   
.abstand {
  height: clamp(1.25rem, 4vw, 4rem);
}    

.responsive-poster {
  width: 100%;
  max-width: 350px;
  height: auto;
  display: block;
  margin: 10px auto;
}

/* ==========================================
   Tabellen & Ticketshop
   ========================================== */
td {
  padding: 8px 10px;
  font-size: clamp(0.938rem, 0.725rem + 0.5vw, 1.063rem);
  line-height: 20px;
  letter-spacing: 2px;
}

tr:nth-child(even) {
  background-color: var(--tabelle);
}

.rechtsbuendig{
  text-align: right;
}

.kassa {
  padding: 15px 30px;
  font-size: 17px;
  line-height: 26px;
  letter-spacing: 3px;
}

.text-container > p:nth-child(even) {
  background-color: var(--tabelle);
  padding: 5px 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.btn-special {
    width: 20em;
    max-width: 100%; /* Verhindert das Rausragen auf kleinen Screens */
    margin: 0 auto;
    font-size: clamp(0.7rem, 4vw, 1.2rem);
    letter-spacing: 2px;
    padding: 1em 1.35em;
    border: 1px solid var(--schrift-bl);
    background: transparent;
    color: var(--schrift-w);
    cursor: pointer;
}

.btn-special:hover{
   color: var(--schrift-hervorgehoben);
}

.ticketshop {
  max-width: 28rem;
  height: auto;
  margin: auto;
  padding: 1rem;
}

.ticketshop .ticketshop-text {
  font-size: 0.95rem;
  padding: 0.85rem;
  color: var(--schrift-w);
  margin-bottom: 0.85rem;
}

.ticketshop .underline {
  text-decoration: underline;
  color: var(--schrift-w);
  letter-spacing: 4px;
}

.ticketshop .underline:hover {
  color: var(--schrift-bl);
}

.ticketshop .ticketshop-phone {
  color: var(--schrift-w);
  text-decoration: none;
}

.ticketshop a:active {
  color: #ff0000 !important; 
}

.hg-farbe{
  background-color: var(--tabelle);
}

/* ==========================================
   Globale Typografie
   ========================================== */
h1 {
  font-family: var(--grechen-fuemen);
  color: var(--schrift-bl);
  letter-spacing: 2px;
  font-size: clamp(1.25rem, 1rem + 4vw, 3.2rem);
  font-weight: 500;
}

h2 {
  font-family: var(--grechen-fuemen);
  color: var(--schrift-bl);
  letter-spacing: 2px;
  font-size: clamp(1rem, 1rem + 4vw, 2.05rem);
  font-weight: 300;
}

p {
  color: var(--schrift-w);
  letter-spacing: 1px;
  hyphens: auto;
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px;
}

figcaption {
  font-family: var(--raleway);
  letter-spacing: 1px;
  color: var(--schrift-w);
  margin-top: -3px;
  margin-left: 5px;
  font-size: 12px;
  font-style: italic;
  font-weight: 200;
  line-height: 20px;
}

.blocksatz {
  text-align: justify;
  hyphens: auto;
}

/* ==========================================
   Responsive Grid & Media Queries
   ========================================== */
.grid-inhalt {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  place-items: start center; 
  grid-gap: 20px;
  padding: 10px;
}

.poster-container,
.text-container {
  display: block; 
}

@media (max-width: 992px) {
  .overlay-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 950px) {
  .button-container {
    display: none !important;
  }
}

@media (max-width: 750px) {
  .beschreibung {
    display: none !important;
  }
}

@media (max-width: 685px) {
  .grid-inhalt {
    grid-template-columns: 1fr; 
  }
  
  .bild-container {
    display: block; 
    width: 100%;
  }
}

@media (max-width: 600px) {
  .ausblenden {
    display: none;
  }
}

@media (max-width: 300px) {
  .blocksatz {
    text-align: left;
  }
}