:root {
    --logo-for-white: url(assets/logo-full.svg);
    --logo-width: 250px;
    --logo-height: 60px;
    --primary-color: #6c6c6c;
    --icon-color: #6c6c6c;
    --button-hover-color: #838383;
    --button-text-color: #fff;
    --link-hover-color: #0088a9;
    --nav-background-color: white;
}

body {
    font-family: Montserrat, sans-serif;
}
hr {
    width: 50px;
    border-width: 3px;
    border-color: var(--primary-color);
    margin: 1.5rem auto;
    &.light {
        border-color: #fff;
    }
}
a {
    color: var(--primary-color);
    transition: all 0.2s;
    &:hover {
        color: var(--link-hover-color);
    }
}
h1 {
    font-size: 1.4rem;
}
hgroup {
    padding: 5em 0;
    background-image: url(assets/photos/hero.webp);
    background-position: center center;
    background-size: cover;
}
header {
    padding-top: 5rem;
    span {
        font-size: medium;
    }
}
section {
    padding: 5em 0;
}
table {
    width: max-content;
    td {
        padding: 0 0.5rem;
    }
}
nav {
    background-color: var(--nav-background-color);
    transition: background-color 0.2s linear;
    .navbar-logo {
        width: var(--logo-width);
        height: var(--logo-height);
        background-image: var(--logo-for-white);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
    }
}
.dark-card-bg {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 1rem;
    padding: 2rem;
}
.scroll-margin-top {
    scroll-margin-top: 110px;
}
.container-fluid {
    --bs-gutter-x: 0;
}
.bg-primary {
    background-color: var(--primary-color) !important;
}
.service-box {
    max-width: 340px;
}
.examples-box {
    position: relative;
    max-width: 650px;
    margin: 0 auto;
}
.icon-primary {
    color: var(--icon-color) !important;
}
.btn {
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 300px;
}
.btn-xl {
    padding: 1rem 2rem;
    margin-top: 1rem;
}
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    &:active,
    &:focus,
    &:hover {
        color: var(--button-text-color);
        background-color: var(--button-hover-color) !important;
    }
}
.btn[type='submit'] {
    min-width: 130px;
    .spinner-border {
        display: none;
    }
    &[disabled] {
        .label-text {
            display: none;
        }
        .spinner-border {
            display: inline-block;
        }
    }
}
.e-kartoteka {
    display: none;
}

iframe {
    width: 100%;
    height: 300px;
    margin-top: 1rem;
    border: 0;
}
#about {
    background-image: url(assets/photos/house.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#contact {
    background-image: url(assets/logo-text.svg);
    background-position: center bottom 1rem;
    background-repeat: no-repeat;
    background-size: 250px;
}
