* {
    box-sizing: border-box;
}
body{
    font-family: Georgia;
    
}
@media (min-width: 900px) {
    header {
        position: sticky;
        top: 0;
        z-index: 2000px;
    }
}

.header-section {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space between logo and icon */
    background-color: hsl(33, 35%, 36%);
    padding: 3px;
   
}

.sign-in-icon {
    font-size: 24px; /* Adjust the size of the icon */
    color: gold; /* Default color */
    text-decoration: none; /* Remove underline */
    margin-right: 20px; /* Add spacing to the right */
    transition: color 0.3s ease; /* Smooth hover effect */
}

.sign-in-icon:hover {
    color: #007bff; /* Change color on hover */
}
.login-i {
    color: #fff;
    font-size: 1rem;
}
/* General container styling */
.auth-container {
    display: flex;
    flex-direction: column; /* Default layout for smaller screens */
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f4f4f4;
    margin-top: 60px;
    padding: 20px;
    box-sizing: border-box;
    
   
}

.auth-box, .signup-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin-bottom: 20px; /* Add spacing between sections for smaller screens */
}

.auth-box h2 {
    margin-bottom: 20px;
    color: #333;
}

/* Social sign-in buttons */
.social-signin .btn, .social-signup .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 16px;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.social-signin .facebook, .social-signup .facebook {
    background-color: rgb(24,120,242); /* Facebook blue */
}
.social-signin .lmail, .social-signup .lmail {
    color: #333;

    border: hsla(0, 0%, 33%, 0.229) solid 1px;
}
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0; /* Add spacing above and below the divider */
}

.divider::before,
.divider::after {
    content: "";
    flex: 1; /* Makes the lines flexible to fill the space */
    border-bottom: 1px solid #ccc; /* Style of the horizontal line */
    margin: 0 10px; /* Spacing between the line and the text */
}

.divider span {
    font-size: 14px; /* Adjust the font size of the text */
    color: #666; /* Text color */
    font-weight: bold; /* Make the text bold */
}

.social-signin .facebook:hover, .social-signup .facebook:hover {
    background-color: #2d4373;
}

.social-signin .google, .social-signup .google {
    background:transparent; /* Google red */
    color: #333;
    border: hsla(0, 0%, 33%, 0.229) solid 1px;
}

.social-signin .google:hover, .social-signup .google:hover {
    background-color: #c23321;
    color: #fff;
}

.social-signin .btn i, .social-signup .btn i {
    margin-right: 10px; /* Add spacing between the icon and text */
}
.signup-prompt {
    color: #8B0000;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}

/* Responsive layout for screens above 600px */
@media screen and (min-width: 900px) {
    .auth-container {
        flex-direction: row; /* Arrange sections side by side */
        justify-content: center; /* Center the sections horizontally */
        align-items: flex-start; /* Align sections at the top */
        gap: 50px; /* Add spacing between the sections */
        align-items: center;
    }

    .auth-box, .signup-box {
        width: 45%; /* Reduce width to fit side by side */
        margin-bottom: 0; /* Remove bottom margin for side-by-side layout */
        max-width: 600px;
    }

    .signup-box {
        text-align: left; /* Align text to the left for a cleaner look */
    }
}

.wrapper{
    width: 100%;
    /* max-width: 1180px; */
    padding: 0 10px;
    margin: 0 auto; 
    text-align: center;
    justify-content: center;
}

.logo{
    /* background-image: url(/images/dkk-logo.jpeg); */
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    margin: 0 ;
    /* text-indent: -10000px; */
    float: left;
}
.logos {
      /* background-image: url(/images/dkk-logo.jpeg); */
      background-repeat: no-repeat;
      width: 50px;
      height: 50px;
      border-radius: 25px;
      margin: 0 auto ;
      /* text-indent: -10000px; */
      
}
header nav{
    float: right;
}

header nav h2{
    text-indent: -10000px;
    height: 0;
    margin: 0;
}

header nav li{
    float: left;
    list-style-type: none;
    margin: 10px 20px;
    /* background-color: yellowgreen; */
   
    /* padding: 10px 20px; */
    cursor: pointer;
}
/* .dropdown-toggle { 
    padding: 18px;
} */
header nav li a{
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    display: block;
    width: 100%;
    height: 100%;
  
}
.deuce2 {
    padding: 8px 15px;
    background-color: yellowgreen;
    border-radius: 5px;
}

.dropdown{
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: yellowgreen;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    z-index: 1000;
}
.dropdown-menu li{
    padding: 10px;
    white-space: nowrap;
    background-color: tomato;
    width: 80%;
    border-radius: 5px;
}
.dropdown-menu li a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

@media  screen and (min-width: 900px) {
    .dropdown:hover .dropdown-menu{
        display: block;
    }
}

#main-banner, #main-banner img{
    width: 100%;
}

