/* general styling */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html{
  font-size: 1rem; /* 1rem = 16px */
  font-family: "Poppins", sans-serif;
}

body{
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  box-sizing: border-box;
  overflow: hidden;
  background-image: url('../assets/images/blurry-image-restaurant-interior-background_967785-42383.avif');
  background-size:cover;
  background-position: center;
}


 /* Phone frame with PNG background */
 .phone-frame {
  position: relative;
  width: 360px; /* Adjust the width of your phone */
  height: 700px; /* Adjust the height of your phone */
  background-image: url('../assets/images/phoneFrame.png'); /* Your phone PNG image */
  background-size:cover;
  background-position: center;
  /* margin: 50px auto; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame .screen {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Ensures the SVG stays inside the screen */
}

.phone-frame .screen object  {
  width: 90%;
  height: 100%;
}




main {
    max-width: 384px;
    height: 700px;
    /* height: 671px; */
    /* height: 100vh; */
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    /* box-sizing: border-box; */
}

 .reservation {
  visibility: hidden;
  position: absolute;
  top: 22%;
  border-radius: 8px;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%; 
  /* height: auto; */
}

section {
  overflow: auto;
  overflow-x: hidden;
}
 
form p {
  margin: 12px 0;
}

label {
  font-weight:500;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

input[type="text"], 
select, 
textarea {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.9rem;
  color: #333;
}
#inputDate{
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
}

input[type="text"]:focus, 
select:focus, 
textarea:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.1);
}

select {
  appearance: none;
  background-color: #fff;
  cursor: pointer;
}

textarea {
  resize: none;
  height: 60px;
}

input[type="submit"] {
  width: 100%;
  padding: 8px;
  margin-top: 6px;
  border: none;
  border-radius: 20px;
  font-size: 18px;
  cursor: pointer;
}

/* Required field marker */
label span {
  color: #e63946;
}

/* Styling for reveal class */
.reveal {
  opacity: 1;
  transition: all 0.5s ease;
}

/* Optional: Add some styling to placeholder text */
::placeholder {
  color: #e9c246;
  /* opacity: 0.8; */
}


/* Responsive Media Queries */

/* Responsive Media Queries */
/* @media (max-width: 768px) {
  main {
    max-width: 384px;
  }
  
  .reservation h2 {
    font-size: 1rem;
  }
  
  input[type="text"],
  select,
  textarea {
    font-size: 0.8rem;
    padding: 10px;
  }
} */
/* 
@media (max-width: 480px) {
  main {
    max-width: 100%;
  }
  .reservation h2 {
    font-size: 1rem;
  }
  
  input[type="text"],
  select,
  textarea {
    font-size: 0.8rem;
    padding: 10px;
  }
  
  
} */


        

