@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url('https://fonts.cdnfonts.com/css/freestyle-script');

*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.html {
  font-size: 62.5%;
}

body {
  font-family: "Poppins", sans-serif;
}

.wrapper{
	padding-top: 5rem;
	padding-bottom: 5rem;
}
/* Hamburger-Menu */

/* wenn Hamburger gedrückt wird */

#menu__toggle {
  /*opacity: 0;*/
    display:none;
}

#menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg);
}
#menu__toggle:checked + .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  left: 0 !important;
}

/* Hamburger-Linien als Button */

.menu__btn {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 1;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition-duration: .25s;
}
.menu__btn > span::before {
  content: '';
  top: -8px;
}
.menu__btn > span::after {
  content: '';
  top: 8px;
}

/* Menu-Box Aussehen */

.menu__box {
  display: block;
  position: fixed;
  top: 50px;
  left: -100%;
  width: auto;
  height: 100%;
  margin: 0;
  list-style: none;
  background-color: #1B3822;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
  transition-duration: .30s;
  opacity: 0.85;
}
.menu__item {
  display: block;
  padding: 8px 10px;
  color: white;
/*font-family: 'Roboto', sans-serif;
  font-family: 'Comic Sans MS', cursive, sans-serif;*/
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  transition-duration: .25s;
}
.menu__item:hover {
  background-color: #CFD8DC;
  color: #1B3822;
}

/* ///////////..utility classes../////////// */

.container {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}

.btn {
  display: inline-block;
  padding: 0.5em 1.2em;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  outline: none;
  margin-top: 1em;
  text-transform: uppercase;
  font-weight: small;
}

.btn-primary {
  color: #fff;
  background: #1B3822;
}

.btn-primary:hover {
  background: #117965;
  transition: background 0.2s ease-in-out;
}

/* NavBar */

.navbar {
  box-shadow: 0px 5px 10px 0px #aaa;
  position: fixed;
 top:0;
  width: 100%;
  background: #1B3822;
  color: #fff;
 /* opacity: 0.9;*/
  height: 50px;
  z-index: 12;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 55px;
  align-items: center;
}

#navbar-logo{
	padding-left:50px;
	position:fixed;
}

/* Showcase  */

.showcase {
  height: 70vh;
  background: /*linear-gradient(
      rgba(240, 240, 240, 0.144),
      rgba(255, 255, 255, 0.336)
    ),*/
    url("../img/doenerHalal.png");
  /*background-size: cover;*/
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}

.showcaseyaprak {
  height: 70vh;
  /*background: /*linear-gradient(
      rgba(240, 240, 240, 0.144),
      rgba(255, 255, 255, 0.336)
    ),*/
    /*url(".//img/viande-mixte-2.png");*/
  /*background-size: cover;*/
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}


.showcase-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding:50px;
  height: 100%;
  font-size: 1.6rem;

}

.main-title {
  transform: uppercase;
  font-size:2.6em;
}

.showcase-container p{
	font-family: 'Freestyle Script', sans-serif;
	rotate: 350deg;
	font-size: 2.3em;
}

/* ......//about us//...... */

#about {
  padding: 50px 0;
  background: #f5f5f7;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
}

#about h2 {
  font-size: 2.3rem;
}

#about p {
  font-size: 1.2rem;
  color: #555;
}

#about .small {
  font-size: 1.2rem;
  color: #666;
  font-weight: 600;
}

.about-img {
  flex: 1 1 400px;
  padding: 30px;
  transform: translateX(150%);
  animation: about-img-animation 1s ease-in-out forwards;
}

@keyframes about-img-animation {
  100% {
    transform: translate(0);
  }
}

.about-text {
  flex: 1 1 400px;
  padding: 30px;
  margin: auto;
  transform: translate(-150%);
  animation: about-text-animation 1s ease-in-out forwards;
}

@keyframes about-text-animation {
  100% {
    transform: translate(0);
  }
}

.about-img img {
  display: block;
  /*height: 400px;*/
  max-width: 100%;
  margin: auto;
  object-fit: cover;
  object-position: right;
}

/* ..........////Food category///........... */

.food {
	display:flex;
	justify-content:center;
	padding: 10px;
}

