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

body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
}

/* === Header and Navbar === */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #000;
  padding: 20px 50px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 24px;
  letter-spacing: 2px;
  color: #fff;
}

/* === Navigation Menu Styling (Desktop) === */
#nav-menu {
  display: flex;
  gap: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
}

nav ul li a:hover {
  color: #ff6347;
}

/* === Toggle Button (for Mobile) === */
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* === Responsive Navigation (Mobile) === */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  #nav-menu {
    display: none; /* Hide menu by default on mobile */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #000;
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  #nav-menu.active {
    display: flex; /* Show menu when active */
  }

  #nav-menu ul {
    flex-direction: column;
  }
}

/* === Hero Section === */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: url("/static/images/HeroImage-min.jpg") no-repeat center
    center/cover;
  position: relative;
  height: 100vh;
}

.hero-text {
  max-width: 50%;
  padding: 50px;
  z-index: 2;
  color: #fff;
  text-align: left;
}

.hero-text h2 {
  font-size: 4rem;
  margin-bottom: 10px;
  line-height: 1.1;
  font-weight: bold;
  text-transform: uppercase;
}

.hero-text h2:nth-child(2) {
  color: #ff6347;
}

.hero-text p {
  font-size: 1.2rem;
  margin-top: 20px;
  margin-bottom: 30px;
  color: #ccc;
  max-width: 80%;
}

.hero-text .btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #c45210;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}
.hero-text .btn:hover {
  background-color: #d96b30; /* Adjust hover color */
}

/* === Hero Image Styling === */
.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.8));
  z-index: 1;
}

/* === Login and Signup Form Section === */
#color-black {
  background-color: #111;
  padding: 50px;
  border-radius: 10px;
  width: 400px;
  box-shadow: 0px 0px 15px rgba(255, 99, 71, 0.4);
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-section h2 {
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}

.form-section form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-section input[type="text"],
.form-section input[type="password"] {
  padding: 10px;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.form-section button {
  padding: 10px;
  font-size: 1rem;
  background-color:  #c45210;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
}

.form-section button:hover {
  background-color: #d96b30;
}

.form-section p {
  text-align: center;
  margin-top: 10px;
}

.form-section a {
  color: #ff6347;
  text-decoration: none;
}

.form-section a:hover {
  text-decoration: underline;
}

/* Signup Form Container */
.signup-form {
  max-width: 400px;
  margin: auto;
  background-color: #111;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(255, 99, 71, 0.4);
  text-align: center;
}

/* Form Labels */
.signup-form label {
  display: block;
  color: #fff;
  font-weight: bold;
  margin-bottom: 5px;
  text-align: left; /* Align labels to the left */
}

/* Input Fields */
.signup-form input[type="text"],
.signup-form input[type="password"],
.signup-form input[type="email"] {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #333;
  margin-bottom: 15px;
}

/* Code Input Field */
.signup-form input[name="code"] {
  margin-bottom: 20px; /* Add more space for the employee code field */
}

/* Form Descriptions (Helper Text) */
.signup-form .helptext {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 10px;
  text-align: left;
}

/* Password Requirements List */
.signup-form ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

/* Submit Button */
.signup-form button[type="submit"] {
  display: inline-block;
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  font-weight: bold;
  background-color: #c45210;
  color: #fff;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

.signup-form button[type="submit"]:hover {
  background-color: #d96b30;
}

/* Login Link */
.signup-form p {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #ccc;
}

.signup-form a {
  color: #ff6347;
  text-decoration: none;
}

.signup-form a:hover {
  text-decoration: underline;
}

/* === Booking Form Section === */
.booking-form-section {
  max-width: 600px;
  margin: auto;
  background-color: #111;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(255, 99, 71, 0.4);
  text-align: left;
}

.booking-form-section h2 {
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}

.booking-form-section label {
  color: #ccc;
  margin-top: 10px;
  display: block;
}

.booking-form-section input,
.booking-form-section select {
  padding: 10px;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 100%;
  margin-top: 5px;
}

.booking-form-section .btn {
  margin-top: 20px;
  padding: 10px;
  font-size: 1rem;
  background-color: #c45210;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  width: 100%;
}

.booking-form-section .btn:hover {
  background-color: #d96b30;
}

/* === Manage Bookings Section === */
.manage-bookings-section {
  max-width: 600px;
  margin: auto;
  background-color: #111;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(255, 99, 71, 0.4);
  text-align: left;
}

.manage-bookings-section h2,
.manage-bookings-section h3 {
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}

.manage-bookings-section ul {
  list-style: none;
  padding: 0;
  color: #ccc;
}

.manage-bookings-section ul li {
  padding: 10px 0;
  border-bottom: 1px solid #333;
  color: #ccc;
}

.manage-bookings-section a {
  color: #ff6347;
  text-decoration: none;
}

.manage-bookings-section a:hover {
  text-decoration: underline;
}

.manage-bookings-section button {
  padding: 5px 10px;
  font-size: 0.9rem;
  background-color: #c45210;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
}

.manage-bookings-section button:hover {
  background-color: #d96b30;
}

.manage-bookings-section p {
  color: #ccc;
  text-align: center;
}
/* Make a New Booking Button Styling */
.manage-bookings-section .new-booking-btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #c45210;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  border-radius: 5px;
  margin-top: 20px;
  text-align: center;
}

.manage-bookings-section .new-booking-btn:hover {
  background-color: #d96b30;
}

/* === My Account Section === */
.account-section {
  background-color: #111;
  padding: 50px;
  border-radius: 10px;
  width: 400px;
  margin: auto;
  box-shadow: 0px 0px 15px rgba(255, 99, 71, 0.4);
}

.account-section h2 {
  color: #fff;
  margin-bottom: 20px;
}

.account-section form {
  display: flex;
  flex-direction: column;
}

.account-section button {
  padding: 10px;
  font-size: 1rem;
  background-color: #c45210;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
}

.account-section button:hover {
  background-color: #d96b30
}
/* === Team Section === */
.team-section {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1),
    rgba(255, 255, 255, 1) 20%
  );
  padding: 50px 0;
  text-align: center;
  color: #fff;
}

