header{/* Headers will be this color and size*/
  text-align: center;
  background-color: rgb(64, 87, 67);
  padding: 25px 12px;
  
}
.landing {
  text-align: center;
  margin: 20px auto;
}

.carousel {
  position: relative;
  width: 400px;   /* Small size */
  height: 400px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.carousel-images {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-images img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 12px;
}

.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
}

.carousel .prev {
  left: 10px;
}

.carousel .next {
  right: 10px;
}

.carousel button:hover {
  background: rgba(0,0,0,0.8);
}


.taskbar{
  display: flex;
  align-items: center;
  background-color: rgba(64, 87, 67, 0.8);
}

.taskbar a{
  color: rgb(224, 178, 40); /* Golden text color */
  text-decoration: none; /* Remove underline */
  font-size: 18px; /* Font size */
  margin: 0 10px; /* Spacing between links */
  font-family: 'Times New Roman', Times, serif;
  align-items: right;
}
.taskbar .logo{
  height: 65px;
  margin-right: 30px;
}


h1{ /*this will make sure all the header text will be this color and font/size*/
  color: rgb(224, 178, 40);
  font-size: 45px;
  font-family: 'Times New roman','Times New Roman', Times, serif;
  align-items: center;
  text-align: center
 
}
h2{
  color: rgb(238, 238, 238);
  font-size:30px;
  font-family: 'Times New roman','Times New Roman', Times, serif;
  align-items: center;
}


body {
  font-family: Georgia, 'Times New Roman', Times, serif;
  background-color: rgb(235, 246, 229);
  color:black;
  margin: 0;
  position: relative;
  padding-bottom: 4rem;
  min-height: 100%;
}

/*STYLING FOR THE FOOTER*/

footer {
  background-color: rgba(64, 87, 67, 0.8);
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: white;
  text-align: left;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; 
  gap: 20px; /* Add spacing between sections */
}

.footer-info {
  display: flex;
  justify-content: space-between; /* Align left and right sections */
  align-items: flex-start; /* Align items at the top */
}

.footer-left,
.footer-right {
  flex: 1; /* Equal width for left and right sections */
  margin: 0 10px;
}

footer ul {
  list-style-type: none;
  margin: 0; /* Removes default margin */
  padding: 0; /* Removes default padding */
}



/* The map API styling*/

#hotel-map {
  height: 300px;
  width: 100%;
  border: 2px solid #555;
  border-radius: 8px;
}

/* Optional: Style links */
footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* STYLING FOR DISPLAYING THE ROOMS*/

.rooms-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 20px auto;
  max-width: 1200px; 
}

.room-card {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: calc(33% - 40px); 
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s;
  min-width: 300px; 
}

.room-card:hover {
  transform: scale(1.05);
}

.room-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}

.room-details {
  padding: 15px;
}

.book-now-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background-color: rgb(64, 87, 67);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
}

.book-now-button:hover {
  background-color: rgb(224, 178, 40);
}


#bookingForm {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: Georgia, 'Times New Roman', Times, serif;
}

/* h1 {
  color: rgb(224, 178, 40);
  font-size: 45px;
  font-family: 'Times New Roman', Times, serif;
  text-align: center;
  margin-bottom: 20px;
} */

#bookingForm label {
  display: block;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 5px;
  color: rgb(64, 87, 67);
}

#bookingForm input,
#bookingForm select,
#bookingForm textarea {
  width: 95%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: black;
}

#bookingForm input:focus,
#bookingForm select:focus,
#bookingForm textarea:focus {
  border-color: rgb(224, 178, 40); 
  outline: none;
  box-shadow: 0 0 5px rgba(224, 178, 40, 0.5);
}

#bookingForm button {
  background-color: rgb(64, 87, 67); 
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Times New Roman', Times, serif;
}

#bookingForm button:hover {
  background-color: rgb(224, 178, 40); 
}


.parking-div {
  display: flex;
  align-items: center;
  margin-bottom: 15px; 
}

.parking-div label {
  margin-right: 10px;
  color: rgb(64, 87, 67); 
  font-weight: bold;
}

.feedback-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.feedback-form h1 {
  color: rgb(224, 178, 40);
  font-size: 45px;
  font-family: 'Times New Roman', Times, serif;
  text-align: center;
  margin-bottom: 20px;
}

.feedback-form label {
  display: block;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 5px;
  color: rgb(64, 87, 67);
}

.feedback-form input,
.feedback-form select {
  width: 95%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: black;
}

