:root {
  --primary-color: #d10000;
  --secondary-color: #000;
  --text-color: #fff;
  --bg-color: #fff;
  --highlight-color: #f8f8f8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-image: url('./bgg.jpg'); /* Replace with your image path */
  background-size: cover;        /* Makes the image cover the entire area */
  background-repeat: no-repeat;  /* Prevents repeating */
  background-position: center;   /* Centers the image */
  background-attachment: fixed;  /* Keeps the image fixed when scrolling */
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;


   
  background-color: var(--bg-color);
  color: var(--secondary-color);
}

.header {
  background-color: var(--secondary-color);
  padding: 2rem;
  text-align: center;
}

.logo {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.tagline {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-top: 0.5rem;
}

.main-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem 1rem;
  min-height: 70vh;
}

.search-container {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.search-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

#flightSearch {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border: 2px solid var(--primary-color);
  border-radius: 5px;
}

.suggestions-list {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  background: #fff;
  border: 1px solid var(--primary-color);
  border-top: none;
  list-style: none;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  text-align: left;
}

.suggestions-list li {
  padding: 0.75rem 1rem;
  cursor: pointer;
}

.suggestions-list li:hover {
  background-color: var(--highlight-color);
}

.note {
  margin-top: 1.5rem;
  color: white;
  font-size: 0.95rem;
  line-height: 1.5;
}
.select-btn {
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  color: white;
  background-color: var(--primary-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.select-btn:hover {
  background-color: #b30000;
}
.location-input {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  background-color: #fff;
  color: var(--secondary-color);
}

.search-button {
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  background-color: var(--primary-color);
  color: var(--text-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.search-button:hover {
  background-color: #a80000;
}

