/*

V I E R A C H T Designbüro

https://www.48db.de

COLOR CODES

	Primary (Pink):   #CC0064
	Secondary (Blue): #0095BF
  
*/

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #FCD5A6;
  color: #414a53;
  font-family: 'Caladea', serif;
  font-size: 18px;
  font-weight:300;
  overflow-x: hidden;
  line-height: 2;
  letter-spacing: 0.5px;
}
.caladea-regular {
  font-family: "Caladea", serif;
  font-weight: 400;
  font-style: normal;
}

.caladea-bold {
  font-family: "Caladea", serif;
  font-weight: 700;
  font-style: normal;
}

.caladea-regular-italic {
  font-family: "Caladea", serif;
  font-weight: 400;
  font-style: italic;
}

.caladea-bold-italic {
  font-family: "Caladea", serif;
  font-weight: 700;
  font-style: italic;
}

   .h1,.h2,.h3,.h4,.h5,.h6,.h7,.h8,.h9,.h10,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10{font-size:2rem}

.li  {
  color: #414a53;

}

        /* Cookie-Banner-Stil */
        #cookieConsent {
            position: fixed; /* Fixiert am unteren Rand */
            bottom: 20%;
            left: 20%;
            right: 20%;
            top: 20%;
            background-color: #126f37; /* Hintergrundfarbe des Banners */
            color: #fff; /* Textfarbe */
            padding: 8%;
            text-align: center;
            font-size: 14px; /* Schriftgröße */
            z-index: 9999;
            display: none; /* Banner ist anfangs versteckt */
			box-shadow: 0px 0px 8px #000;
        }

        #cookieConsent button {
			font-family: 'Caladea', serif;
            background-color: #ff7700; /* Buttonfarbe */
            color: white; /* Textfarbe */
            border: none;
            padding: 15px;
            cursor: pointer;
            font-size: 14px; /* Schriftgröße */
            border-radius: 35px; /* Abgerundete Ecken für Buttons */
            transition: background-color 0.3s; /* Übergangseffekt für Hintergrundfarbe */
			width:200px;
        }

        #cookieConsent button:hover {
            background-color: #fff; /* Dunklere Farbe beim Hover */
			color:#414a53;
        }

@media (max-width: 768px) {

        #cookieConsent {
            bottom: 5%;
            left: 5%;
            right: 5%;
            top: 5%;
 }
}

formOut {
            font-family: 'Caladea', serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
        }
        #contact {
            width: 100%;
            border-radius: 0; /* Runde Ecken entfernt */
        }
        label {
            width: 100%;
            border-radius: 0; /* Runde Ecken entfernt */
            border: none;
        }
        select, input, textarea, button {
            width: 100%;
            padding: 10px;
            margin: 8px 0;
            border-radius: 0; /* Runde Ecken entfernt */
    border: 1px solid #414a53;
    color: #414a53;
    background: white;
        }
		select {
			border-radius: 0 !important; /* Runde Ecken entfernt */
			color:#414a53;
		}
        button {
            background-color: #ff7700;
            color: white;
            font-size: 22px;
            cursor: pointer;
            border: none;
			border-radius: 35px;
        }
        button:hover {
            background-color: #731c34;
			color:#fff;
        }
        #response {
            margin-top: 20px;
            color: #ff7700; /* Farbe für Bestätigungsmeldung */
        }
.success-message,
.error-message {
    text-align: center; /* Zentriert den Text */
    margin-top: 20px; /* Fügt etwas Abstand nach oben hinzu */
    font-size: 18px; /* Optional: Schriftgröße anpassen */
    color: #fff; /* Optional: Textfarbe */
}

.error-message {
    color: #ff8707; /* Optional: andere Farbe für Fehlermeldungen */
}

input[type="date"] {
    color: #414a53; /* Textfarbe */
    background-color: #fff; /* Hintergrundfarbe */
}

/* Webkit-spezifische Pseudoelemente */
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
	color:red;
    filter: invert(0%);
    opacity: ;1
	cursor: pointer; /* Ändert den Mauszeiger in eine Hand beim Hover */
}


/* WebKit-Browser (Chrome, Safari) */
::-webkit-scrollbar {
  width: 8px; /* Breite des Scrollbalkens */
  height: 8px; /* Höhe des Scrollbalkens für horizontales Scrollen */
}

