@import url("https://fonts.googleapis.com/css2?family=Alice&family=Karla:ital,wght@0,200..800;1,200..800&family=Marcellus&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  /* background-color: #00b4d8; */
  background-color: #6096b4;
  overflow-x: hidden;
}

.home-image img {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  margin-top: 160px;
}

.home-titles {
  width: 100%;
  max-width: 100%;
  text-align: center;
  justify-items: center;
  align-content: center;
}

.home-titles h1 {
  padding-bottom: 10px;
  color: #ffffff;
  font-size: 62px;
}

.home-titles span {
  width: 600px;
  padding-top: 20px;
  font-size: 24px;
  color: white;
  display: block;
}

/* 
*/

.header-navbar {
  top: 0;
  align-items: center;
  position: sticky;
  z-index: 1000;
  width: 100%;
  height: 80px;
  padding: 10px;
  /* background-color: #133e87; */
  background-color: #6096b4;
  display: flex;
  justify-content: space-between;
}

.logo-nav {
  display: flex;
  align-items: center;
}

.logo-nav h3 {
  cursor: default;
  margin-left: 20px;
  color: white;
}

.header-navbar img {
  width: 60px;
  margin-left: 20px;
  height: 60px;
  border-radius: 50%;
}

.nav-links {
  padding: 20px;
  align-items: center;
  display: flex;
}

.nav-links #dropdownBars {
  display: none;
}

.header-navbar ul {
  list-style: none;
}

.header-navbar ul li a {
  font-weight: bold;
  text-decoration: none;
  color: white;
  padding: 20px;
  border: none;
  background-color: transparent;
}

.nav-links #dropdownButton {
  cursor: pointer;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
}

.nav-links ul {
  display: flex;
}

.nav-links .auth-link {
  display: none;
}

.nav-links button img {
  width: 40px;
  height: 40px;
  position: relative;
  left: -15px;
}

.checkbtn {
  font-size: 22px;
  color: #ffffff;
  display: none;
}

#check {
  display: none;
}

.hidden {
  display: none;
}

.dropdown {
  position: absolute;
  top: 70px;
  right: 0px;
  background-color: #6096b4;
  border: none;
  width: 150px;
  border-radius: 5px;
  z-index: 1000;
}

.dropdown ul {
  list-style: none;
}

.dropdown ul li {
  margin-bottom: 10px;
}

.dropdown a {
  text-decoration: none;
  color: #ffffff;
}

/* No Reservation found */

.no-reservation {
  background-color: #f0f4f8;
  border: 2px dashed #86b6d4;
  padding: 3rem 2rem;
  border-radius: 1rem;
  text-align: center;
  color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 40rem;
  margin: 4rem auto;
}

.no-reservation-icon {
  font-size: 3rem;
  color: #6096b4;
  margin-bottom: 1rem;
}

.no-reservation h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #1f2d3d;
}

.no-reservation p {
  font-size: 1rem;
  color: #555;
}



/* Cancel or edit booking section */

.container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 60rem;
  margin-inline: auto;
  margin-top: 3rem;
  padding-inline: 1.5rem;
  padding-bottom: 4rem;
}

.container .row-1 .edit_button {
  padding: 1rem;
  background-color: rgb(190, 190, 2);
  border: none;
  color: white;
  border-radius: .7rem;
  width: 13rem;
  cursor: pointer;
}

.container .row-1 .cancel_button {
  padding: 1rem;
  background-color: red;
  border: none;
  color: white;
  border-radius: .7rem;
  width: 13rem;
  cursor: pointer;
}

.container .row-1 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.container .row-1 .button_row {
  display: flex;
  gap: .6rem;
}

.container .row-2 > div:nth-child(1)  {
  color: rgb(56, 53, 53);
}

.status-card {
  background-color: #fffbe6; /* soft yellow background */
  border: 1px solid #f3e58d; /* light border */
  border-left: 5px solid #f2c94c; /* accent left bar */
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 0.8rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
}

.status-icon {
  color: #f2c94c; /* yellow theme */
  font-size: 2rem;
}

.status-text {
  font-weight: 600;
  color: #b38b00;
  font-size: 1.2rem;
  margin: 0;
}

.status-card.approved {
  background-color: #fffbe6; /* soft yellow background */
  border: 1px solid rgba(0, 128, 0, 0.61); /* light border */
  border-left: 5px solid green; /* accent left bar */
}

.status-icon.approved {
  color: green;
}

.status-text.approved{
  color: green;
}

.status-subtext {
  color: #666;
  font-size: 0.9rem;
}

.details-box {
  background-color: #f0f4f8; /* soft light blue/gray to contrast nicely with #6096b4 */
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #1f2d3d;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.details-box h3 {
  margin-bottom: 0.5rem;
  color: #133e87; /* deep blue for title */
  font-size: 1.5rem;
  border-bottom: 2px solid #86b6d4; /* lighter tone of the theme */
  padding-bottom: 0.4rem;
}

.details-box p {
  font-size: 1rem;
  color: #333;
}

.details-box p strong {
  color: #0a3a58;
}



/*  Edit reservation Modal */

.edit_reservation_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  z-index: 1000;
  padding: 1.5rem;;
}

.edit_reservation_modal.show {
  display: flex;
}

.reservationContainer {
  flex: 1;
  width: 100%;
  max-width: 600px;
  height: auto;
  background-color: #6097b4;
  padding: 40px;
  border-radius: 10px;
  overflow: auto;
}

.reservationContainer h1 {
  margin-bottom: 20px;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
}

.reservationContainer form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reservationContainer .reservationRow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.fullName label,
.phoneNumber label,
.address label,
.tourTime label,
.date label,
.cottages label,
.tables label,
.rooms label{
  color: #ffffff;
  font-size: 16px;
  display: block;
}

.reservationContainer input {
  border: none;
  width: 100%;
  height: 40px;
}

.reservationContainer input[type="text"],
input[type="number"],
input[type="tel"] {
  padding: 20px
}

.reservationContainer input[type="text"]:focus {
  outline: none;
}

.reservationContainer input[type="date"] {
  padding: 20px 0;
  text-align: center;
  border: none;
}

.reservationContainer input:focus {
  outline: none;
}

.reservationContainer select {
  width: 100%;
  padding: 12px;
}

.reservationContainer select:focus {
  outline: 0;
}

.reservationContainer input[type="submit"] {
  width: 100%;
  height: 50px;
  text-align: center;
  background-color: #133e87;
  border: none;
  border-radius: 5px;
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
}

.reservationHeader {
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.modalButtons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.cancelBtn {
  flex: 1;
  height: 50px;
  background-color: #ddd;
  border: none;
  border-radius: 5px;
  color: #000;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
}

.reservationContainer input[type="submit"] {
  flex: 1;
}