/* Reset Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}


body {
  font-family: Arial, sans-serif;
  background-color: #fefefe;
  color: #333;
}

.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 */
  margin: 0 auto;
  margin-top: 40px;
}

.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%;
}

.logo {
  max-height: 70px; 
  /* margin-top: 20; 
  top:50; */
  z-index: 1000;
}

.app-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
  text-align: center;
  background-color: #ffc0cb;
  /* padding: 20px; */
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('./assets/sliderimage.png');
  /* height: 310px; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.title {
  font-size: 36px;
  /* padding-top: 50px; */
  font-style: normal !important;
  color: #fff;
  font-family: "Times New Roman", Times, serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-image {
  width: 300px;
  border-radius: 8px;
  margin-top: 10px;
  padding-bottom: 20px;
}

/* Menu Section */
.menu-section {
  /* background-color: #ffc0cb; */
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
}

.menu-section .menu-image {
  width: 60%;
  margin: 25px 0;
  margin-left: 10px;
}

.single-star-image {
  align-items: center;
  height: 30px;
  width: 30px;
  margin: auto;
}

.view-menu-btn {
  width: 140px;
  margin: auto;
  padding: 10px 20px;
  border-color: white !important;
  color: #000;
  border: solid;
  border-width: 2px;
  border-radius: 30px;
  cursor: pointer;
}

.view-menu-btn:hover {
  background-color: #ffd8df;
}


/* 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */

/* body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #d2c6b8;
  
  overflow: hidden;
}  */

.container {
  position: relative;
  width: 80vw;
  /* Scales with viewport width */
  height: 80vw;
  max-width: 300px;
  /* Prevents it from getting too large */
  max-height: 300px;
}

.texture {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('texture.jpg') center/cover;
  /* Replace with your texture image */
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  /* Start small */
}

.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
  height: 30%;
  max-width: 180px;
  /* Prevents it from being too large */
  max-height: 90px;
  /* background-color: black;
    border-radius: 50px;
    opacity: 0; */
}

.logo p {
  color: white;
  font-size: 14px;
  font-family: Arial, sans-serif;
  text-align: center;
}


.container2 {
  width: 100%;
  max-width: 400px;
  /* Adjust to fit mobile */
  height: 100vh;
  background-color: #f4e4d9;
  /* Background color */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  opacity: 0;
  background-image: url(./assets/1x/splash_background.png);
}



.circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0);
  position: relative;
}

.pink-circle {
  background-color: #f8c3d6;
}

.gray-circle {
  background-color: #d0cdc6;
}

.red-circle {
  background-color: #d54b4b;
}

.logo {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: white;
  opacity: 0;
  transform: translateY(20px);
}

.bistro-logo {
  color: #000;
}


/* Landing page styles */
#landing-page {
  display: block;
  /* Initially visible */
  text-align: center;
}

/* Splash page styles */
#splash-page {
  display: none;
  /* Initially hidden */
  text-align: center;
}


.stars {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
  /* background-color: #f8c3d6; */
}

.star-image {
  width: 60px;
  height: 60px;
  padding: 10px;
}

.about-section {
  height: 200px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px;
  background-color: #fff;
}

.about-header {
  flex: 1;
  width: 50%;
  /* padding: 10px; */
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-icon {
  flex: 1;
  width: 40%;
}

.circle-image {
  position: absolute;
  top: 0;
  right: 1;
  padding-left: 10px;
}

.circle-image img {
  width: 20px;
  height: 20px;
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  row-gap: 20px;
  padding: 20px;
  font-family: 'Times New Roman', Times, serif;
}

.footer h3 {
  color: #ffc0cb;
  font-weight: 600;
  padding-bottom: 5px;
}

.footer p {
  color: black;
  font-weight: 600;
  padding-bottom: 5px;
}

.back {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  padding: 10px;
  color: white;
}

.menu-header {
  position: relative;
  background-color: #ffc0cb;
  color: white;
  font-family: 'Times New Roman', Times, serif;
  font-size: 45px;
  font-weight: 700;
  /* height: 90px; */
}

.menu-header span {
  position: absolute;
  top: 0;
  right: 1;
  font-size: 16px;
}

/*****menu page designing****/
.background-image2{
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
  height: 100vh; /* Ensures full viewport height */
}

.menu-container {
  width: 350px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  background-image: url(./assests/page2_layout.png);
  background-size: cover; /* Adjusts image to cover the div */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents repetition */
  background-blend-mode: multiply; 
}

h1 {
  font-size: 24px;
  color: #c94e50;
  margin-bottom: 5px;
}

.rating {
  font-size: 20px;
  color: gold;
  margin-bottom: 10px;
}

.categories button {
  background: #f2a5b4;
  border: none;
  padding: 8px 15px;
  margin: 5px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  color: white;
}

.categories button:hover {
  background: #c94e50;
}

.menu-section {
  text-align: left;
  margin-top: 15px;
  /* background-color: #ffc0cb; */
}

h2, h3 {
  color: #333;
  font-size: 18px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin: 5px 0;
}

.FOE{
  width: 200%;
}

