﻿/* =====================================
   TOP BAR
===================================== */
/* =====================================
   PREMIUM TOP BAR
===================================== */

.top-bar {
    background: linear-gradient( 90deg, #020617, #0f172a, #1e293b);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

    .top-bar a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
        transition: .3s;
    }

        .top-bar a:hover {
            color: #facc15;
        }

    .top-bar .container {
        gap: 15px;
    }

/* MOBILE */

/* =====================================
   MOBILE TOP BAR
===================================== */

/* =====================================
   MOBILE TOP BAR COMPACT
===================================== */

@media (max-width:991px) {

    .top-bar {
        padding: 6px 0;
        font-size: 12px;
    }

        .top-bar .container {
            display: grid !important;
            grid-template-columns: repeat(2,1fr);
            gap: 6px;
            align-items: center;
        }

            .top-bar .container > div {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 4px;
                padding: 4px 6px;
                background: rgba(255,255,255,.06);
                border-radius: 8px;
                white-space: nowrap;
                overflow: hidden;
            }

        .top-bar a {
            display: inline;
            font-size: 11px;
            font-weight: 600;
            color: #fff;
            text-decoration: none;
        }
}

/* VERY SMALL PHONES */

@media (max-width:480px) {

    .top-bar {
        padding: 5px 0;
    }

        .top-bar .container {
            grid-template-columns: repeat(3,1fr);
            gap: 4px;
        }

            .top-bar .container > div {
                padding: 3px 4px;
                border-radius: 6px;
            }

        .top-bar a {
            font-size: 10px;
        }
}

/* =====================================
   NAVBAR
===================================== */

/* NAVBAR */

/* =====================================
   PREMIUM NAVBAR
===================================== */

.navbar {
    background: linear-gradient( 135deg, #0f172a 0%, #1e3a8a 50%, #2563eb 100%);
    padding: 14px 0;
    box-shadow: 0 10px 30px rgba(37,99,235,.25);
}

/* WEBSITE NAME */

.navbar-brand {
    color: #ffffff !important;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(255,255,255,.15);
}

/* MENU LINKS */

.nav-link {
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 700;
    margin-left: 12px;
    transition: .3s;
}

    .nav-link:hover {
        color: #facc15 !important;
        transform: translateY(-1px);
    }

    /* ACTIVE LINK */

    .nav-link.active {
        color: #ffffff !important;
    }

/* LOGIN BUTTON */

.btn-view {
    background: linear-gradient( 135deg, #f59e0b, #f97316, #ef4444);
    color: #ffffff !important;
    border: none;
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(249,115,22,.35);
    transition: .35s;
}

    .btn-view:hover {
        color: #ffffff !important;
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(249,115,22,.45);
    }

/* TOGGLER */

.navbar-toggler {
    border: 1px solid rgba(255,255,255,.35);
    padding: 8px 12px;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* MOBILE */

@media(max-width:991px) {

    .navbar-brand {
        font-size: 28px;
    }

    .navbar-collapse {
        margin-top: 15px;
        background: rgba(15,23,42,.98);
        border-radius: 18px;
        padding: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,.25);
    }

    .navbar-nav {
        text-align: center;
    }

    .nav-link {
        color: #ffffff !important;
        padding: 12px;
        margin-left: 0;
    }

    .btn-view {
        width: 100%;
        margin-top: 10px;
    }
}

/* =====================================
   MOBILE
===================================== */

@media(max-width:768px) {

    .top-bar {
        text-align: center;
    }

        .top-bar .container {
            flex-direction: column;
        }

    .navbar-nav {
        text-align: center;
    }

    .btn-view {
        width: 100%;
        margin-top: 8px;
    }
}
