/* --------------------- GENERAL --------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f4f4f4;
  color: #333;
}

/* --------------------- HEADER / NAVBAR --------------------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #003366; /* Navy blue like Emirates */
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  font-size: 24px;
  font-weight: bold;
}

header nav a {
  color: white;
  text-decoration: none;
  margin-left: 30px;
  font-weight: 500;
  transition: color 0.3s;
}

header nav a:hover {
  color: gold;
}

/* --------------------- HERO SECTION --------------------- */
.hero {
  background: url('../images/trv3.jpg') center/cover no-repeat; /* add your hero image */
  height: 70vh;
  display: flex;
  align-items: right;
  justify-content: right;
  text-align: center;
  color: white;
  padding: 0 20px;
  padding-top: 10%;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.hero-content a {
  display: inline-block;
  padding: 15px 30px;
  margin: 5px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.hero-content a:first-child {
  background-color: gold;
  color: #003366;
}

.hero-content a:first-child:hover {
  background-color: #ffd700cc;
}

.hero-content a:last-child {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.hero-content a:last-child:hover {
  background-color: white;
  color: #003366;
}

/* --------------------- BOOKING FORM --------------------- */
.booking {
  background-color: white;
  padding: 50px 20px;
  text-align: center;
}

.booking h2 {
  margin-bottom: 30px;
  font-size: 32px;
  color: #003366;
}

.booking form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.booking input, 
.booking select, 
.booking button {
  padding: 12px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.booking input:focus,
.booking select:focus {
  outline: none;
  border-color: #003366;
}

.booking button {
  background-color: #003366;
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.booking button:hover {
  background-color: #0056b3;
}

/* --------------------- FEATURES --------------------- */
.features {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 50px 20px;
  flex-wrap: wrap;
}

.features .card {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  width: 250px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.features .card:hover {
  transform: translateY(-10px);
}

.features .card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #003366;
}

.features .card p {
  font-size: 16px;
  color: #555;
}

/* --------------------- FOOTER --------------------- */
footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 20px;
}

/* --------------------- RESPONSIVE --------------------- */
@media (max-width: 768px) {
  header {
    flex-direction: row;
    text-align: center;
    gap: 15px;
  }

  .hero-content h1 {
    font-size: 25px;
  }

  .hero-content p {
    font-size: 95%;
  }

  .booking form {
    flex-direction: column;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }
}
