/*Color scheme for doorhues*/

.nav-container {
    background-color: #48679D;
}

.navbar-border {
    border-bottom: 1px solid rgb(74, 47, 27);
}

.links-container {
    background: #5787D8;
}

.hamburger-btn {
    color: #fff;
}

.hamburger-icon {
    -webkit-tap-highlight-color: transparent;
}

.brand {
    color: #fff;
}

.contact a {
    color: #fff;
}

/* Links */
.nav-grid a {
    color: white;
    background-color: transparent;
}

/* Links behaviour */
a:link {
    color: white;
    background-color: transparent;
}

a:hover {
    color: darkgray;
    background-color: transparent;
}

a:active {
    color: white;
    background-color: transparent;
}

a.active {
    color: #E0DAD6;
    background-color: transparent;
}

/*Body*/
body {
    background-color: #B4D9ED;
}

.pagebody {
    background: #E0DAD6;
    color: #1f2933;
}

.hero-image {
    background-image:
        linear-gradient(rgba(157, 124, 128, 0.5), rgba(157, 124, 128, 0.5)),
        url("../images/eleutheria.jpg");
    background-color: #9D7C80;
}

.hero-tekst {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/*Cards*/
.grid-wrapper {
    background: #E0DAD6;
}

.grid-item {
    background: #fff;
}

.card-btn {
    background: rgb(218, 218, 217);
    color: rgb(74, 47, 27);
    transition: background 0.25s ease;
}

.card-btn:hover {
    background: #5787D8;
    color: white;
}

/* FOOTER */
footer {
    background-color: #5787D8;
    color: rgb(245, 230, 200);
}