/* Scrollbar Hintergrund */
::-webkit-scrollbar-track {
  background: #e0e0e0; /* Hintergrundfarbe der Scrollleiste */
  border-radius: 0px; /* Runde Ecken */
}

/* Scrollbar Daumen */
::-webkit-scrollbar-thumb {
  background: #ff7700; /* Farbe des Daumens */
  border-radius: 0px; /* Runde Ecken */
}

/* Hover-Effekt für den Daumen */
::-webkit-scrollbar-thumb:hover {
  background: #ff7700; /* Dunklere Farbe beim Hover */
}

/* Firefox */
* {
  scrollbar-width: none; /* Dicke des Scrollbalkens */
  scrollbar-color: #ff7700 transparent; /* Daumenfarbe und Hintergrundfarbe */
}

/* Edge */
@supports (-ms-overflow-style: scrollbar) {
  /* Hier kannst du spezifische Edge-Stile hinzufügen, falls nötig */
}

/* Grundstruktur des Sliders */
.slider {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* Fester Text, der über allen Slides bleibt */
.fixed-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 10; /* Höchster Layer, um sicherzustellen, dass der Text über den Bildern bleibt */
  width: inherit;
    padding: 8%;
    max-width: 1050px;
}

/* Titel mit zwei Teilen */
.title {
  font-size: 4.5em; /* Basisgröße für den Titel */
  margin: 0; /* Kein Margin */
  line-height: 1.4;
}

/* Teile der Überschrift */
.part1 {
  background-color: #731c34; /* halbtransparenter Hintergrund */
    padding: 0px 14px 0px 14px;
}

.part2 {
  background-color: #ff7700; /* halbtransparenter Hintergrund */
    padding: 0px 14px 0px 14px;
}
.part3 {
  background-color: #126f37; /* halbtransparenter Hintergrund */
    padding: 0px 14px 0px 14px;
}

/* Beschreibungstext */
.description {
  font-size: 1em; /* Größe für den Beschreibungstext */
  margin-top: 10px; /* Abstand zum Titel */
  padding: 0 20px; /* Padding für bessere Lesbarkeit auf kleinen Bildschirmen */
}

/* Allgemeine Stile für alle Slides */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideAnimation 32s infinite;
}

/* Individuelle Slides mit Bildern */
.slide1 {
  background-image: url('https://asiashop-hoexter.de/img/banner-1.jpg');
  animation-delay: 0s;
}
.slide2 {
  background-image: url('https://www.lion-restaurant.de/img/banner-2.jpg');
  animation-delay: 8s;
}
.slide3 {
  background-image: url('https://www.lion-restaurant.de/img/banner-3.jpg');
  animation-delay: 16s;
}
.slide4 {
  background-image: url('https://www.lion-restaurant.de/img/banner-4.jpg');
  animation-delay: 24s;
}

/* Keyframes für Crossfade und Zoom */
@keyframes slideAnimation {
  0%, 100% {
    opacity: 0;
    transform: scale(1);
  }
  10%, 30% {
    opacity: 1;
    transform: scale(1.1);
  }
  40%, 90% {
    opacity: 0;
    transform: scale(1.2);
  }
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .title {
    font-size: 3em; /* Kleinere Schriftgröße für Mobilgeräte */
  }
  .description {
    font-size: 1em; /* Kleinere Beschreibung */
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 2.5em; /* Noch kleinere Schriftgröße für sehr kleine Bildschirme */
  }
  .description {
    font-size: 1em; /* Kleinere Beschreibung */
  }
}


        /* Navbar-Stil */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #FCD5A6;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
        }

        /* Logo */
        .navbar img {
            height: 50px;
        }

        /* Menü-Toggle-Checkbox */
        .menu-toggle {
            display: none;
        }

        /* Menü-Icon */
        .menu-icon {
            display: none;
            cursor: pointer;
            width: 40px;
            height: 24px;
            position: relative;
            justify-content: center;
            align-items: center;
        }

        /* Balken im Burger-Icon */
        .bar {
            position: absolute;
            height: 3px;
            width: 100%;
            background-color: #414a53;
            transition: 0.4s;
        }

        /* Balken-Positionen */
        .bar:nth-child(1) {
            top: 0;
        }

        .bar:nth-child(2) {
            top: 10px;
        }

        .bar:nth-child(3) {
            top: 20px;
        }

        /* Menü-Links */
        .menu {
            display: flex;
            align-items: center;
        }
        .menu a {
            color: #414a53;
            text-decoration: none;
            padding: 10px 20px;
            transition: background 0.3s;
        }
        .menu a:hover {
            text-decoration: underline;
        }
