/**
 * Copyright (c) Since 2025 Sopchy
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 *
 * @author    Sopchy <contact@sopchy.com>
 * @copyright Since 2025 Sopchy
 * @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */

.sopchy-topbar {
    padding: 10px 0;
    background-color: #0073bd;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    z-index: 1000;
    position: relative;
}

.sopchy-topbar .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sopchy-topbar .row {
    width: 100%;
}

.sopchy-topbar .col-12 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.topbar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.topbar-content i {
    margin-right: 8px;
    font-size: 16px;
}

.topbar-content span {
    margin: 0 5px;
}

/* Separator */
.topbar-content .separator {
    margin: 0 15px;
    opacity: 0.7;
}

.sopchy-topbar p {
    margin-bottom: 0px !important;
}

/* Domyślnie pokazujemy desktop, ukrywamy mobile */
.sopchy-topbar .topbar-content-desktop {
    display: block;
}

.sopchy-topbar .topbar-content-mobile {
    display: none;
}


/* Responsive */
@media (max-width: 767px) {
    .sopchy-topbar .topbar-content-desktop {
        display: none;
    }
    
    .sopchy-topbar .topbar-content-mobile {
        display: block;
    }

    .sopchy-topbar * {
        font-size: 12px;
    }
    
    .topbar-content {
        flex-direction: column;
        gap: 5px;
    }
    
    .topbar-content .separator {
        display: none;
    }
}