/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color:#e7d6cc ; /* Background color from your design */
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  } 

  button {
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
  }
  
  .mobile-frame {
    width: 375px; /* Mobile frame width */
    height: 667px; /* Mobile frame height */
    background-color: gray ;
    border: 10px solid #787070;
    border-radius: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow-y: auto; /* Enable vertical scrolling */
    overflow-x: hidden; /* Prevent horizontal scrolling */
  }
  
  .mobile-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background-color: #000;
    border-radius: 3px;
  }
  
  .mobile-frame::after {
    content: '';
    position: fixed; 
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    /* background-color: #000; */
    border-radius: 50%;
  }
  
  /* Content Styling for the Mobile Frame */

 

  header {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 130px; 
    /* background-color: #3B1711; */
    /* padding: 0 20px;  */
    position: sticky; 
    z-index: 1000; 
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);  */
}

.logo {
    max-height: 70px; 
    margin-top: 20; 
    top:50;
}
  .container {
    /* width: 100%; */
 
    /* padding: 20px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  

  .image-container {
    position: relative; 
    width: fit-content; 
    height: fit-content; 
}
  .image_1{

    max-width:80%;
    max-height:80%;
  }
  
  .header h1 {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
  }
  
  /* The Menu Section */
  .menu-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #000;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    margin-top: 20px;
}
  
  .menu-section h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #F4E0DC;
  }
  
  .menu-section p {
    font-size: 14px;
    margin-bottom: 15px;
    text-align: end;
  }
  
  .menu-section .menu-btn {
    background-color: #b32e2e;
    border-color: #fff;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .menu-section .menu-btn:hover {
    background-color: #8b2323;
  }
  
  .menu-section img {
    width: 100%;
    max-width: 280px;
    border-radius: 10px;
  }
  
  /* Yummy Confession Section */
  .confession-section {
    padding: 20px;
    border: 2px dashed #fff;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .confession-section h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .confession-section p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .confession-section .stars {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .confession-section img {
    width: 100%;
    max-width: 250px;
    
  }

  .reservation_button{
    background-color: #b32e2e;
    border-color: #fff;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  footer {
    display: flex;
    justify-content: center; 
    align-items: center; 
 
    color: white; 
    max-width: 375px;
    /* height: 200px;  */
    position: sticky;
}

.contact-info {
    text-align: center; 
    max-width: 375px;
}

.contact-info p {
    margin: 5px 0; 
    color:#fff
}


/* Hide the menu page by default */
.menu-page {
    display: none;
    text-align: center;
    padding: 20px;
}

/* Menu Page Styling */
.menu-category {
    margin-top: 20px;
    text-align: left;
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.menu-category h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #b32e2e; /* Highlight category titles */
}

.menu-category ul {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 16px;
}

.menu-category ul li {
    margin: 5px 0;
}