/* Hintergründe der Abschnitte */
#namaste {
    background-color: #000;
    display: block;
    height: 60px;
    margin-top: -60px;
    visibility: hidden;
}

#speisen {
    background-color: #000;
    display: block;
    height: 60px;
    margin-top: -60px;
    visibility: hidden;
}

#cocktails {
    background-color: #000;
    display: block;
    height: 60px;
    margin-top: -60px;
    visibility: hidden;
}

#kontakt {
    background-color: #000;
    display: block;
    height: 60px;
    margin-top: -60px;
    visibility: hidden;
}

#reservierung {
    background-color: #000;
    display: block;
    height: 60px;
    margin-top: -60px;
    visibility: hidden;
}

        /* Responsive-Stile */
        @media (max-width: 880px) {
            .menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                right: 0;
                width: 100%;
                background-color: #126f37;
                padding: 15px;
                border-bottom: 1px solid #fff;
            }

            .menu-icon {
                display: flex;
            }

            /* Menü anzeigen, wenn die Checkbox aktiviert ist */
            #menu-toggle:checked + .menu-icon + .menu {
                display: flex;
            }

            /* Menü-Icon zu einem X transformieren */
            #menu-toggle:checked + .menu-icon .bar:nth-child(1) {
                transform: rotate(45deg);
                top: 10px;
            }

            #menu-toggle:checked + .menu-icon .bar:nth-child(2) {
                opacity: 0;
            }

            #menu-toggle:checked + .menu-icon .bar:nth-child(3) {
                transform: rotate(-45deg);
                top: 10px;
            }

            /* Menü-Links für mobile Geräte */
            .menu a {
                padding: 5px;
                text-align: center;
                display: block;
				font-size: 2rem;
            color: #fff;
            text-decoration: none;
        }
        .menu a:hover {
            text-decoration: underline;
        }
        }

.pt-2,.py-2{
	padding:48px!important
}
.pb-2,.py-2{
	padding-bottom:48px!important;
	background-color: #FCD5A6;
}
.row{
	margin-right:-15px;
	margin-left:-15px;
}
.button{
    background-color: #ff7700;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}
.buttonOut{
  display: flex;
  line-height: 2;
  font-weight: 300;

}

.button:hover{
	background-color:#731c34;
	color:#fff;
	border-radius:50px;
	text-decoration:none !important;
	border: none;
}
.button:hover a{
	background-color:#731c34;
	color:#fff;
	border-radius:50px;
	text-decoration:none !important;
	border: none;
}


img{
	vertical-align:middle;
	border-style:none;
}
.tm-container {
  background-color: white;
}

.tm-site-title {
  color: #e2001b;
  font-size: 2.5rem;
}

.tm-site-subtitle {
  color: #e2001b;
  font-size: 1.2rem;
  margin-bottom: 30px;
  
}

.column-out {
  display: flex;
  line-height: 2;
  font-weight: 300;
}
.column-in1 {
  flex: 50%;
  margin: 2% 4% 2% 0;
  line-height: 2;
  font-weight: 300;
  padding: 0;
}
.column-in2 {
  flex: 50%;
  margin: 2% 0 2% 0;
  line-height: 2;
  font-weight: 300;
  padding: 0;
}
.column-list-out {
  display: flex;
  line-height: 2;
  font-weight: 300;
}
.column-list-in {
  flex: 33%;
  margin: 0% 4% 4% 0%;
  line-height: 2;
  font-weight: 300;
}
.footer {
  display:flex;
  font-size:12px;
  justify-content: space-between;
  color:#fff;
}


.accordionCat-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  border: 0px solid #e1e1e1;
  border-radius: 0px;
  overflow: hidden;
  text-align:left;
}
.accordionCat-item {
  width: 100%;
}
.accordionCat-trigger {
  width: 100%;
  display: block;
  color: #414a53;
  padding: 5px 0 0 0;
  font-size: 14px;
  text-align: left;
  border-top: 1px solid #414a53;
  border-bottom: 1px solid #414a53;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  cursor: pointer;
  align-items: flex-start;
  align-items: center;
}
.accordionCat-title {
  width: 100%;
  color: #414a53;
  font-size: 14px;
  text-align: left;
  display: flex;
}