.box-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  padding-top: 2rem;
  text-transform: uppercase;
  color: black;
}

.food-title {
  /*text-align: center;*/
  font-size: 1.1rem;
  font-weight: 600;
  /*margin-bottom: 40px;
  text-transform: uppercase;*/
  padding:1.3rem;
  
}


.box{
	box-shadow: 5px 5px 10px 3px #1B3822;
	width: 90%;
	border-radius:10px;
}

.food-container {
  display: flex;
  justify-content: space-between;
  padding: 20px 0px;
}

.food-container img {
	height: 250px;
  /*
  display: block;
  width: 100%;
  margin: auto;
  max-height: 300px;
  object-fit: cover;
  object-position: center;
  */
}

.food-item{
	display: flex;
	/*flex: 1 1 600px;*/
	justify-content: space-evenly;
}

.img-container {
  margin: 0 1rem;
  position: relative;
}

.img-content {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 2;
  text-align: center;
  transition: all 0.3s ease-in-out 0.1s;
}

.img-content h3 {
  color: #fff;
  font-size: 2.2rem;
}

.img-content a {
  font-size: 1.2rem;
}

.img-container::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.871);
  opacity: 0;
  z-index: 1;

  transform: scaleY(0);
  transform-origin: 100% 100%;
  transition: all 0.3s ease-in-out;
}

.img-container:hover::after {
  opacity: 1;
  transform: scaleY(1);
}

.img-container:hover .img-content {
  opacity: 1;
  top: 40%;
}

/* .........../Food Menu/............ */

.food-menu-heading {
  text-align: center;
  font-size: 3.4rem;
  font-weight: 400;
  color: #666;
}

.food-menu-container {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0px 30px 0px;
}

.food-menu-container img {
  display: block;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.food-menu-item {
  display: flex;
  flex: 1 1 600px;
  justify-content: flex-start;
  margin-bottom: 3rem;
}

.food-description {
  margin: auto 1.5rem;
}

.food-description .link{
  display:flex;
  justify-content:center;
}

.font-title {
  font-size: 0.8rem;
  font-weight: 400;
  color: #444;
  
}

.food-description p {
  font-size: 1.1rem;
  color: #555;
  font-weight: 400;
}

.food-description .food-price {
  color: #117964;
  font-weight: 700;
}


/* ........./ Testimonial /.......... */

#zertifikat {
	padding: 15px 0px 50px 0;
  /*background: rgba(243, 243, 243);*/
	background: lightgrey;
}

.zertifikat-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  color: #555;
  padding: 10px;
}

#zertifikat_text {
	display:flex;
	justify-content:center;
	margin: 1rem 0;
	color: #444;
  
}

.customer-photo img {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  margin: auto;
}

.flaggen {
	display:flex;
	flex-wrap:wrap;
	justify-content:space-evenly;
	padding-top:10px;
	width: 60%;
    margin: auto;
}

.flaggen img{
	width: 50px;
	padding:5px;
}


/* ........ Contact Us........... */

#contact {
  padding: 5rem 0;
  background: rgb(226, 226, 226);
}

.contact-container {
  display: flex;
  background: #fff;
  border-radius: 15px;
}

.contact-img {
  width: 50%;
}

.contact-img img {
  display: block;
  height: 400px;
  width: 100%;
  object-position: center;
  object-fit: cover;
  border-radius: 15px 0 0 15px;
}

.form-container {
  padding: 1rem;
  width: 50%;
  margin: auto;
}

.form-container input {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 2px solid #ddd;
  padding: 1rem 0;
  box-shadow: none;
  outline: none;
  /*margin-bottom: 1rem;*/
  /*color: #444;*/
  font-weight: 500;
}

.form-container textarea {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 2px solid #ddd;
  color: #444;
  outline: none;
  padding: 1rem 0;
  resize: none;
}

.form-container h2 {
  font-size: 2.7rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 1rem;
  margin-top: -1.2rem;
}

.form-container a {
  font-size: 1.3rem;
}

/**** IMPRESSUM ******************************************************************/
.impressum-container {
	padding-top: 5rem;
	
	display:flex;
	flex-direction:column;
	justify-content: flex-start;
	
	
}

