@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}
:root{
  background-color: #4a0604;
}
.wrapper{
    background: #4a0604;
    position: fixed;
    width: 100%;
    border: 3px solid black;
  }
  .wrapper nav{
    position: relative;
    display: flex;
    max-width: calc(100% - 200px);
    margin: 0 auto;
    height: 70px;
    align-items: center;
    justify-content: space-between;
  }
  nav .content{
    display: flex;
    align-items: center;
  }
  nav .content .links{
    margin-left: 80px;
    display: flex;
  }
  .content .logo1 a{
    color: #fff8dc;
    font-size: 29px;
    font-weight: 600;
  }
  .content .logo1 img{
    width: 65px;
    position: absolute;
    left: -78px;
    top: 0.5%;
  }
  .content .links li{
    list-style: none;
    line-height: 60px;
  }
  .content .links li a,
  .content .links li label{
    color: #fff8dc;
    font-size: 18px;
    font-weight: 750;
    padding: 9px 17px;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .content .links li label{
    display: none;
  }
  .content .links li a:hover,
  .content .links li label:hover{
    background: #fff8dc;
    color: #4a0604;
  }
  .wrapper .search-icon,
  .wrapper .menu-icon{
    color: #fff8dc;
    font-size: 18px;
    cursor: pointer;
    line-height: 70px;
    width: 70px;
    text-align: right;
  }
  .wrapper .menu-icon{
    display: none;
  }
  .wrapper #show-search:checked ~ .search-icon i::before{
    content: "\f00d";
  }
  .wrapper .search-box{
    position: absolute;
    height: 100%;
    max-width: calc(100% - 50px);
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .wrapper #show-search:checked ~ .search-box{
    opacity: 1;
    pointer-events: auto;
  }
  .search-box input{
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 17px;
    color: #fff8dc;
    background: #4a0604;
    padding: 0 1200px 0 15px;
  }
  .search-box input::placeholder{
    color: #fff8dc;
  }
  .search-box .go-icon{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 60px;
    width: 70px;
    background: #4a0604;
    border: none;
    outline: none;
    color: #fff8dc;
    font-size: 20px;
    cursor: pointer;
  }
  .wrapper input[type="checkbox"]{
    display: none;
  }
  /* Dropdown Menu code start */
  .content .links ul{
    position: absolute;
    background: #4a0604;
    top: 80px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
  }
  .content .links li:hover > ul{
    top: 70px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    border-top: 3px solid black;
  }
  .content .links ul li a{
    display: block;
    width: 100%;
    line-height: 30px;
    border-radius: 0px!important;
  }
  .content .links ul ul{
    position: absolute;
    top: 0;
    right: calc(-100% + 8px);
  }
  .content .links ul li{
    position: relative;
  }
  .content .links ul li:hover ul{
    top: 0;
  }
  /* Responsive code start */
  @media screen and (max-width: 1250px){
    .wrapper nav{
      max-width: 100%;
      padding: 0 20px;
    }
    nav .content .links{
      margin-left: 30px;
    }
    .content .links li a{
      padding: 8px 13px;
    }
    .wrapper .search-box{
      max-width: calc(100% - 1200px);
    }
    .wrapper .search-box input{
      padding: 0 1200px 0 15px;
    }
  }
  @media screen and (max-width: 1029px){
    .wrapper .menu-icon{
      display: block;
    }
    .wrapper #show-menu:checked ~ .menu-icon i::before{
      content: "\f00d";
    }
    nav .content .links{
      display: block;
      position: fixed;
      background: #4a0604;
      height: 100%;
      width: 47.5%;
      top: 73.5px;
      left: -100%;
      margin-left: 0;
      max-width: 350px;
      overflow-y: auto;
      padding-bottom: 1200px;
      transition: all 0.3s ease;
      border-top: 3px solid black;
      border-left: 3px solid black;
      border-right: 3px solid black;
    }
    nav #show-menu:checked ~ .content .links{
      left: 0%;
    }
    .content .links li{
      margin: 15px 20px;
    }
    .content .links li a,
    .content .links li label{
      line-height: 40px;
      font-size: 20px;
      display: block;
      padding: 8px 14px;
      cursor: pointer;
    }
    .content .links li a.desktop-link{
      display: none;
    }
    /* dropdown responsive code start */
    .content .links ul,
    .content .links ul ul{
      position: static;
      opacity: 1;
      visibility: visible;
      background: none;
      max-height: 0px;
      overflow: hidden;
    }
    .content .links #show-features:checked ~ ul,
    .content .links #show-services:checked ~ ul,
    .content .links #show-items:checked ~ ul{
      max-height: 100vh;
    }
    .content .links ul li{
      margin: 7px 20px;
    }
    .content .links ul li a{
      font-size: 18px;
      line-height: 30px;
      border-radius: 5px!important;
    }
  }
  @media  screen and (max-width: 580px) {
    .content .links li a,  
    .content .links li label, 
    .content .links ul li a{
      font-size: 16px;
    }
  }
  @media  screen and (max-width: 520px) {
    .content .links li a,  
    .content .links li label, 
    .content .links ul li a{
      font-size: 14px;
    }
  }
  @media screen and (max-width: 400px){
   .wrapper nav{
     padding: 0 10px;
   }
   .content .logo1 a{
     font-size: 27px;
   }
   .wrapper .search-box{
     max-width: calc(100% - 70px);
   }
   .wrapper .search-box .go-icon{
     width: 30px;
     right: 0;
   }
   .wrapper .search-box input{
     padding-right: 30px;
   }
   .content .links li a,
   .content .links li label{
     font-size: 14px;
   }
  }
