@import url("https://fonts.googleapis.com/css2?family=Itim&family=Montserrat:wght@300;400;500;600;700&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}

/* Navbar Css */
nav .container img {
  display: block;
  width: 100%;
}
nav {
  position: fixed;
  z-index: 20;
  left: 0;
  right: 0;
  top: 0;
  /* height: 130px; */
  height: 75px;
  background-color: #fff;
  padding: 1% 5%;
}
nav .logo {
  float: left;
  width: 40%;
  height: 100%;
  font-size: 24px;
  color: #fff;
}
nav .logo img {
  width: 200px;
}
nav .links {
  float: right;
  padding: 0;
  margin: 0;
  width: 60%;
  display: flex;
  align-items: Center;
}
nav .links li {
  list-style: none;
}
nav .links a {
  display: block;
  padding: 1em 1.5rem;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  position: relative;
  transition: 0.2s all;
}
nav .links a:hover {
  color: #fff;
  background: #ed1c24;
}

#nav-toggle {
  position: absolute;
  top: -100px;
}
nav .icon-burger {
  display: none;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}
nav .icon-burger .line {
  width: 30px;
  height: 5px;
  background-color: #000;
  margin: 5px;
  border-radius: 3px;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 991px) {
  nav .logo {
    float: none;
    width: auto;
    justify-content: center;
  }
  nav .links {
    float: none;
    position: fixed;
    z-index: 9;
    left: 0;
    right: 0;
    top: 70px;
    bottom: 100%;
    width: auto; /* Changed to auto to allow max-height to work */
    height: auto; /* Changed to auto to allow max-height to work */
    flex-direction: column;
    justify-content: flex-start; /* Align items to the start */
    align-items: flex-start; /* Explicitly align items to the start (left) */
    background-color: #fff; /* Changed from #ff6300 to white */
    overflow-y: auto; /* Added for scrollability */
    transition: all 0.5s ease-in-out;
    border-bottom-left-radius: 10px; /* Added border-radius */
    border-bottom-right-radius: 10px; /* Added border-radius */
  }
  nav .links li {
    width: 100%; /* Ensure list item takes full width for left alignment */
  }
  nav .links a {
    font-size: 16px; /* Slightly smaller font for mobile links */
    color: #333; /* Darker color for readability on white background */
    padding: 12px 20px; /* Decreased padding for more minimalist look */
    text-align: left; /* Aligned text to left */
    width: 100%; /* Ensure link takes full width for left alignment */
  }
  nav .links a:hover {
    color: #ed1c24; /* Keep hover color */
    background: #f8f8f8; /* Light hover background */
  }
  nav .links a.active, /* Added active class styling */
  nav .links a:focus {
    color: #ed1c24; /* Keep active/focus color consistent with hover */
    background: transparent; /* Changed to transparent for minimalist look */
  }
  nav :checked ~ .links {
    bottom: 0;
    background-color: #fff; /* Ensure it's white when open */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Adjusted shadow for minimalist look */
    padding: 15px 20px; /* Added horizontal padding for consistent spacing */
    max-height: 70vh; /* Reduced max-height for a smaller dropdown */
    height: auto; /* Ensure height adjusts to content within max-height */
    border-bottom-left-radius: 10px; /* Consistent border-radius */
    border-bottom-right-radius: 10px; /* Consistent border-radius */
    left: 20px; /* Added left/right positioning to center */
    right: 20px; /* Added left/right positioning to center */
    width: calc(100% - 40px); /* Adjusted width */
  }
  nav .icon-burger {
    display: none !important; /* Hide burger icon in mobile view */
  }
  nav :checked ~ .icon-burger .line:nth-child(1) {
    transform: translateY(10px) rotate(225deg);
  }
  nav :checked ~ .icon-burger .line:nth-child(3) {
    transform: translateY(-10px) rotate(-225deg);
  }
  nav :checked ~ .icon-burger .line:nth-child(2) {
    opacity: 0;
  }

  /* Mobile styles for header-right-buttons */
  nav .header-right-buttons {
    display: none; /* Hide by default on mobile */
  }

  nav :checked ~ .header-right-buttons {
    display: block; /* Show when menu is open */
    position: absolute;
    bottom: 20px; /* Position at the bottom of the open menu */
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    padding: 0 20px; /* Added horizontal padding to align with menu items */
    margin-top: 20px; /* Added top margin for spacing from links */
  }

  nav :checked ~ .header-right-buttons .manage-booking-btn {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    border-radius: 8px;
  }
}
/* Navbar Css */

/* Contact Css */
#contact {
  border-top: 4px solid #ed1c24;
}
#contact .container-fluid .row {
  padding-top: 1rem;
  width: 90%;
  margin: auto;
}
#contact .container-fluid .row .col-4 .compLogo img {
  width: 220px;
}
#contact .container-fluid .row .col-4 .desc p {
  padding-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.8rem;
}
#contact .container-fluid .row .col-4 .title h1 {
  font-family: "Itim", cursive;
  font-weight: 600;
}

#contact .container-fluid .row .col-4 .title h2 {
  font-family: "Itim", cursive;
  font-weight: 500;
  font-size: 1.5rem;
  text-transform: uppercase;
}

#contact .container-fluid .row .col-4 .form-control,
#contact .container-fluid .row .col-4 .form-select {
  border: 1px solid rgb(189, 187, 187);
  border-radius: 0;
  margin: 0.6rem 0;
}
#contact .container-fluid .row .col-4 .form-control:focus-visible,
#contact .container-fluid .row .col-4 .form-select:focus-visible {
  box-shadow: none;
  border: 1px solid #000;
}
#contact .container-fluid .row .col-12 .submitBtn {
  border: none;
  width: 100%;
  background: #ed1c24;
  color: #fff;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
/* Contact Css */


/* Footer Css */
footer {
  background: rgb(235, 237, 240);
  margin-top: 2rem;
  padding: 1rem 0;
}
footer a {
  text-decoration: none;
  color: #888;
  padding: 0 1rem;
}
footer a:hover {
  color: #ed1c24;
}
footer .content {
  text-align: center;
}
footer .copyright p {
  margin-bottom: 0;
  padding-top: 0.5rem;
  text-align: center;
}
/* Footer Css */