/* General Reset & Body */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #001f3f, #003f5c);
  color: #f0f0f0;
  padding: 2rem;
  overflow-x: hidden;
}

/* Cursor Bubble */
#cursor-bubble {
  width: 20px;
  height: 20px;
  background: rgba(0, 123, 255, 0.4);
  border-radius: 50%;
  position: absolute;
  pointer-events: none;
  transition: transform 0.1s ease;
}

/* Glass UI Elements */
.glass-card,
.glass-float,
.glass-footer {
  background: rgba(0, 0, 40, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 1rem 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Sticky Navigation */
.glass-float {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 60, 0.6);
}

/* Navigation */
.floating-nav h1 {
  font-size: 1.75rem;
  font-weight: bold;
  color: #00b4d8;
}

.floating-nav nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #90e0ef;
  font-weight: 600;
  transition: color 0.3s;
}

.floating-nav nav a:hover {
  color: #caf0f8;
}

/* Section Styling */
.section {
  margin-top: 2rem;
}

/* Buttons */
button {
  background-color: #0077b6;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #023e8a;
}

/* Form Fields */
form input {
  display: block;
  margin: 0.5rem 0;
  padding: 0.5rem;
  width: 100%;
  background-color: #1a1a2e;
  color: #f0f0f0;
  border: 1px solid #444;
  border-radius: 0.5rem;
  font-size: 1rem;
}

form input::placeholder {
  color: #bbb;
}

#extra-fields input {
  margin-top: 0.5rem;
}

/* Jet Entry Card */
.jet-entry {
  background: rgba(10, 25, 47, 0.85);
  border-left: 5px solid #00b4d8;
  transition: transform 0.2s;
  color: #f0f0f0;
}

.jet-entry:hover {
  transform: translateY(-4px);
}

/* Footer */
footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #aaa;
}
/* Modal Popup Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1; /* Higher than other elements */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 40, 0.8); /* Dark translucent background */
}

.modal-content {
  background: rgba(0, 0, 40, 0.85); /* Glass effect with dark blue */
  backdrop-filter: blur(10px);
  margin: 10% auto;
  padding: 2rem;
  border-radius: 1.5rem;
  width: 80%;
  max-width: 500px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  color: #f0f0f0;
  font-size: 1rem;
  text-align: center;
}

.close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 0;
  right: 10px;
  transition: color 0.3s ease;
}

.close:hover,
.close:focus {
  color: #00b4d8; /* Blue hover color */
  cursor: pointer;
}

/* Modal Form Styling */
.modal input {
  display: block;
  margin: 0.5rem 0;
  padding: 0.5rem;
  width: 100%;
  background-color: #1a1a2e;
  color: #f0f0f0;
  border: 1px solid #444;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.modal input::placeholder {
  color: #bbb;
}

.modal button {
  background-color: #0077b6;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.modal button:hover {
  background-color: #023e8a;
}

#extra-fields input {
  margin-top: 0.5rem;
}
