/* Header Nav */
.airline-header .navbar-nav .nav-link {
  font-weight: 500;
  color: #0e4d92;
  transition: all 0.3s ease;
}

.airline-header .navbar-nav .nav-link:hover,
.airline-header .navbar-nav .nav-link.active {
  color: #00bfa6;
}

.airline-header .navbar-nav .btn {
  border-radius: 20px;
  transition: background 0.3s ease;
}

.airline-header .navbar-brand span {
  font-family: "Poppins", sans-serif;
}
/* Hero Section */
.hero {
  background: linear-gradient(to right, #1c1b4d4f, #00bfa6), url(img/airbg.webp);
  background-size: cover;
  background-position: center;
  padding: 120px 20px 100px;
  /* padding: 100px 0 80px; */
  color: #fff;
}

.hero .badge {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero .badge i {
  margin-right: 8px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero .lead {
  font-size: 1.125rem;
  opacity: 0.95;
  line-height: 1.7;
}

.hero .btn {
  font-size: 1rem;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease-in-out;
}

.hero .btn:hover {
  transform: scale(1.05);
}

.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Call to Action Strip */
.bg-warning {
  background-color: #ffc107 !important;
}

section.bg-warning .btn-dark {
  background-color: #000;
  border: none;
  transition: 0.3s ease-in-out;
}

section.bg-warning .btn-dark:hover {
  background-color: #1c1c1c;
  color: #ffc107;
}

/* Top Deals Section */
section.bg-light {
  background-color: #f9f9f9 !important;
}

.top-deals-card {
  transition: all 0.3s ease-in-out;
  border: 1px solid #e0e0e0;
}

.top-deals-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.top-deals-card .btn {
  transition: background 0.3s;
}

.top-deals-card .btn:hover {
  background-color: #0e4d92;
  color: #fff;
}

/* CTA Button */
.btn-primary.rounded-pill {
  background: linear-gradient(to right, #00bfa6, #0e4d92);
  border: none;
  font-weight: bold;
  transition: 0.3s ease-in-out;
}

.btn-primary.rounded-pill:hover {
  background: linear-gradient(to right, #0e4d92, #00bfa6);
}
/* General Section Styling */
.discount-destination-bg {
  background-color: #f8f9fa;
  border-radius: 12px;
}

/* Hero Card Styling */
.destination-hero-card {
  height: 100%;
  min-height: 450px;
}

.destination-hero-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-hero-card:hover img {
  transform: scale(1.05);
}

.hero-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
  transition: all 0.3s ease;
}

/* Destination Card Styling */
.destination-card {
  height: 280px;
}

.destination-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.destination-card:hover img {
  transform: scale(1.05);
}

.destination-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
}

.destination-card:hover .destination-overlay {
  opacity: 1;
}

.destination-overlay .p-3 {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  animation: slideUp 0.4s ease forwards;
  transform: translateY(100%);
}

.destination-card:hover .destination-overlay .p-3 {
  transform: translateY(0);
}

@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}

/* Utility Buttons */
.destination-overlay .btn {
  font-size: 0.8rem;
  padding: 4px 12px;
  margin-top: 6px;
}

/* Responsive */
@media (max-width: 767px) {
  .destination-card {
    height: auto;
  }

  .destination-overlay {
    opacity: 1;
    position: relative;
    height: auto;
  }

  .destination-overlay .p-3 {
    transform: translateY(0);
  }
}
/*Cabin Class Highlights Section*/
.class-card {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.class-card:hover {
  transform: translateY(-5px);
}

.class-hover-content {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.class-card:hover .class-hover-content {
  opacity: 1;
  visibility: visible;
}
/* Destination Inspiration Section */
.story-tile {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.story-tile img {
  transition: transform 0.5s ease;
}

.story-tile:hover img {
  transform: scale(1.05);
}
/* About Us */
body {
  font-family: "Poppins", sans-serif;
}

.about-hero {
  background: linear-gradient(to right, #041c32, #00bfa6);
  color: white;
  padding: 80px 0;
}

.highlight-box {
  border-left: 5px solid #00bfa6;
  padding-left: 1rem;
}

.core-values .icon {
  font-size: 2rem;
  color: #00bfa6;
}

.bg-light-blue {
  background: #e6f7fa;
}