.accordionCat-icon {
  transition: transform 0.5s;
}
.accordionCat-item[open] .accordionCat-icon {
  transform: rotate(45deg);
  color:#414a53;
}
.accordionCat-item[open] .accordionCat-trigger {
  color:#414a53;
}
.accordionCat-item:not(:first-of-type) .accordionCat-trigger {
  border-top: 1px solid #e1e1e1;
}
.accordionCat-content p {
  margin: 4% 0 0 0;
}
.accordionCat-content {
  padding: 0;
}
@media (max-width: 768px) {
.accordionCat-content {
  padding: 10% 0 4% 0;
}}

.tm-section-1 {
  height: 530px;
  background-size: cover;
  background-position: center ;
  background-repeat: no-repeat;
  align-content: center;
}

.tm-section-3 {
  height: 790px;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.tm-btn-primary {
  color: white;
  background-color: #cc0064;
}

.tm-btn-primary:hover,
.tm-btn-primary:focus {
  background-color: #414a53;
}

.tm-btn-secondary {
  color: white;
  background-color: #0095bf;
}

.tm-btn-secondary:hover,
.tm-btn-secondary:focus {
  background-color: #414a53;
}

.tm-bg-circle-white {
  color: #fff;
  width: 50%;
  height: 100%;
}

.tm-bg-circle-pad-2 {
  padding-left: 120px;
}

p,
ul {
  line-height: 2;
  font-weight: 300;
}

ul {
  margin: 0px 18px;
}
ul.dashed {
  list-style-type: none;
  
}
ul.dashed > li {
  text-indent: -5px;
}
ul.dashed > li:before {
  content: "-";
  margin-right: 5px;
  text-indent: -5px;
}

.btn {
  padding: 10px 30px;
  font-size: 1.15rem;
  font-weight: 300;
  border-radius: 0px;
}

a.btn:hover {
  color: white;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


.tm-flex-center-v {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0px;
}

.tm-text-container {
  max-width: 420px;
}

.tm-circle-img {
  width: 400px;
}

.tm-circle-img-container {
  text-align: right;
}

.tm-contact-form {
  max-width: 280px;
}

.form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #cc0064;
}

.form-control:focus {
  box-shadow: none;
  border-color: #cc0064;
  border-width: 2px;
}

.tm-send-btn {
  border-radius: 0px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.tm-footer-link {
  color: #6c6c6c;
}

.tm-footer-link:hover,
.tm-footer-link:focus {
  text-decoration: underline;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: none;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }

}

@media (min-width: 1200px) {
  .container {
  max-width: 1050px;
}

}
@media (max-width: 768px) {
  .tm-bg-circle-white {
width: 100%;
            height: auto;
            padding: 8%;
 }
  .column-list-out {
  display: flex;
  line-height: 2;
  flex-direction: column;
}
  .column-list-in {
  flex: 33%;
  margin: 0% 4% 0% 0%;
  line-height: 2;
}
.column-in1 {
  margin: 0% 4% 10% 0%;
}
.column-in2 {
  margin: 0% 0% 10% 0%;
}
.mb-4 {
    margin-bottom: 0% !important;
}
}

@media (max-width: 1000px) {
.footer {
  display:flex;
  font-size:12px;
  flex-direction: column;
  text-align: center;
  color:#fff;
}
}	
	
@media (max-width: 992px) {
  .tm-bg-circle-white {
  width: 100%;
  height: auto;
  padding: 8%;
}

  .tm-section-left {
    margin: 50px auto;
  }

  .tm-circle-img-container {
    text-align: center;
  }
.column-out {
    display: flex;
    line-height: 2;
	flex-direction: column;
  }	

  .tm-contact-form {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .tm-contact-right {
    margin-bottom: 50px;
  }

  .tm-footer-text {
    margin-left: 30px;
    margin-right: 30px;
  }
}

@media (max-width: 576px) {
  .tm-bg-circle-white {
    width: 100%;
    height: auto;
    padding: 8%;
  }

  img {
    max-width: 100%;
	
  }

  .tm-section-1,
  .tm-section-3 {
    height: auto;
  }

  .tm-section-1 {
    padding-bottom: 0;
  }

  .tm-section-3 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .tm-circle-img-container {
    margin-bottom: 30px;
  }
   .h1,.h2,.h3,.h4,.h5,.h6,.h7,.h8,.h9,.h10,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10{font-size:1.5rem}

.pb-2,.py-2{
  padding-bottom:48px!important;
  background-color: #FCD5A6;
  padding: 8% !important;
}

}