/* Header tekst and images*/
.Restaurant_Header_Container{
  width: 100%;
}
.Restaurant_Header {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 80px;
    font-family: "Lora", sans-serif;
    font-weight: 550;
    color: #fff8dc;
    text-shadow: black 3px 3px;
  }
  @media screen and (max-width: 1200px) {
    .Restaurant_Header {
      font-size: 70px;
    }
  }
  @media screen and (max-width: 1055px) {
    .Restaurant_Header {
      font-size: 60px;
    }
  }
  @media screen and (max-width: 905px) {
    .Restaurant_Header {
      font-size: 55px;
    }
  }
  @media screen and (max-width: 840px) {
    .Restaurant_Header {
      font-size: 50px;
    }
  }
  @media screen and (max-width: 760px) {
    .Restaurant_Header {
      font-size: 45px;
    }
  }
  @media screen and (max-width: 685px) {
    .Restaurant_Header {
      font-size: 40px;
      top: 20%;
    }
  }
  .Restaurant_Header h1{
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 80px;
    font-family: "Lora", sans-serif;
    font-weight: 550;
    color: #fff8dc;
    text-shadow: black 3px 3px;
  }
  .info_Windmill {
      position: relative;
      top: -50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      font-size: 20px;
      font-family: "Lora", sans-serif;
      font-weight: 550;
      color: white;
      padding: 0 15% 0 15%;
  }
  @media screen and (max-width:920px){
    .info_Windmill{
        font-size: 18px;
    }
  }
  @media screen and (max-width:680px){
    .info_Windmill{
        font-size: 16px;
    }
  }
  @media screen and (max-width:555px){
    .info_Windmill{
        font-size: 14px;
    }
  }
  @media screen and (max-width:440px){
    .info_Windmill{
        font-size: 12px;
    }
  }

  /* red block */
  .redblock{
    width: 100%;
    height: 1000px;
    background-color: #4a0604;
    padding-top: 5%;
  }

/* Img Collage*/

 /* Img Collage*/


.container .image-container{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  justify-content: center;
  padding: 10px;
}
.container .image-container > *{
  flex-basis: 1 1 25%;
}
.container .image-container .image{
  height: 200px;
  width: 350px;
  border: 3px solid black;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
  overflow: hidden;
  cursor: pointer;
}


@media  screen and (max-width: 545px) {
  .container .image-container{
    flex-wrap: wrap;
  }
  .container .image-container > *{
    flex-basis: 45%;
  }
}

