:root {
    --font-text: "Montserrat", sans-serif;
    --deff-bg: #5ba7b0;
}

body {
    background-image: url("/static/img/wood-bg-3.webp");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    font-family: var(--font-text), sans-serif;
}

header {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 100%;
}

.navbar {
    padding: 20px 0;
    backdrop-filter: blur(5px);
    background-color: rgb(0, 0, 0, .1);
}

.navbar-logo img {
    width: 200px;
}

.navbar-menu {
    color: #fff;
}

.navbar-menu ul {
    display: flex;
    gap: 1.5rem;
}

.navbar-menu ul li a {
    position: relative;
    font-size: 13px;
}

.navbar-menu ul li a::before, .navbar-menu ul li a::after {
    content: "";
    height: 1px;
    position: absolute;
    bottom: -5px;
    width: 100%;
    background-color: #fff;
}

.navbar ul li a::after {
    bottom: -9px;
    left: 0;
}


footer {
    background-color: #000;
    color: #fff;
}

.footer-logo img {
    width: 180px;
}

.footer-social ul li {
    margin-bottom: 8px;
}

.footer-social li a {
    font-size: 13px;
}

.page-banner {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.about-info {
    background-color: rgb(0, 0, 0, .25);
    color: #fff;
    padding: 3.5rem 4rem;
    width: 450px;
    margin-left: 200px;
}

.about-info li {
    margin-bottom: 15px;
    position: relative;
}

.about-info li:last-of-type {
    margin-bottom: 0;
}

.about-info ul li::before {
    content: "";
    height: 20px;
    width: 20px;
    background-image: url("/static/img/checkmark.svg");
    background-size: 100%;
    background-position: center;
    position: absolute;
    left: -30px;
    top: 3px;
}

section.about img {
    width: 100%;
}

.lang-toggle {
    position: absolute;
    right: 30px;
    top: 30px;
    cursor: pointer;
    padding: 1rem;
}

.lang-toggle button, .lang-toggle img {
    cursor: pointer;
}

.page-banner.overlay-dark::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: .5;
    pointer-events: none;
}

.page-banner h1 {
    color: #fff;
    position: relative;
    font-size: 45px;
}

.ekatalog-btn {
    position: fixed;
    top: 50%;
    right: 45px;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: bottom right;
    color: #fff;
    background-color: var(--deff-bg);
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
    z-index: 9999;
}

.ekatalog-btn:hover {
    background-color: #1e40af; /* darker blue */
}

.footer-social-icons {
    padding-top: 20px;
}

.footer-social-icons ul {
    display: flex;
    gap: 10px;
}


.footer-social-icons li {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s ease-in-out;
}

.footer-social-icons li:hover {
    background-color: #575757;
}

.footer-social-icons ul li a {
    font-size: 20px;
}

.footer-copy {
    text-align: center;
    padding-top: 80px;
}

.footer-copy a {
    color: var(--deff-bg);
}