/* ================= GLOBAL ================= */

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


/* ================= TOP BAR ================= */

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 80px;
    background: #163d69;
    color: #fff;
    font-size: 14px;
}

.top-left span {
    margin-right: 20px;
}

.top-right a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
}

/* ================= HEADER ================= */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 80px;
    min-height: 100px;
    background: rgba(255,255,255,0.25);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.3);
  z-index: 1000;
    
}

/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    z-index: 1000;
}

.logo img {
    width: 80px;
    
}

/* Desktop Nav */

.nav {
    padding: 15px 40px;
    border-radius: 50px;

  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.3);
  z-index: 1000;
  
  
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    color: #fff;
}

.nav li {
    cursor: pointer;
    font-weight: 500;
}

/* Right */

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search {
    color: #fff;
    cursor: pointer;
}

.discover-btn {
    background: #ff5a2c;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

/* ================= HAMBURGER ================= */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
}

/* ================= MOBILE MENU ================= */

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: #fff;
    transform: translateX(100%);
    transition: 0.4s ease;
    z-index: 1000;
    padding: 30px;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    background: #1e6bd6;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}

.mobile-menu h2 {
    margin-top: 40px;
    font-size: 28px;
}

.mobile-menu p {
    margin: 15px 0 30px;
    color: #555;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    color: #333;
}

/* Overlay */

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ================= RESPONSIVE ================= */
/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .top-bar {
    padding: 8px 20px;
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .header {
    padding: 20px;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

}




/* ================= SLIDER SECTION ================= */

/* FULL SCREEN SLIDER */
.section-header h2{
    justify-content: center;
    align-items: center;
}

.hero-slider {
  width: 100%;
  height: 100vh; /* full screen */
  position: relative;
  margin-top: -100px;
  z-index: -100;
  
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay for readability */
.swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6), transparent);
}

.slide-content {
  position: absolute;
  bottom: 80px;
  left: 80px;
  color: #fff;
  z-index: 2;
}

.slide-content h2 {
  font-size: 50px;
  margin-bottom: 10px;
}

.slide-content p {
  font-size: 20px;
}

/* Style arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #ff5a2c;
}

/* Pagination bullets */
.swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-bullet-active {
  background: #ff5a2c;
}

/* Responsive */
@media (max-width: 992px) {
  .slide-content {
    left: 30px;
    bottom: 40px;
  }

  .slide-content h2 {
    font-size: 30px;
  }
}

/*************** destination */

.why-travel {
  padding: 100px 80px;
  background: #f5f7fa;
  background-image:    url(/shape-2.png);
    background-size:     contain;                      
    background-repeat:   no-repeat;
    background-position: top rightse; 
}

.oval-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 60px;
}

.oval-card {
  width: 270px;
  height: 420px; /* SAME HEIGHT AS FEATURED */
  border-radius: 200px;
  background: #ffffff;
  overflow: hidden;
  text-align: center;
  position: relative;
    background-image:    url(/card-bg.webp);
    background-size:     cover;                      
    background-repeat:   no-repeat;
    background-position: center center; 
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.oval-card:hover {
  transform: translateY(-10px);
}

.oval-top {
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oval-icon {
  width: 100px;
  height: 100px;
  background: #ff5a2c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}

.oval-bottom {
  height: 40%;
  background: #f3f4f6;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  padding: 30px 25px;
}

.oval-bottom h4 {
  margin-bottom: 10px;
  font-weight: 600;
}

.oval-bottom p {
  font-size: 14px;
  color: #666;
}

@media (max-width: 992px) {
  .oval-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* image full */
/* ================= SPLIT FULL SCREEN IMAGES ================= */

/* ================= SPLIT ADAPTIVE IMAGES ================= */

.split-images {
  width: 100%;
  display: flex;
}

.split-item {
  flex: 1;
  overflow: hidden;
}

.split-item img {
  width: 100%;
  height: auto;   /* Let image control height */
  display: block;
  object-fit: cover;
}

/* Mobile */
@media (max-width: 992px) {
  .split-images {
    flex-direction: column;
  }
}


/* FOOTER */
/* ================= FOOTER ================= */

.main-footer {
  background: #0e1b2c;
  color: #ffffff;
  padding-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 80px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.footer-logo {
  font-size: 26px;
  margin-bottom: 15px;
}

.footer-col p {
  color: #b0b8c4;
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #b0b8c4;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ff5a2c;
}

.footer-socials {
  margin-top: 20px;
}

.footer-socials a {
  display: inline-block;
  margin-right: 12px;
  color: #ffffff;
  font-size: 16px;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #ff5a2c;
}

/* Newsletter */

.footer-form {
  display: flex;
  margin-top: 15px;
}

.footer-form input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 5px 0 0 5px;
}

.footer-form button {
  padding: 10px 18px;
  border: none;
  background: #ff5a2c;
  color: #fff;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
}

/* Bottom */

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  color: #b0b8c4;
}

/* Responsive */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px 40px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}