/* =========================
   GRUNDSTYLING (DESKTOP)
   ========================= */

html {
  font-size: 16px;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  background-image: url("http://www.gasthaus-moesl.de/images/logo/wallpaper_new.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

/* =========================
   HEADER / NAVIGATION
   ========================= */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background-color: #004000;
  display: flex;
  align-items: center;
  z-index: 1000;
}

header nav {
  display: flex;
  align-items: center;
  width: 100%;
}

  /* Logo fix in der linken oberen Ecke */
header nav .fixed-top-logo {
      position: fixed;
      top: 1%;
      left: 1%;
      width: 10%; /* Breite des Logos anpassen */
      height: auto;
      z-index: 1000; /* Damit das Logo immer oben bleibt */
    }


.menu {
  margin-left: auto;
}

header nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Monotype Corsiva';
  font-size: 1.5rem;
  margin-right: 30px;
}

header nav a:hover {
  text-decoration: underline;
}

/* =========================
   FOOTER
   ========================= */

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background-color: #004000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  z-index: 1000;
}

  footer .fixed-bottom-bar {
	  position: fixed;
      bottom: -10px;  /* Abstand vom unteren Rand */
      left: 10px;   /* Abstand vom rechten Rand */
      width: 100px;  /* Breite des Logos, anpassen nach Bedarf */
	  height: -50px; 
	  display: flex;
      align-items: center;
      justify-content: center;
	  font-size: 0.9rem;
      z-index: 1000; /* Damit es immer oben bleibt */
    }
	  footer .fixed-bottom-bar img {
	  width: 80px;
    }
	
	footer .fixed-bottom-logo {
	  position: absolute;
      bottom: 10px;  /* Abstand vom unteren Rand */
      right: 60px;   /* Abstand vom rechten Rand */
      width: 50px;  /* Breite des Logos, anpassen nach Bedarf */
	  height: -50px; 
      z-index: 1000; /* Damit es immer oben bleibt */
    }

 #Augustiner {
		width: 200%;
		height: auto;
 }

footer a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.fixed-bottom-logo img {
  width: 60px;
}

/* =========================
   MAIN CONTENT
   ========================= */

main {
  position: absolute;
  top: 60px;
  bottom: 40px;
  left: 0;
  right: 0;
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
}

.divider {
  display: flex;
  justify-content: center;
  margin: 120px auto;
}

/* =========================
   TEXT
   ========================= */

.content-text,
.content-text-var {
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Monotype Corsiva';
  font-size: 1.5rem;
  line-height: 1.5;
  color: #004000;
}

.content-text-var {
  line-height: 0.5;
}

#PhoneCall {
  font-size: 1.8rem;
  font-weight: bold;
  color: #004000;
}

#PhoneCall a {
  color: #004000;
  text-decoration: none;
}
  #Anfahrt {
	  width: 65%;
  }
  
   #Pay {
        width: 9%;
		height: auto;
 }
 
   #History1 img{
	  width: 100%;
  }

/* =========================
   SLIDESHOW
   ========================= */

/* Slideshow Container mit Rand links und rechts */
  .slideshow-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto 30px auto;
    padding: 0 40px; /* Rand links und rechts */
    box-sizing: border-box;
  }

  /* Rand links und rechts (sichtbar) */
  .slideshow-container::before,
  .slideshow-container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    /* background: #f9f9f9; */
 	*/ background: #ffffff; */
    z-index: 1;
  }

  .slideshow-container::before {
    left: 0;
  }

  .slideshow-container::after {
    right: 0;
  }

  /* Slideshow Bilder */
  .slide {
    display: none;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }

  .slide.active {
    display: block;
  }

  /* Pfeile links/rechts */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    color: #004080;
    /* background: #f9f9f9; */
	background: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    font-size: 2rem;
    user-select: none;
    z-index: 10;
    box-shadow: 0 0 0px rgba(0,0,0,0.3);
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }


/*.slideshow-container {
  max-width: 900px;
  margin: 0 auto 30px;
}

.slide {
  display: none;
  width: 100%;
  border-radius: 8px;
}

.slide.active {
  display: block;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: white;
  border-radius: 50%;
  padding: 5px 10px;
  cursor: pointer;
}*/

/* =========================
   COOKIE POPUP
   ========================= */

#cookie-consent {
  position: fixed;
  inset: 25%;
  max-height: 400px;
  background: white;
  color: black;
  padding: 20px;
  z-index: 9999;
}

#cookie-consent h2 {
  font-size: 1rem;
}

#cookie-consent p,
#cookie-consent label {
  font-size: 0.8rem;
}

/* =====================================================
   📱 SMARTPHONE OPTIMIERUNG
   ===================================================== */

@media (max-width: 768px) {

  html {
    font-size: 14px;
  }

  header {
    height: 5%;
    padding: 10px;
  }

  header nav {
    flex-direction: row;
  }

  .menu {
    /*margin: 10px 0 0;*/
	margin-left: auto;
   text-align: center;
  }

  header nav a {
    font-size: 0.7rem;
    margin: 5px 5px;
  /*  display: block; */
  }

  main {
    padding: 10px;
  }

  .content-text,
  .content-text-var {
    font-size: 1.0rem;
    line-height: 1.2;
  }

  h1 {
    font-size: 1.2rem;
  }

  #PhoneCall {
    font-size: 1.2rem;
  }

  .divider {
    margin: 60px auto;
  }

  .fixed-top-logo img {
    width: 150%;
  }

  footer {
    position: fixed;
    font-size: 0.5rem;
    padding: 10px;
    height: 5%;
  }
  
   footer .fixed-bottom-bar {
	  position: fixed;
      bottom: -5px;  /* Abstand vom unteren Rand */
      left: 0px;   /* Abstand vom rechten Rand */
      width: 50px;  /* Breite des Logos, anpassen nach Bedarf */
	  height: -50px; 
	  display: flex;
      align-items: left;
      justify-content: left;
	  font-size: 0.5rem;
      z-index: 1000; /* Damit es immer oben bleibt */
    }	

   footer .fixed-bottom-logo {
	  position: absolute;
      bottom: 1px;  /* Abstand vom unteren Rand */
      right: 1%;   /* Abstand vom rechten Rand */
      width: 50px;  /* Breite des Logos, anpassen nach Bedarf */
	  height: -50px; 
      z-index: 1000; /* Damit es immer oben bleibt */
    }
  
 /* .fixed-bottom-logo {
	  margin-left: auto;
  } */
  
   #Augustiner {
		width: 100%;
		height: auto;
 }

  #cookie-consent {
    inset: 5%;
  }

  #cookie-consent h2 {
    font-size: 1.4rem;
  }

  #cookie-consent p,
  #cookie-consent label {
    font-size: 1rem;
  }
}
