body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('../images/logo-bg.png') no-repeat center center;
    background-size: 50%;
    opacity: 0.2;
    z-index: -1;
    pointer-events: none;
}

/* Фирменные цвета Mediphysiotherapie GbR */
:root {
    --primary-color: #28a795;
    --primary-color-dark: #208677;
    --secondary-color: #bed62f;
    --secondary-color-dark: #a3b824;
    --dark-color: #333333;
}


a {
    color: var(--primary-color);
}

a:hover,
a:focus {
    color: var(--secondary-color-dark);
    text-decoration: none;
}

.btn.btn-primary {
    background: var(--primary-color) !important;
    border-color: var(--primary-color-dark) !important;
    color: #fff !important;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active {
    background: var(--primary-color-dark) !important;
    border-color: var(--primary-color-dark) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-color);
}

::selection {
    background: var(--secondary-color);
    color: var(--dark-color);
}

/* ТЕМНАЯ ШАПКА САЙТА */
#header {
    background-color: #1a3b37 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-bottom: none !important;
}

/* ТЕКСТ МЕНЮ */
#header .navbar-section a,
#header .navbar-section .navigation li a,
.dropmenu ul li a {
    color: #ffffff !important;
    font-weight: 500;
    text-decoration: none !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

/* ЦВЕТ ПРИ НАВЕДЕНИИ И АКТИВНЫЙ ПУНКТ (БЕЗ ЛИНИЙ) */
#header .navbar-section a:hover,
#header .navbar-section a.active,
#header .navbar-section li.active>a,
#header .navbar-section li.selected>a,
.dropmenu ul li a.active,
.dropmenu ul li a:hover {
    color: var(--secondary-color) !important;
    border-bottom: none !important;
    background: transparent !important;
    transition: color 0.3s ease;
}

/* МОБИЛЬНОЕ МЕНЮ */
.mobile-menu .button_container span {
    background: #ffffff !important;
}

.overlay {
    background: #1a3b37 !important;
    opacity: 0.98;
}

.overlay-menu a,
.overlay-menu ul li a,
.treemenu li a {
    color: #ffffff !important;
}

.overlay-menu a:hover,
.overlay-menu a.active,
.treemenu li a.active {
    color: var(--secondary-color) !important;
}

/* ВЫПАДАЮЩЕЕ МЕНЮ (DESKTOP) */
.dropmenu ul {
    background-color: #1a3b37 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.dropmenu ul li a {
    padding: 10px 20px !important;
}

/* Контактная форма */
form.contact-form-narrow {
    max-width: 600px;
    margin: 0 auto;
}

#header .logo img,
#header .logo svg {
    display: inherit;
    height: 70px;
}