﻿:root {
    --primary-blue: #0156b3;
    --dark-bg: #1a1e2e;
    --text-dark: #333;
    --text-light: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Titillium Web', sans-serif;
    overflow-x: hidden;
    font-style: normal;
}

/* ─── uhr Banner ───────────────────────────────────── */
.uhr-banner {
    background: #e9ecf0;
    overflow: hidden;
}

/* DESKTOP: full-width banner, title floats left inside it */
@media (min-width: 768px) {
    .uhr-banner {
        position: relative;
        height: 200px;
    }

    .uhr-banner__img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .uhr-banner__overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(255,255,255,.85) 0%, rgba(255,255,255,.55) 38%, transparent 65%);
    }

    .uhr-banner__text {
        /*position: absolute;
        top: 50%;
        left: 40px;
        transform: translateY(-50%);*/
    }
}

/* MOBILE: image small + title side by side */
@media (max-width: 767.98px) {
    .uhr-banner {
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 18px 20px;
    }

    .uhr-banner__img {
        width: 180px;
        max-width: 180px;
        height: 110px;
        object-fit: cover;
        border-radius: var(--radius);
        flex-shrink: 0;
    }

    .uhr-banner__overlay {
        display: none;
    }

    .uhr-banner__text {
        flex: 1;
    }
}

.uhr-banner__breadcrumb {
    font-size: .75rem;
    font-weight: 400;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .06em;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 2px;
    margin-bottom: 6px;
}

.uhr-banner__title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 600;
    color: var(--text);
    margin: 0;
    line-height: 1.15;
}

/* Top Bar */
.top-bar {
    background: #fff;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    padding-top: 0px;
}

.top-bar-contact, .top-bar-contact a {
    font-size: 14px;
    color: var(--text-dark);
    margin-right: 10px;
    text-decoration:none;
}

    .top-bar-contact i {
        color: var(--primary-blue);
        margin-right: 5px;
    }

.btn-contact {
    background: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 8px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
}

    .btn-contact:hover {
        background: #004494;
        color: #fff;
    }

/* Navbar */
.navbar {
    padding: 15px 0;
    background: #fff;
}

.navbar-brand img {
    max-width: 320px;
    max-height: 100px;
    width: auto;
    height: auto;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 18px !important;
    transition: color 0.3s ease;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--primary-blue);
    }

.dropdown-toggle::after {
    margin-left: 5px;
}

.lang-switch {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

    .lang-switch a {
        color: var(--text-dark);
        text-decoration: none;
        padding: 0 5px;
    }

        .lang-switch a.active {
            color: var(--primary-blue);
            font-weight: 700;
        }


        .lang-switch span.active {
            color: var(--primary-blue);
            font-weight: 700;
        }






/* Footer */
.footer {
    background: var(--dark-bg);
    color: #fff;
    padding: 60px 0 30px;
}

.footer-logo {
    max-width: 250px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 14px;
    color: #aaa;
    line-height: 1.8;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #aaa;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: #fff;
        }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
    color: #aaa;
}

    .footer-contact-item i {
        color: var(--primary-blue);
        margin-right: 10px;
        margin-top: 3px;
        width: 16px;
        display:inline-block;
    }

    .footer-contact-item strong, .footer-contact-item a {
        color: #fff;
        display: inline-block;
        margin-bottom: 5px;
        text-decoration:none;
        transition:all .4s;
    }


        .footer-contact-item a:hover{
            color:rgba(255,255,255,.55);
        }

        .footer-bottom {
            border-top: 1px solid #333;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #666;
        }

@media (max-width: 768px) {

    .footer {
        text-align: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .uhr-banner-top {
        margin-top: 0px;
        padding: 10px 10px;
    }
    
}

@media (max-width: 575px) {
    .navbar-brand img {
        max-width: 200px;
    }

}


.containerPadding{
    padding:40px 15px;
}


.CNFUstHeader {
    background: #f5f7fa;
}


@media (min-width:992px){
    .uhr-banner-top {
        margin-top: 20px;
        padding: 40px 10px;
    }
}