﻿body {
}

/* =========================
   PACKAGES HERO / BREADCRUMB
========================= */

.packages-hero {
    position: relative;
    width: 100%;
    height: 380px;
    background: url("/images/breadcrumb/packages-hero.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .packages-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to right, rgba(0,0,0,0.75), rgba(0,0,0,0.45) );
    }

.packages-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

    .packages-hero-content h1 {
        font-size: 48px;
        font-weight: 700;
        color: #ffffff;
        padding: 14px 40px;
        background: rgba(0, 0, 0, 0.55);
        border-radius: 6px;
        letter-spacing: 1px;
    }

/* Responsive */
@media (max-width: 768px) {
    .packages-hero {
        height: 260px;
    }

    .packages-hero-content h1 {
        font-size: 32px;
        padding: 10px 24px;
    }
}

/* =========================
   CENTER PACKAGE IMAGE
========================= */

.packages-image-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff, #020d1e);
    text-align: center;
}

.packages-image-wrapper {
    max-width: 600px;
    margin: auto;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

    .packages-image-wrapper img {
        width: 100%;
        height:100%;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    }

    /* Small modern motion effect */
    .packages-image-wrapper:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 30px 70px rgba(0,0,0,0.7);
    }

/* Floating animation */
@keyframes floatUp {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

.packages-image-wrapper {
    animation: floatUp 4s ease-in-out infinite;
}

