/* -------------------------------------------------------------------------- 
#   ShinTai.css (CASCADING STYLE SHEET)                                                          
#   Erstellungsdatum: 23.10.2025
#   Änderungsdatum: 23.10.2025
---------------------------------------------------------------------------*/

/* -------------------------------------------------------------------------- 
# BODY; HEADER; HTML
---------------------------------------------------------------------------*/
body,h1,h2,h3,h4,h5,h6 {font-family: "Montserrat", sans-serif;}
body, html {
  height: 100%;
  color: #fff;
  line-height: 1.8;
}
.bgcolor {background:#393f3f;}

/* -------------------------------------------------------------------------- 
# NAVIGATION AREA (SIDEBAR)
---------------------------------------------------------------------------*/
/* Zeilenabstand zwischen Images */
.w3-row-padding img {margin-bottom: 12px} 

/* Setzen des Abstands (WIDTH) für den Sidebar auf 120px; Hintergrundfarbe */
.w3-sidebar {width: 120px; background: #393f3f;} 

/* Hinzufügen eines linken Rand (left margin) zum "page content" der mit dem 
Abstand für den Sidebar übereinstimmt (120px) */
#main {margin-left: 120px} 
/*.w3-wide {letter-spacing: 10px;}/* Bestimmt den Abstand zwischen Buchstaben */

/* -------------------------------------------------------------------------- 
# PARALLAX AREA
---------------------------------------------------------------------------*/
/* Create a Parallax Effect */
.bgimg-1, .bgimg-2, .bgimg-3, .bgimg-4 {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* First image (Image1) */
.bgimg-1 {
  background-image: url('/images/Parallax1.jpg');
  min-height: 100%;
}


/* Second image (Image2) */
.bgimg-2 {
  background-image: url("/images/Parallax2.jpg");
  min-height: 100%;
}


/* Third image (Image3) */
.bgimg-3 {
  background-image: url("/images/Parallax3.jpg");
  min-height: 100%;
}

/* Fouth image (Image4) */
.bgimg-4 {
  background-image: url("/images/Parallax4.jpg");
  min-height: 100%;
}


  @media screen and (max-width: 600px) {
    .bgimg-1, .bgimg-2, .bgimg-3, .bgimg-4 {
        background-attachment: scroll !important;
        /* Verhindert das "Ruckeln" des Hintergrunds */
        background-position: center center;}}

/* Ausschalten des Parallax Scrolling für Tablets und Phones */
/* @media only screen and (max-width: 600px) {#main {margin-left: 0}} */

/* Stand 10.2025 
@media only screen and (max-device-width: 1080px) {
  .bgimg-1, .bgimg-2, .bgimg-3, .bgimg-4 { background-attachment: scroll; }
} */


/* -------------------------------------------------------------------------- 
# Responsive Image mit transparentem Text
---------------------------------------------------------------------------*/
* {
    box-sizing: border-box;
}

.container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

/* Anzeige des Images in der Mitte */
.container img {
  vertical-align: middle; 
  margin-top:50px;
  justify-content: center;
  align-items: center;
}

.container .content {
  position: absolute;
  bottom: 0;
  background: rgb(57, 63, 63); /* Fallback color */
  background: rgba(57, 63, 63, 0.7); /* Black background with 0.5 opacity */
  color: #fff;
  width: 100%;
  padding: 50px;
}

/* -------------------------------------------------------------------------- 
# SLIDER AREA
---------------------------------------------------------------------------*/
.mySlides {display:none;}

/* -------------------------------------------------------------------------- 
# Photo Galerie
---------------------------------------------------------------------------*/
hr {
  border: none;
  height: 2px;
  background-color: #E7180B;
}