 * { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: #1a2333;
    min-height: 100vh;
    margin: 0;
    padding: 0;

    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.468);

}
.card-wrapper {
    width: 100%;
    min-height: 100vh;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

        .navbar {
    background: rgba(0, 0, 0, 0.25);
    padding: 18px 30px;

position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 10;
}

        .navbar-brand {
            font-weight: 800;
            font-size: 22px;
            color: #1a2333;
        }

        .navbar a {
            color: white;
            text-decoration: none;
            margin: 10px 19px;
               transition: all 0.3s ease;
            opacity: 0.8;
            font-size: 18px;
        }

        .navbar button{
            
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);

    transition: all 0.3s ease;
    background-color: #2bb6e07b;

        }

        .navbar button:hover {
    background: #1a8fb8;
    transform: scale(1.07);

    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}
        .navbar a:hover { color: #2bb5e0;
           font-size: 20px;
 }

        .btn-travel {
            background-color: #2bb5e0;
            color: white;
            border-radius: 25px;
            padding: 10px 22px;
            font-size: 14px;
            border: none;
            cursor: pointer;
        }

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.background-video {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    z-index: 0;
}

.hero-content,
.footer-bar {
    z-index: 1;
}

        .hero-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
        }

        .hero h1 {
            color: white;
            font-size: 36px;
            font-weight: 400;
            line-height: 1.2;
        }

        .hero h1 strong { font-weight: 800; }

        .hero p {
            color: rgba(255,255,255,0.85);
            font-size: 14px;
            max-width: 420px;
            margin: 12px 0 20px;
            line-height: 1.6;
        }

        /* ===== SEARCH BAR ===== */
.book-ticket-btn {
    background: #2bb6e07b;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 35px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);

    transition: all 0.3s ease;

    margin-bottom: 50px;
    align-self: flex-start;
}

.book-ticket-btn:hover {
    background: #1a8fb8;
    transform: scale(1.07);

    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}
        .footer-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 30px;
            background: rgba(0,0,0,0.45);
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
        }

        .footer-bar p {
            color: rgba(255,255,255,0.5);
            font-size: 11px;
            margin: 0;
            letter-spacing: 1px;
        }

        .badges { display: flex; gap: 8px; }

        .badge-item {
            border: 1px solid rgba(255,255,255,0.4);
            border-radius: 50%;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 8px;
            text-align: center;
            line-height: 1.3;
        }


   

        @media (max-width: 768px) {

    body {
        padding: 10px;
        align-items: flex-start;
    }

    .card-wrapper {
        max-width: 100%;
        width: 100%;
        height: auto;
        max-height: none;
        border-radius: 20px;
    }

    /* NAVBAR */
    .navbar {
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        padding: 35px 20px;
    }

    .navbar-brand {
        font-size: 20px;
    }

    .navbar > div {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px 25px;
        text-align: center;
    }

    .navbar a {
        margin: 0;
        font-size: 15px;
    }

    .btn-travel {
        padding: 15px 35px;
        font-size: 18px;
    }


    /* HERO */
    .hero {
        height: 650px;
        background-position: center;
    }


    .hero-content {
        top: 250px;
        bottom: auto;
        padding: 25px 20px;
    }


    .hero h1 {
        font-size: 20px;
    }

    .hero p {
        font-size: 12px;
        max-width: 100%;
    }


    /* SEARCH BAR */
    .search-bar {
        width: 100%;
        max-width: 100%;
        border-radius: 20px;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 12px;
        margin-bottom: 20px;
    }

    .search-bar > i {
        display: none;
    }

    .search-field {
        width: 100%;
    }

    .search-field input,
    .search-field select {
        width: 100%;
        padding: 10px 0;
    }

    .search-bar .divider {
        width: 100%;
        height: 1px;
    }

    .search-btn {
        width: 100%;
        height: 50px;
        border-radius: 15px;
    }


    /* FOOTER */
    .footer-bar {
        padding: 10px 15px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .badges {
        justify-content: center;
        flex-wrap: wrap;
    }
}


     @media (max-width: 480px) {

    .navbar-brand {
        font-size: 25px;
    }

    .navbar a {
        font-size: 16px;
    }


    .navbar div {
        display: flex;
        flex-direction: column;
    }

    .hero {
        height: 680px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero-content {
        padding: 20px 15px;
    }

    .badge-item {
        width: 40px;
        height: 40px;
        font-size: 7px;
    }
}











