﻿:root {
    --primary: #06BBCC !important;
    --light: #F0FBFC !important;
    --dark: #181d38 !important;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .more-info:hover {
        background-color: #f8f9fa !important;
    }


/* Loading animation */
@keyframes pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

.loading-placeholder {
    animation: pulse 1.5s infinite ease-in-out;
    background-color: #f5f5f5;
    border-radius: 4px;
    height: 220px;
    margin-bottom: 15px;
}

/* Search animation */


    .btn-search:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

/* Page transition */
.page-transition {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.booking-status {
    transition: all 0.3s ease;
    color: var(--primary);
    text-decoration: none;
}

    .booking-status:hover {
        color: #048b9a;
        text-decoration: underline;
        transform: translateX(3px);
    }

.card-text {
    font-size: 1rem;
}

.text-muted {
    color: #6c757d !important;
}

.footer {
    background-color: var(--dark) !important;
}

    .footer .btn.btn-social {
        margin-right: 5px;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--light);
        font-weight: normal;
        border: 1px solid #FFFFFF;
        border-radius: 35px;
        transition: .3s;
    }

        .footer .btn.btn-social:hover {
            color: var(--primary);
            transform: translateY(-3px);
        }

    .footer .btn.btn-link {
        display: block;
        margin-bottom: 5px;
        padding: 0;
        text-decoration: none;
        text-align: left;
        color: #FFFFFF;
        font-size: 15px;
        font-weight: normal;
        text-transform: capitalize;
        transition: .3s;
    }

        .footer .btn.btn-link::before {
            position: relative;
            content: "\f105";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            margin-right: 10px;
        }

        .footer .btn.btn-link:hover {
            letter-spacing: 1px;
            box-shadow: none;
            color: var(--primary);
            transform: translateX(5px);
        }

    .footer .copyright {
        padding: 25px 0;
        font-size: 15px;
        border-top: 1px solid rgba(256, 256, 256, .1);
        text-decoration: none;
    }

        .footer .copyright a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .footer .copyright a:hover {
                color: var(--primary);
            }

    .footer .footer-menu a {
        margin-right: 15px;
        padding-right: 15px;
        border-right: 1px solid rgba(255, 255, 255, .1);
        transition: color 0.3s ease;
    }

        .footer .footer-menu a:hover {
            color: var(--primary) !important;
        }

        .footer .footer-menu a:last-child {
            margin-right: 0;
            padding-right: 0;
            border-right: none;
        }

/* Navbar animation */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

/* Trip card enhancements */
.card-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.card-text {
    margin-bottom: 10px;
}

.date-ranges {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
}
  @media (max-width: 768px) {
            .btn-login, .btn-register

        {
            width: 100%;
            margin-bottom: 0.5rem;
        }

        .navbar-nav.p-3.p-lg-0 {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

            .navbar-nav.p-3.p-lg-0 .btn + .btn {
                margin-left: 0;
            }

        }