* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Futura", sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #fff;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 15px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 12, 41, 0.9);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  backdrop-filter: blur(10px);
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container a {
  text-decoration: none;
}

.logo {
  font-size: 32px;
  font-style: italic;
  color: #fffff0;
  font-weight: 400;
  margin-right: 10px;
}

.companyLogo {
  width: 92px;
  height: 73px;
  margin-right: 10px;
}
nav {
  display: flex;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  margin-left: 35px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #fffff0;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #fffff0;
}

nav a:hover::after {
  width: 100%;
}
.main {
  max-width: 800px;
  margin: 120px auto;
  background: rgba(15, 12, 41, 0.95);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  color: #fff;
}

h1 {
  text-align: center;
  color: #fffff0;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

form {
  margin-bottom: 20px;
}

label {
  display: block;
  margin: 12px 0 6px;
  font-weight: 500;
  color: #fffff0;
}

input,
button {
  width: 98%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
select {
  width: 98%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

select {
  background-color: #fff;
}

button {
  width: 98%;
  background-color: #d7ccc8;
  color: #222;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
}

button:hover {
  background-color: #a1887f;
  transform: scale(1.02);
}

.itinerary-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.itinerary-day {
  background: #fafafa;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.itinerary-day h4 {
  margin: 0 0 10px;
  color: #444;
  font-size: 20px;
}

.activity {
  margin: 5px 0;
  padding: 12px;
  background: #eef;
  color: rgba(15, 12, 41, 0.9);
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
}

@media (max-width: 768px) {
  header {
    padding: 15px 30px;
    flex-direction: column;
    align-items: center;
  }

  .logo {
    font-size: 24px;
  }

  .companyLogo {
    width: 35px;
    height: 35px;
  }

  .main {
    width: 90%;
    margin: 100px auto;
    padding: 20px;
  }

  button {
    font-size: 14px;
    padding: 10px;
  }
}