.team-section h2 {
  font-size: 3rem;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: bold;
}

.team-section p {
  color: #ccc;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
}

.team-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 0 20px;
  flex-wrap: wrap;
}

/* === Team Member Styling === */
.team-member {
  background-color: #111;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  color: #fff;
  width: calc(33.333% - 40px);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.4);
}

.team-member img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 1.5rem;
  color: #ff6347;
  margin-bottom: 5px;
}

/* === About Us Section === */
.about-us {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: url("/static/images/AboutUsImage-min.jpg") no-repeat center
    center/cover;
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.about-text {
  max-width: 50%;
  padding: 50px;
  z-index: 2;
  color: #fff;
  text-align: left;
}

.about-text h2 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  line-height: 1.1;
  font-weight: bold;
  text-transform: uppercase;
}

.about-text p {
  font-size: 1.2rem;
  margin-top: 20px;
  color: #ccc;
  max-width: 90%;
}

/* === Cancel Button Styling === */
.cancel-button {
  background-color: #c45210;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

.cancel-button:hover {
  background-color: #d96b30;
}

/* === Responsive Adjustments for Smaller Screens === */
@media (max-width: 1024px) {
  .hero-text {
    max-width: 80%;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .about-us {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .about-text {
    max-width: 100%;
    text-align: center;
    padding: 20px;
  }

  .about-image {
    width: 100%;
    height: 50vh;
  }

  .team-member {
    width: 100%;
  }
  /* Sign up form */

  .signup-form {
    max-width: 90%;
    padding: 30px;
  }
  .signup-form label {
    font-size: 0.95rem;
  }
  .signup-form .helptext,
  .signup-form ul {
    font-size: 0.85rem;
  }
  .signup-form button[type="submit"] {
    padding: 10px;
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .hero-text h2 {
    font-size: 1.5rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .booking-form-section,
  .manage-bookings-section,
  .account-section,
  #color-black {
    width: 95%;
    padding: 20px;
  }

  .hero-text .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
/* Mobile devices */
@media (max-width: 480px) {
  /* Sign up form */
  .signup-form {
    padding: 20px;
  }
  .signup-form label {
    font-size: 0.9rem;
  }
  .signup-form .helptext,
  .signup-form ul {
    font-size: 0.8rem;
  }
  .signup-form button[type="submit"] {
    padding: 8px;
    font-size: 0.9rem;
  }
}