/* ================= HERO ================= */
@font-face {
    font-family: "SF Pro Text Regular";
    src: url("https://db.onlinewebfonts.com/t/1c45e28f8e86cc89876f003b953cc3e9.eot");
    src: url("https://db.onlinewebfonts.com/t/1c45e28f8e86cc89876f003b953cc3e9.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/1c45e28f8e86cc89876f003b953cc3e9.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/1c45e28f8e86cc89876f003b953cc3e9.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/1c45e28f8e86cc89876f003b953cc3e9.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/1c45e28f8e86cc89876f003b953cc3e9.svg#SF Pro Text Regular")format("svg");
}
        .body {
          
             font-family: "SF Pro Text Regular!important";
        }
        .hero-section {
            position: relative;
            height: 50vh;
            padding-top: 0px;
            /* overflow: hidden; */
            color: #fff;
        }

        .hero-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background: url('../img/Flight.png') center/cover no-repeat;
            animation: heroZoom 18s ease-in-out infinite alternate;
            z-index: 1;
        }

        .hero-section::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.45);
            z-index: 1;
        }

        .hero-section .container {
            position: relative;
            z-index: 2;
        }

        @keyframes heroZoom {
            from { transform: scale(1); }
            to { transform: scale(1.15); }
        }

       
        /* ================= NAVBAR ================= */

/* Container for input + icon */
.input-icon {
    position: relative;
}

/* Icon inside input */
.input-icon i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #888;
    pointer-events: none; /* icon won’t block typing */
}

/* Input padding so text doesn't overlap icon */
.input-icon input {
    padding-left: 38px;
    height: 44px;
    width: 100%;
    box-sizing: border-box;
}




   /* ================= NAVBAR ================= */




/* ===== Slider ===== */
.hotel-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.hotel-slider::-webkit-scrollbar {
    display: none;
}

/* ===== Card ===== */
.hotel-card {
    min-width: 320px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform .3s ease;
}

.hotel-card:hover {
    transform: translateY(-6px);
}

.hotel-img {
    position: relative;
}

.hotel-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.wishlist {
       position: absolute;
    top: 5px;
    right: 7px;
    width: 28px;
    height: 25px;
    border-radius: 20%;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist.active i {
    color: red;
}

/* ===== Icons ===== */
.hotel-icons {
    display: flex;
    gap: 34px;
    font-size: 13px;
    color: #666;
}
/* ===== Skeleton Loader ===== */
.hotel-skeleton {
    min-width: 320px;
    height: 360px;
    border-radius: 14px;
    background: linear-gradient(
        90deg,
        #eee 25%,
        #f5f5f5 37%,
        #eee 63%
    );
    background-size: 400% 100%;
    animation: skeleton 1.4s infinite;
}

@keyframes skeleton {
    0% { background-position: 100% 0; }
    100% { background-position: 0 0; }
}

/* ====================================================== */








/* Image Card Base */
.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Card lift on hover */
.image-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Image zoom on hover */
.image-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

/* Overlay text style */
.image-card span {
    position: absolute;
    bottom: 10px;
    left: 14%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.3s ease;
}

/* Text move on hover */
.image-card:hover span {
    transform: translateX(-50%) translateY(-5px);
    background: rgba(0,0,0,0.7);
}
.image-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-card:hover::before {
    opacity: 1;
}

        /* ================= CARDS ================= */
        .destination-card img {
            height: 200px;
            object-fit: cover;
        }

        .image-card {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
        }

        .image-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .image-card.large img {
            height: 520px;
        }

        /* .image-card span {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background: rgba(0,0,0,0.6);
            color: #fff;
            padding: 6px 12px;
            border-radius: 6px;
        } */
        /* ================= ICONS ================= */
        .icon {
            font-size: 40px;
            color: #0d6efd;
            margin-bottom: 10px;
        }
        /* ================= FOOTER ================= */
        .footer {
            font-size: 14px;
            background-color: #fafafa;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
        }
        .footer-links a:hover {
            color: #000000;
        }
        .social-icons a {
            color: #000000;
            margin-right: 12px;
            font-size: 18px;
        }
        .social-icons a:hover {
            color: #111111;
        }
.payment-icon {
    margin: 0px 0px 0px 16px;
    background: #ffffff;
    padding: 7px 7px;
    border-radius: 0px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.payment-icon i {
    font-size: 23px;
    color: #444;
}
.payment-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
}

.radio-circle {
  width: 22px;
  height: 22px;
  border: 2px solid #cfcfcf;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.radio-circle::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #2f6fdb;
  border-radius: 50%;
  display: none;
  position: absolute;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-right: 15px;
}
