nav {
    background-color: #000000;
    padding: 15px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  nav ul li {
    display: inline;
    margin-right: 10px;
  }
  
  #iso {
    color: white;
  }

  nav a {
    text-decoration: none;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin-right: 15px;
  }

  #search-container {
    display: flex;
    align-items: center;
    background-color: #fff;
    color: #209999;
    border-radius: 20px;
    padding: 5px 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    width: 500px;
  }

  #search-container ul {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: space-between;
  }

  #search-container ul li {
    margin:  5px;
  }

  #search-buttons {
    display: flex;
    align-items: center;
  }

  #search-container input[type="text"] {
    border: none;
    outline: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 20px;
    width: 300px;
  }

  #conditionInput::placeholder {
    color: #209999; /* Replace with your desired color */
    opacity: .6; /* Ensure full visibility (some browsers reduce opacity by default) */
  }

  #search-container button {
    background-color: #209999;
    color: white;
    border: none;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 10px;
  }

.social-media-container {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background-color: transparent;
    padding: 10px;
}

.social-media-container a img {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
    filter: invert(100%); /* Make icons white */
}

.twitter-icon-container {
    position: absolute;
    top: 60%;
    left: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.twitter-icon-container .vertical-line {
    width: 2px;
    height: 250px;
    background-color: white;
    margin-bottom: 70px;
    margin-left: auto;
    margin-right: auto;
}

.twitter-icon-container a img {
    width: 30px;
    height: 3ch;
    margin-bottom: 30px;
}

.main-title-container {
  font-family: Arial, sans-serif;
  font-size: 4em;
  font-weight: bold;
  color: white;
  position: absolute;
  top: 45%;
  left: 200px;
  transform: translateY(-50%);
}

.book-now-button {
  background-color: #209999;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  position: absolute;
  top: 80%;
  left: 200px;
  transform: translateY(-50%);
  border-radius: 8px; 
}

body {
  margin: 0;
}

.marketing-container {
  font-family: Arial, sans-serif;
  font-size: 1.1em;
  color: white;
  position: absolute;
  top: 65%;
  left: 200px;
  transform: translateY(-50%);
}

#company-logo {
    height: 50px;
    margin-right: 15px;
}

.about-us-container {
  font-family: Arial, sans-serif;
  font-size: 4em;
  font-weight: bold;
  color: white;
  position: absolute;
  top: 20%;
  left: 200px;
  transform: translateY(-50%);
}

.welcome-container {
  font-family: Arial, sans-serif;
  font-size: 1.1em;
  color: white;
  position: absolute;
  top: 40%;
  left: 220px;
  transform: translateY(-50%);
}

.team-container {
  font-family: Arial, sans-serif;
  font-size: 1.1em;
  color: white;
  position: absolute;
  top: 80%;
  left: 300px;
  transform: translateY(-50%);
  display: flex;
}

.team-header {
  font-family: Arial, sans-serif;
  font-size: 2.5em;
  font-weight: bold;
  color: white;
  transform: translateY(-30%);
  margin-right: 100px;
  
}
.team-member {
  margin-bottom: 20px;
  margin-left: 10px;
  margin-right: 90px;
}
.team-member .name {
  margin: 0;
  font-size: .75em;
  font-weight: bold;
}

.team-member p {
  margin: 5px 0;
}

.team-member .role {
  font-size: 0.60em;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.7);
  
}

.team-member button {
  background-color: #243ddb;
  font-size: 0.70em;
  color: white;
  border: 1px solid rgb(169, 168, 168);
  border-radius: 5px;
  padding: 5px 10px;
  cursor: pointer;
}

.contact-us-container {
  font-family: Arial, sans-serif;
  font-size: 4em;
  font-weight: bold;
  color: white;
  position: absolute;
  top: 60%;
  left: 200px;
  transform: translateY(-50%);
}

.get-in-touch-container {
  font-family: Arial, sans-serif;
  font-size: .75em;
  font-weight: normal;
  color: white;
  position: absolute;
  top: 70%;
  left: 200px;
  transform: translateY(-50%);
}

.contact-form-container {
  font-family: Arial, sans-serif;
  width: 600px;
  font-size: .75em;
  font-weight: normal;
  color: white;
  position: absolute;
  top: 55%;
  right: 20px;
  transform: translateY(-50%);
}

.contact-form-container form {
  display: flex;
  flex-direction: column;
}

.contact-form-container form input {
  background-color: transparent;
  border: 1px solid white;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.contact-form-container form textarea {
  background-color: transparent;
  border: 1px solid white;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.contact-form-container form button {
  background-color: #209999;
  color: white;
  border: none;
  border-radius: 5px;
}

.search-results-container {
  font-family: Arial, sans-serif;
  width: 600px;
  height: 750px;
  font-size: .75em;
  font-weight: normal;
  color: white;
  position: absolute;
  top: 150px;  /* Position it below the nav bar */
  right: 50px;  /* Position it to the far right */
  transform: none;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 8px;
  /* visibility: hidden; */
  overflow-y: auto; /* Makes the container scrollable vertically */
}

.search-results-container .result-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.3);
}

.result-card {
  display: flex;
  background-color: white;
  border-radius: 15px;
  flex-direction: column;
  align-items: left;
  margin-bottom: 20px;
}

.result-name {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 2em;
  font-weight: bold;
  margin-left: 10PX;
  color: blue
}

.result-description {
  font-family: 'Arial', sans-serif;
  font-size: 1.2em;
  margin-left: 10PX;
  color: blue;
}

.visit-button {
  background-color: #209999;
  width: 100px;
  color: white;
  border: none;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  margin-left: 10px;
  margin-bottom: 10px;
}