.feedback-form input:focus,
.feedback-form select:focus {
  border-color: rgb(224, 178, 40);
  outline: none;
  box-shadow: 0 0 5px rgba(224, 178, 40, 0.5);
}

.feedback-form button {
  background-color: rgb(64, 87, 67);
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Times New Roman', Times, serif;
  position: center
}

.feedback-form button:hover {
  background-color: rgb(224, 178, 40);
}
.about-us-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(235, 246, 229, 0.9); 
  padding: 40px;
  gap: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.about-us-txtbox {
  max-width: 50%;
  font-family: 'Times New Roman', Georgia, serif;
  color: rgb(64, 87, 67); /* Match the theme */
  padding: 20px;
  border-radius: 8px;
}

.about-us-txtbox h1 {
  font-size: 35px;
  color: rgb(224, 178, 40); /* Golden header color */
  margin-bottom: 15px;
}

.about-us-txtbox p {
  font-size: 18px;
  line-height: 1.6;
  text-align: justify;
}

.about-us-imgbox {
  max-width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-us-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 2px solid rgba(224, 178, 40, 0.7); 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.success-message {
  margin: 20px 0;
  padding: 15px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}

.success-message {
  background-color: #d4edda; 
  color: #155724; 
  border: 1px solid #c3e6cb;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#comments-section {
  max-width: 800px;
  margin: 40px auto;
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: Georgia, 'Times New Roman', Times, serif;
}

#comments-section h2 {
  text-align: center;
  color: rgb(64, 87, 67);
  font-size: 35px;
  margin-bottom: 20px;
  font-family: 'Times New Roman', Times, serif;
}

.comment {
  background-color: rgba(224, 178, 40, 0.1); 
  border-left: 5px solid rgb(224, 178, 40); 
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.comment:hover {
  transform: scale(1.02); 
}

.comment p strong {
  color: rgb(64, 87, 67); 
  font-size: 18px;
  font-weight: bold;
}

.comment p {
  margin: 5px 0;
  line-height: 1.5;
  color: black;
}

.comment p span {
  background-color: rgb(224, 178, 40); 
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 5px;
}

.success-message {
  max-width: 800px;
  margin: 20px auto;
  padding: 15px;
  background-color: rgba(64, 87, 67, 0.1);
  border: 2px solid rgb(64, 87, 67);
  border-radius: 6px;
  color: rgb(64, 87, 67);
  font-size: 16px;
  text-align: center;
}



/* ERROR STYLING*/

.error-list {
  color: red;
  font-weight: bold;
  margin-top: 10px;
  padding: 10px;
  background-color: #ffe6e6;
  border-radius: 5px;
  padding-left: 700px;
}

#errorBox {
  display: none;
  color: red;
  background-color: #ffe6e6;
  padding: 10px;
  border: 1px solid red;
  border-radius: 5px;
  margin-top: 10px;
}

.image-container {
  display: flex;
  justify-content: center; /* Horizontally centers the image */
  align-items: center; /* Vertically centers the image if container has height */
  height: 100vh; /* Optional: Set the height of the container to the viewport height */
}

.image-container img {
  width: 100%; /* Make the image fit the width of the page */
  max-width: 100%; /* Prevents the image from exceeding its natural width */
  height: auto; /* Maintains aspect ratio */
  display: block; /* Removes any extra space below the image */
}



/* Styling for the login form */
/* Styling for the login form */
.form-container {
  max-width: 400px;
  margin: 0 auto;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: Georgia, 'Times New Roman', Times, serif;
  margin-bottom: 50px; /* Adds space below the form to separate it from the footer */
}

.form-container h1 {
  text-align: center;
  color: rgb(224, 178, 40);
  font-size: 36px;
  margin-bottom: 20px;
}

.form-container label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: rgb(64, 87, 67);
}

.form-container input {
  width: calc(100% - 10px); /* Adjust width to leave padding inside */
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: black;
}

.form-container input:focus {
  border-color: rgb(224, 178, 40);
  outline: none;
  box-shadow: 0 0 5px rgba(224, 178, 40, 0.5);
}

