/* ---------- GENERAL ---------- */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to bottom right, #ff7b00, #ffb703, #ffe9a0);
  overflow-x: hidden;
}

/* ---------- HEADER ---------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.95);
  padding: 15px 50px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.15);
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: bold;
  color: #b51700;
}

.logo img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
}

nav ul li a {
  text-decoration: none;
  color: #b51700;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #ff4d00;
}

/* ---------- HERO SECTION ---------- */
.hero {
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #001f3f 0%, #ffffff 100%);
}

/* ✅ Hero Layout for Image + Text Side by Side */
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-text {
  flex: 1 1 500px;
  text-align: left;
  color: white;
  padding-left: 30px;
}

.hero h1 {
  font-size: 45px;
  color: #ffe9a0;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
  margin-bottom: 10px;
  animation: fadeIn 2s ease;
}

.hero p {
  font-size: 20px;
  color: #fff;
  margin-bottom: 25px;
  animation: fadeIn 3s ease;
}

/* ✈️ Updated Welcome Message Style */
.hero .welcome-msg {
  font-style: Orbitron;
  font-weight: 600;
  color: #FFC300;
  margin-bottom: 35px;
  font-size: 42px;
  letter-spacing: 0.5px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  animation: fadeInWelcome 3s ease-in-out;
}

/* 👇 Animation for Welcome Message */
@keyframes fadeInWelcome {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  animation: fadeIn 3.5s ease;
}

.buttons {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  animation: fadeIn 3.5s ease;
}

.btn {
  background-color: #b51700;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn:hover {
  background-color: #ff4d00;
  transform: scale(1.05);
}

.btn.secondary {
  background-color: white;
  color: #b51700;
  border: 2px solid #b51700;
}

.btn.secondary:hover {
  background-color: #ffe9a0;
}

/* ---------- AIRPLANE ANIMATION ---------- */
.airplane {
  width: 180px;
  height: 180px;
  background-image: url('C:\Users\maury\OneDrive\Desktop\Air4All\Hailuo_Image_create an passenger aircraft png');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 50px;
  left: -220px;
  z-index: 5;
  animation: fly 10s linear infinite;
  opacity: 0.9;
}

@keyframes fly {
  0% {
    transform: translateX(-220px) translateY(30px) rotate(8deg);
    opacity: 0.7;
  }
  25% {
    transform: translateX(30vw) translateY(-40px) rotate(-5deg);
    opacity: 1;
  }
  50% {
    transform: translateX(60vw) translateY(-80px) rotate(3deg);
    opacity: 1;
  }
  75% {
    transform: translateX(85vw) translateY(0px) rotate(-3deg);
    opacity: 0.9;
  }
  100% {
    transform: translateX(110vw) translateY(20px) rotate(6deg);
    opacity: 0.7;
  }
}

/* ---------- DESTINATIONS SECTION ---------- */
.destinations {
  text-align: center;
  padding: 80px 20px;
  background: #fffdf5;
}

.destinations h2 {
  font-size: 38px;
  color: #b51700;
  margin-bottom: 10px;
}

.dest-text {
  color: #4a2c00;
  margin-bottom: 40px;
  font-size: 18px;
}

.dest-scroll {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
}

.dest-scroll::-webkit-scrollbar {
  height: 10px;
}

.dest-scroll::-webkit-scrollbar-thumb {
  background: #ffb703;
  border-radius: 10px;
}

.dest-card {
  flex: 0 0 280px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
  padding-bottom: 20px;
}

.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.dest-card img {
  width: 100%;
  height: 180px;
  border-radius: 20px 20px 0 0;
  object-fit: cover;
}

.dest-card h3 {
  color: #b51700;
  margin: 15px 0 5px;
}

.dest-card p {
  color: #4a2c00;
  font-size: 15px;
  padding: 0 15px;
  margin-bottom: 15px;
}

.book-btn {
  display: inline-block;
  background: #b51700;
  color: #fff;
  padding: 8px 15px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.book-btn:hover {
  background: #ff4d00;
  transform: scale(1.05);
}

/* ---------- ABOUT SECTION ---------- */
.about {
  padding: 60px 20px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  color: #4a2c00;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.about h2 {
  font-size: 32px;
  color: #7a1200;
  margin-bottom: 10px;
}

.about p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.feature {
  background: rgba(255,255,255,0.9);
  padding: 18px;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-align: left;
}

.feature h3 {
  margin-top: 0;
  color: #b51700;
  font-size: 18px;
}

/* ---------- FOOTER ---------- */
footer {
  text-align: center;
  background: #b51700;
  color: white;
  padding: 15px 0;
  font-size: 14px;
  margin-top: 50px;
}

/* ---------- ADMIN LOGIN BUTTON ---------- */
nav ul li .admin-btn {
  background: #fff;
  color: #b51700;
  padding: 6px 10px;
  border-radius: 8px;
  border: 2px solid #b51700;
  text-decoration: none;
  font-weight: 700;
}

nav ul li .admin-btn:hover {
  background: #b51700;
  color: #fff;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 700px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-text {
    text-align: center;
    padding-left: 0;
  }
  .hero-image img {
    max-width: 300px;
  }
  .hero h1 { font-size: 32px; padding: 0 10px; }
  header { padding: 12px 20px; }
  .features { flex-direction: column; gap: 14px; align-items: center; }
  .feature { width: 100%; max-width: 420px; }
}

/* ✈️ Testimonials Section */
.testimonials {
  background: linear-gradient(180deg, #f9fafb, #e9eef3);
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  color: #0d355f;
  margin-bottom: 40px;
  font-weight: 700;
}

.testimonial-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  max-width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial h3 {
  color: #0d355f;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.stars {
  color: #f4b400;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.testimonial p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.4;
}













/* Reset default browser margins */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}







/* ===== FINAL AIRCRAFT BANNER DESIGN ===== */
.airplane-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, #ffcc00, #ff9900); /* gold-yellow theme */
  padding: 80px 0;
  width: 100%;
  overflow: hidden;
}

/* Heading style */
.airplane-banner h2 {
  color: #d60000; /* bright airline red */
  font-size: 3rem;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
  text-transform: none;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.25);
  margin-bottom: 40px;
  animation: fadeDown 1s ease-in-out;
}

/* Image styling */
.airplane-banner img {
  width: 100%;           /* makes it full width */
  max-width: 1600px;     /* keeps it sharp on large screens */
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  animation: fadeUp 1.3s ease-in-out;
  transition: transform 0.5s ease;
}

/* Hover zoom */
.airplane-banner img:hover {
  transform: scale(1.02);
}

/* Animations */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}







