/*
 Theme Name:   Neve Child
 Template:     neve
 Version:      1.0.0
 Text Domain:  neve-child
*/

/* Eigene CSS-Anpassungen kannst du hier später ergänzen */

body {
  font-family: Verdana, Geneva, sans-serif;
}


/* Hinweis im Hochformat anzeigen */
@media screen and (orientation: portrait) {
  .rotate-notice {
    display: flex;
  }
}

@media screen and (orientation: landscape) {
  .rotate-notice {
    display: none;
  }
}

/* Overlay-Grundstyling */
.rotate-notice {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  color: #fff;
  font-size: 1.3rem;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0px;
}

/* Icon größer darstellen */
.rotate-notice .rotate-icon {
  font-size: 4rem;
  margin-bottom: 15px;
}

.rotate-notice {
    display: none; /* Start hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    color: #fff;
    font-size: 1.2rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
    
}

.rotate-notice.show {
transition: none;
}

.custom-video-wrapper {
  position: relative;
  max-width: 800px;
  margin: auto;
}

.video-overlay {
  position: relative;
  cursor: pointer;
}

.video-thumb {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: white;
  background: rgba(0,0,0,0.6);
  border: none;
  border-radius: 50%;
  padding: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.play-button:hover {
  background: rgba(0,0,0,0.8);
}

.video-container {
  display: none; /* unsichtbar, bis Play gedrückt */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 9999;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: black;
}

.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: white;
  background: rgba(0,0,0,0.6);
  border: none;
  border-radius: 50%;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10000;
}
.close-button:hover {
  background: rgba(0,0,0,0.8);
}

.cover-92 {
  height: calc(var(--vh, 1vh) * 92)!important;
  width: 100%!important;
}

.cover-8 {
  height: calc(var(--vh, 1vh) * 8)!important;
  width: 100%!important;
}


/* Wenn echtes Fullscreen nicht klappt */
body.pseudo-fullscreen {
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: #000; /* optional, damit kein Browserhintergrund sichtbar ist */
}