.form-container button {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: rgb(64, 87, 67);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-container button:hover {
  background-color: rgb(224, 178, 40);
}

.dashboard-actions{
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.dashboard-actions a {
  margin-right: 10px;
  padding: 12px 18px;
  color: #fff;
  text-decoration: none;
  background-color: #0077ff;
  border-radius: 5px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.dashboard-actions .logout-button {
  margin-right: 10px;
  padding: 12px 18px;
  background-color: rgb(64, 87, 67); /* Match the theme color */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.dashboard-actions .add-room-button {
  background-color: #28a745; /* Green color */
  padding: 12px 18px;
  color: white;
  text-align: center;
  border-radius: 5px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  display: block; /* Center in a flex container if needed */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.action-buttons {
  display: flex;
  flex-wrap: wrap; 
  justify-content: center;
  gap: 10px; 
  margin-top: 15px;
}

.action-buttons a,
.action-buttons button {
  padding: 8px 12px;
  font-size: 14px;
  color: white;
  background-color: rgb(64, 87, 67);
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.action-buttons a:hover,
.action-buttons button:hover {
  background-color: rgb(224, 178, 40);
}

.edit-button {
  background-color: rgb(224, 178, 40); /* Gold color for edit */
  color: white;
}

.edit-button:hover {
  background-color: rgb(200, 158, 35); /* Slightly darker on hover */
}

.action-buttons .delete-button {
  background-color: rgb(179, 57, 57);
}

.action-buttons .delete-button:hover {
  background-color: rgb(224, 78, 78);
}

.action-buttons .out-of-service-button {
  background-color: rgb(102, 102, 153);
}

.action-buttons .out-of-service-button:hover {
  background-color: rgb(153, 153, 204);
}

/* Calendar */
#room_calendar, #calendar_all {
  max-width: 1100px;
  margin: 40px auto;
}

#room_calendar, #calendar_all .fc-toolbar-title {
  color: #161515; 
  font-size: 1.5em; 
  position: relative;
  font-weight: bold; 
}

#room_calendar {
  margin-bottom: 20px;
  transform: translateX(-2%);
}

#calendar_all .fc-toolbar-title {
  color: #161515; 
  font-size: 1.5em; 
  position: absolute;
  transform: translateX(300%);
}

h2#fc-dom-1.fc-toolbar-title{
  color:#1a252f
}

.center-button {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.center-button button {
  padding: 10px 20px;
  background-color: #007BFF; /* Customize as needed */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
}
.center-button button:hover {
  background-color: #0056b3; /* Darker shade for hover effect */
}
.center-button button a {
  text-decoration: none;
  color: white;
}

.center-button {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.center-button button {
  padding: 10px 20px;
  background-color: #007BFF; /* Customize as needed */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
}
.center-button button:hover {
  background-color: #0056b3; /* Darker shade for hover effect */
}
.center-button button a {
  text-decoration: none;
  color: white;
}

.modal {
  display: none; /*hide modal*/
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 400px;
  max-width: 90%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden; 
}

.modal-open .main-content { 
  pointer-events: none; 
  opacity: 0.5; 
}

.grayed-out {
  opacity: 0.5; 
  background-color: #e0e0e0; 
}

.status-button {
  background-color: #44b00a;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 4px;
}

.status-button:hover {
  background-color: #0056b3;
}

.grayed-out .action-buttons button {
  opacity: 1; 
  pointer-events: all; 
}

.action-buttons button {
  margin: 5px;
  padding: 8px 12px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.action-buttons button:hover {
  background-color: #0056b3;
}

.tourism-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 20px auto;
  max-width: 1200px; 
}
.tourism-card {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: calc(33% - 40px); 
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s;
  min-width: 300px; 
}

.tourism-card:hover {
  transform: scale(1.05);
}

.tourism-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}
.tourism-card p {
  color: #7f8c8d;
  font-size: 1em;
  margin-bottom: 12px;
}
.tourism-card ul {
  list-style: none;
  padding: 1px;
  margin: 10px;
  text-align: left;
}

.tourism-card ul li {
  margin: 6px 0;
  font-size: 0.9em;
}

.tourism-card a {
  color: #3498db;
  text-decoration: none;
}

.tourism-card a:hover {
  text-decoration: underline;
}

.translate-dropdown {
  position: absolute;
  top: 10px; /* Distance from the top of the page */
  right: 10px; /* Distance from the right of the page */
  z-index: 1000; /* Ensures it stays above other elements */
}

#google_translate_element {
  position: relative;
  z-index: 9999; /* keep it above other elements if needed */
  margin: 10px auto;
  display: flex;
  justify-content: right; /* center horizontally */
}



/* RESERVATIONS TABLE*/

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

table, th, td {
  border: 1px solid #ddd;
}

th, td {
  padding: 8px;
  text-align: left;
}

th {
  background-color: #f2f2f2;
}

tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

tbody tr:hover {
  background-color: #f1f1f1;
}