#firmenName {
	background-color:#1B3822;
	color: white;
	padding: 6px 20px;
    font-size: 1.2rem;	
}

.inhalt {
	padding-top:5px;
}

.impressum-container div {
	padding-left: 3%;
}

.impressum-container li{
	list-style:none;
}
/**** IMPRESSUM ******************************************************************/

.flex-container{
	display:flex;
	flex-wrap:wrap;
	margin-left: 1.2rem;
    margin-right: 1.2rem;
}

.flex-container .item{
	display:flex;
	flex-direction: column;
    flex: 1 1 300px;
    margin: 1em 0.5em;
	box-shadow: 5px 5px 10px 3px #1B3822;
    border-radius: 10px;
	align-items: center;
	padding-bottom: 2rem;
}
.column .columnhead {
    font-size: 1.5rem;
    margin: 0.75rem 0 0.5rem;
    color: hsl(40,100%,40%);
}

.thumbnail img{
	height:200px;
}

.item-img{}

.item-title{
	font-size:1.2rem;
}

.item-content{
	padding: 1.5rem;
}

/*
.column {
	padding-bottom: 20px;
	color: #424346;
	background: var(secondary);
	box-shadow: 0 1px 6px var(--shadow-deep);
}
.flex-columns {
    display: flex;
    justify-content: center;
    width: 860px;
    max-width: 100%;
    margin: auto;
}

.flex-columns .column {
    display: flex;
    flex-direction: column;
    flex: 1 1 300px;
    margin: 1em 0.5em;
}

.column .columnhead {
    font-size: 1.5rem;
    margin: 0.75rem 0 0.5rem;
    color: hsl(40,100%,40%);
}

.column .columnhead, .column p {
    margin: 0;
    padding: 0 20px;
}

*/

/* Footer */

.footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   height:50px;
   background-color: black;
   /* 
   color: white;
   text-align: center;
   */
   z-index:100;
   border-radius:10px 10px 0px 0px;
}

.flexibel {
  display: flex;;
  justify-content: space-evenly;
  /*background-color: black;*/
  
}

.flexibel img {
  width: 40px;
  height: 40px;
  padding:3px;
}

/* DESKTOP  media zwischen 769 und 1200 and (max-width: 1200px)*/

@media (min-width: 768px)  {
  .img-container h3 {
    font-size: 1.5rem;
  }

  .img-container .btn {
    font-size: 0.7rem;
  }
  
  .showcase{
	  background-size: 50%;
  }
  
  
  
}


/*  media max 768 only screen and*/
/*  media (max-width: 768px)*/
@media only screen and  (max-width: 767px) {
	html {
    font-size: 85%;
  }
.showcase-container{
	 height: 70vh;
 }
  .food-container {
    flex-direction: column;
    align-items: stretch;
  }

  .food-type:not(:last-child) {
    margin-bottom: 3rem;
  }

  .food-type {
    box-shadow: 5px 5px 10px 0 #aaa;
  }

  .img-container {
    margin: 0;
  }
  
  .food-title{
	  font-size: 1.6rem;
  }
  
  .item-content{
	  font-size:1.2rem;
  }
  
}

/*  media max 500 */

@media (max-width: 500px) {
  html {
    font-size: 65%;
  }
 .showcase-container{
	 height: 70vh;
	 font-size: 1.3rem;
	 padding:7rem;
 }
  .testimonial-container {
    flex-direction: column;
    text-align: center;
  }

  .food-menu-container img {
    margin: auto;
  }

  .food-menu-item {
    flex-direction: column;
    text-align: center;
  }
  
  .food-item {
    flex-direction: column;
    text-align: center;
  }

  .form-container {
    width: 90%;
  }

  .contact-container {
    display: flex;
    flex-direction: column;
  }

  .contact-img {
    width: 90%;
    margin: 3rem auto;
	
  }
  
  .contact-img img{
	  border-radius: 15px;
  }

  .logo {
    position: absolute;
    top: 06px;
    right: 15px;
    font-size: 3rem;
  }

}


/*  media Querformat und max Höhe 500 */

@media (orientation: landscape) and (max-height: 500px) {
  .showcase {
    height: 50vmax;
  }
}
