﻿.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #64513B;
    padding: 10px 10px;
    position: relative;
    overflow: hidden;
}


    .header a.logo {
        font-size: 0px;
        font-weight: normal;
        color: #D1BE9D;
        font-family: "Pacifico", cursive;
        padding-inline: 20px;
        text-decoration: none;
    }

.logo img {
    height: 50px;
    width: auto;
}


.header-right {
    padding-inline: 40px;
    display: flex;
    gap: 20px;
}

    .header-right a {
        font-size: 25px;
        font-weight: 100;
        color: #D1BE9D;
        font-family: "Pacifico", cursive;
        text-decoration: none;
        padding-inline: 20px;
    }

.header-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

    .header-center form {
        display: flex;
        align-items: center;
    }

    .header-center input[type="text"],
    .header-center button {
        height: 36px;
        box-sizing: border-box;
    }

    .header-center input[type="text"] {
        padding: 5px 10px;
        font-size: 16px;
        font-family: "Pacifico", cursive;
        border: none;
        border-radius: 10px 0 0 0;
        outline: none;
    }

    .header-center button {
        padding: 5px 10px;
        background-color: #D1BE9D;
        border: none;
        border-radius: 0 10px 10px 0;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .header-center button i {
            font-size: 18px;
            color: #64513B;
        }
/* Скриваме долния navbar на десктоп */
.mobile-bottom-nav {
    display: none;
}

/* Mobile styles */
@media (max-width: 768px) {
    .header{
        justify-content: center;
    }

    .header a.logo{
        padding-inline: 0;
    }

    .header-center {
        display: none; /* Скриваме търсачката */
    }

    .header-right {
        display: none; /* Скриваме горните линкове */
    }

    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background-color: #64513B;
        border-top: 1px solid #D1BE9D;
        z-index: 1000;
    }

        .mobile-bottom-nav a {
            color: #D1BE9D;
            text-decoration: none;
            font-family: "Pacifico", cursive;
            font-size: 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

            .mobile-bottom-nav a i {
                font-size: 20px;
                margin-bottom: 2px;
            }

    /* Леко по-компактен padding за body, за да не се скрива съдържанието под navbar */
    body {
        padding-bottom: 60px !important;
    }

    /* Мобилна търсачка в bottom navbar */
    .mobile-search-form {
        display: flex;
        align-items: center;
        background-color: #D1BE9D;
        border-radius: 20px;
        padding: 2px 5px;
        /* Нови ограничения на ширината */
        width: 215px; /* фиксирана ширина */
        min-width: 80px; /* минимум за по-малки устройства */
    }

        .mobile-search-form input {
            border: none;
            outline: none;
            padding: 5px;
            font-family: "Pacifico", cursive;
            font-size: 14px;
            background-color: transparent;
            color: #64513B;
        }

        .mobile-search-form button {
            border: none;
            background: none;
            cursor: pointer;
            color: #64513B;
            font-size: 16px;
        }
}