#main-banner img{
    border-bottom: 6px solid #f34949;
}

#home-menu .hh2{
    background-image: url(menu-head.png);
    background-repeat: no-repeat;
    width: 156px;
    height: 74px;
    text-indent: -10000px;
    margin: 0 auto;
    position: relative;
    top: -4px;
}

#home-menu ul{
    padding: 0;
    list-style-type: none;
}

#home-menu ul:after{
    content: "";
    clear: both;
    display: block;
}

#home-menu li{
    float: left;
    width: 42%;
    padding: 0;
    margin: 20px 0 20px 8%;
}

#home-menu li:nth-child(odd){
    margin: 20px 8% 20px 0;
}

.dish{
    float: left;
    color: #555;
    font-weight: bold;
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 2px 15px;
    margin-right: 15px;
}

.price{
    float: right;
    color: #555;
    font-weight: bold;
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 5px;
    margin-right: 15px;
    margin-top: 5px;
}

.description{
    clear: both;
    display: block;
    color: #999;
    font-style: italic;
    font-size: 14px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
    position: relative;
    top: -8px;
}

#featured{
    margin-top: 100px;
}

#featured ul{
    padding: 0;
}

#featured li{
    float: left;
    width: 23%;
    margin: 1%;
    list-style-type: none; 
}

#featured li img{
    width: 100%;
    margin-bottom: 10px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    
    
}

#featured li a{
    color: #333;
    text-decoration: none;
    float: left;
}

#featured li span{
    float: right;
    color: #333;
}

#featured ul:after{
    content: "";
    display: block;
    clear: both;
}

footer{
    background: #3b3b3b;
    margin-top: 100px;
    padding: 30px 0;
}

footer:after{
    content: "";
    display: block;
    clear: both;
}

footer ul{
    float: left;
    padding: 0;
    list-style-type: none;
    color: #eee;
    width: 23%;
    margin-right: 2%;
}

footer li{
    margin: 10px 0;
}

footer a{
    color: #eee;
    text-decoration: none;
}
#content{
    width: 80%;
    background-color: #fff;
    padding: 20px;
    margin: 0 auto;
    font-size: 18px;
    color: #444;
    max-height: 66px;
    overflow: hidden;
    transition: max-height 1s;
}
#content.open{
    max-height: 1000px;
    transition: max-height 1s;
}
#show-more{
    text-align: center;
    margin: 20px auto;
    display: block;
    background-color: blue;
    color: #fff;
    width: 50%;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    word-spacing: 5px;
}

.welcome-section {
    padding: 60px 20px;
    background: #fdfdfd;
  }
  
  .welcome-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  
  .welcome-text {
    flex: 1;
    min-width: 300px;
  }
  
  .welcome-text h2 {
    font-size: 2.5rem;
    color: #8B0000;
    margin-bottom: 20px;
  }
  
  .welcome-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
  }
  
  .cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #8B0000;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #a00000;
  }
  
  .welcome-image {
    flex: 1;
    min-width: 300px;
  }
  
  .welcome-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  /* testimonials */
  .testimonial-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
  }
  @media  screen and (min-width: 600px) {
.testimonial-slider {
    max-width: 250px;
    width: 90%;
    /* height: 300px; */
}
.featured-section {
    max-width: 1800px;
    width: 90%;
}
.featured-dish img {
    max-height: 600px;
}
.grid-box {
    display: grid;
    grid-template-columns: repeat(2 , 1fr);
}
.welcome-container {
    display: block;overflow: hidden;
}
.welcome-text p {
    display: block;
}

.welcome-image img{
    width: 100%;
    float: right;
    margin-top: 20px;
}
  }
@media  screen and (min-width: 900px) {
.testimonial-slider {
    max-width: 1800px;

}

.testimonial {
    background-color: yellowgreen;
    color: #fff;
}
}
  
  .testimonial-track-wrapper {
    overflow: hidden;
    width: 100%;
  }
  
  .testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
  }
  
  .testimonial {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    /* background-color: #fdf4f4; */
    border-radius: 10px;
    min-height: 200px;
  }
  
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    cursor: pointer;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 5px;
  }
  
  .left-arrow { left: 10px; }
  .right-arrow { right: 10px; }
  
  .testimonial-dots {
    margin-top: 15px;
    text-align: center;
  }
  
  .testimonial-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .testimonial-dots .active {
    background: #8B0000;
  }

  /* featured dishes */
  .featured-section {
    text-align: center;
    margin: 60px auto;
    max-width: 700px;
  }
  
  .featured-slider {
    position: relative;
    overflow: hidden;
  }
  
  .featured-track-wrapper {
    overflow: hidden;
    width: 100%;
  }
  
  .featured-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .featured-dish {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 20px;
  }
  
  .featured-dish img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
  }
  
  .featured-dish h4 {
    margin: 0;
    color: #8B0000;
  }
  
  .dish-dots {
    margin-top: 15px;
    text-align: center;
  }
  
  .dish-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .dish-dots .active {
    background: #8B0000;
  }
  

    /* media queries */