/* Styling rest containers */
.container .image-container{
    margin-top: 2%;
}

.container .image-container .image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: .2s linear;
}
.container .image-container .image:hover img{
  transform: scale(1.1);
}
.container .popup-img{
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0,0,0,.9);
  height: 100%;
  width: 100%;
  z-index: 100;
  display: none;
}
.container .popup-img span{
  position: absolute;
  top: 0; right: 10px;
  font-size: 60px;
  font-weight: bolder;
  color: #fff;
  cursor: pointer;
  z-index: 100;
}
.container .popup-img img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 5px solid #fff;
  border-radius: 5px;
  width: 80%;
  height: 85%;
  object-fit: cover;
}
@media (max-width: 768px){
  .container .popup-img img{
      width: 90%;
  }
}
@media (max-width: 650px){
  .container .popup-img img{
      width: 85%;
      height: 75%;
  }
}
@media (max-width: 500px){
  .container .popup-img img{
      width: 85%;
      height: 45%;
  }
}
@media (max-width: 400px){
  .container .popup-img img{
      width: 85%;
      height: 35%;
  }
}
@media (max-width: 840px){
  .container .image-container .image{
      height: 155px;
      width: 250px;
      box-shadow: 0 5px 15px rgba(0,0,0,.1);
      overflow: hidden;
      cursor: pointer;
  }
}
@media (max-width: 600px){
  .container .image-container .image{
      height: 135px;
      width: 250px;
      box-shadow: 0 5px 15px rgba(0,0,0,.1);
      overflow: hidden;
      cursor: pointer;
  }
}
@media (max-width: 495px){
  .container .image-container .image{
      height: 110px;
      width: 250px;
      box-shadow: 0 5px 15px rgba(0,0,0,.1);
      overflow: hidden;
      cursor: pointer;
  }
}
@media (max-width: 410px){
  .container .image-container .image{
      height: 100px;
      width: 250px;
      box-shadow: 0 5px 15px rgba(0,0,0,.1);
      overflow: hidden;
      cursor: pointer;
  }
}


  /* Image styling */

  .Img_Restaurant{
    width: 100%;
    height: 100%;
  }

  /*Footer*/
  footer{
    width: 100%;
    position: absolute;
    background: linear-gradient(to right, #00093c, #2d0b00);
    color: #fff;
    padding: 100px 0 30px;
    border-top-left-radius: 125px;
    font-size: 13px;
    line-height: 20px;
}
.row{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.col{
    flex-basis: 25%;
    padding: 10px;
}
.col:nth-child(2), .col:nth-child(3){
    flex-basis: 15%;
}
.col h3{
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}
.email-id{
  width: fit-content;
  border-bottom: 1px solid #ccc;
  margin: 20px 0;
}
.col ul li{
    list-style: none;
    margin-bottom: 12px;
}
.col ul li a{
    text-decoration: none;
    color: #fff;
}

.social-icons ul{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 5px;
    font-size: 50px;
    margin-right: 100px;
    cursor: pointer;
    display: flex;
    gap: 20px;
}
.social-icons ul li a{
    position: relative;
    text-decoration: none;
    color: var(--clr);
    z-index: 10;
    font-size: 1em;
    transition: 0.5s;
}
.social-icons ul li:hover a{
    filter: drop-shadow(0 0 20px var(--clr)) drop-shadow(0 0 40px var(--clr)) drop-shadow(0 0 60px var(--clr));
}
.social-icons ul li:hover{
    z-index: 10000;
    transform: scale(0.75);
}
.logo{
  width: 50%;
  padding-bottom: 5%;
}
hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}
.copyright{
    text-align: center;
}
.underline{
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}
.underline span{
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}
@keyframes moving{
    0%{
        left: -20px;
    }
    100%{
        left: 100%;
    }
}
@media (max-width: 700px){
    footer{
        bottom: unset;
    }
    .col{
        flex-basis: 100%;
    }
    .col:nth-child(2), .col:nth-child(3){
        flex-basis: 100%;
    }
    .logo{
      width: 30%;
      padding-bottom: 5%;
    }
    
}