/* 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;
}

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

.reservation {
  visibility: hidden;
  position: absolute;
  top: 15%;
  /* margin: 0 auto; */
  border-radius: 8px;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%; 
  /* max-width: 425px; */
  height: auto;
}
section {
  overflow: auto;
  overflow-x: hidden;
}

.reservation h2 {
  text-align: center;
  font-size: 1.3rem;
  margin:10px 0 12px 0;
  font-weight: 600;
}
/* #restaurant{
  width: 100%;
  height: 100%;
} */
 
form p {
  margin: 6px 0;
}

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

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

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

input[type="submit"]:hover {
  background-color: #0056b3;
}

/* 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;
  }
  
  
} */


        