@media screen and (min-width: 601px) and (max-width: 1200px){
    body{
        margin: 0 1%;
    background-color: greenyellow;
    overflow-x: hidden;
    }
    footer{
        background-color: red;
    }
    header nav{
        float: none;
        clear: left;
        width: 100%;
      
    }
    header nav ul{
        margin: 0;
        padding: 0;
       
    }
    
    header nav li a {
        font-size: 12px;
        display: block;
        width: 100%;
        height: 100%;
    }
    .dropdown{
        position: relative;
    }
    .dropdown-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        z-index: 1000;
        background-color: white;
        padding: 0 3%;
    }
    .dropdown-menu li{
        padding: 10px;
        white-space: nowrap;
        width: 100%;
        border-radius: 5px;

    }
     
    .show-menu{
        display: block;
    }
    h1.logo{
        margin: 10px auto 0;
        float: none;
    }
    header nav ul li{
        margin: 10px 2px;
        padding: 2% 0.1%;
        width: 45%;
        text-align: center;
       
    }
    .dropdown-toggle {
      display: block;
      width: 100%;
      height: 100%;
    }
    footer ul{
        width: 48%;
        text-align: center;
    }
#featured li{
width: 48%;
}
#featured li img {
    height: 200px;
}

.wrapper {
    margin: 0 auto;
}


}
@media screen and (max-width: 600px){
    body{
        
    background-color: greenyellow;
    overflow-x: hidden;
    }
    .wrapper{
       margin: 0 auto;
    }
    footer{
        background-color: green;
        justify-content: center;
        margin: 5px;
    }
#featured li{
width: 97%;
margin: 0 5px;
}
.featured ul {
    margin: 0 auto;
}
#featured li img {
    height: 300px;
}
footer ul{
    width: 98%;
    text-align: center;
    
}
#home-menu li{
float: none;
width: 96%;
margin:30px 2% !important;
}
#main-banner img{
    position: relative;
    width: 100%;
    object-fit: cover;
  /*  width: 180%;
    left: -40%; */
}
/* nav {position: relative;} */

header nav{
    float: none;
    clear: left;
    width: 100%;
  
}
header nav ul{
    margin: 0px;
    padding: 0px;
    
   
}

header nav li{
    /* float: left; */
    list-style-type: none;
    margin: 10px 0px;
    background-color: rgb(89, 50, 205);
    border-radius: 5px;
    padding: 8px;
    /* position: relative; */
    z-index: 1000px;
}

.burger-nav{
    display: block;
    height: 40px;
    width: 100%;
    background: url(dropm.jpeg) no-repeat 98% center;
    background-color: #404040;
   
}
header .wrapper{
    width: 100%;
    padding: 0;
} 
#nav-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}
header nav ul {
    /* overflow: hidden; */
   
   height: auto; 
    display: none ; 
    background-color: #333; 

} 
header nav ul.opena{
   max-height: auto;
    display: block ;

} 
header nav ul li{
    float: none;
    width: 100%;
    text-align: left;
    margin: 0;
    cursor: pointer;
}
header nav ul li a{
color: #fff;
padding: 10px;
border-bottom: 1px solid #404040;
display: block;
margin: 0 auto;

}

.dropdown{
    position: relative;
}
.dropdown-menu {
    display: none; 
    /* flex-direction: column; */
    position: static;
    top: 100%;
    z-index: 0;
    background-color: rgb(89, 50, 205);
    padding: 0 3%;
    width: 100%;
    max-height: 0;
    transition: max-height 1s ease, opacity 0.5s ease;
    opacity: 0;
}
.dropdown-menu.show {
    display: block;
    max-height: 500px;
    opacity: 1;

}


.dropdown-menu li{
    padding: 0px;
    white-space: nowrap;
    width: 100%;
    text-decoration: none;
    
}
.dropdown-menu li a{
    color: white;
}
.dropdown-toggle::after{
    content: '‣';
    float: right;
}
.dropdown-toggle.show::after{
    content: '-';
}


}

