/* *********** General *********** */
.montserrat {
    font-family: 'Montserrat', sans-serif;
}

.nav-link-general {
    color: #4CAF50;
}

/* Fix the position of the footer */
main {
    min-height: 80vh;
    height: auto !important;
    height: 100%;
}

/* *********** Images *********** */
.logo {
    width: 150px;
    padding-left: 5%;
    padding-right: 5%;
}

@media only screen and (min-width: 768px) {
    .img-frank {
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 60%;
        height: auto;
    }
}

.header-image {
    background-image: url("/static/img/header.7d946bdfc913.webp"); 
    width: 100%; 
    height: 65vh; 
    background-repeat: no-repeat; 
    background-position:bottom; 
    background-size: cover;
}

.coffeebar-image {
    width: 100%;
    height: 65vh;
    background-image: url("/static/img/coffee-bar-dark.98305a45133c.webp");
    background-size: cover;
    background-position: center;
}

.office-image {
    width: 100%;
    height: 65vh;
    background-image: url("/static/img/office-dark.be1bc6172cf7.webp");
    background-size: cover;
    background-position: center;
}

.coffeebar-image .office-dark {
    @media (min-width: 768px) {
        background-attachment: fixed;
    }
}

/* *********** Navigation *********** */
.nav-link.active {
    color: #4CAF50 !important;
    text-decoration-line: underline;
}

.nav-link:hover {
    color: #4CAF50;
}

.nav-link {
    color: black;
    font-weight: 500;
}

/* *********** Navigation bar: Standard (desktop) *********** */
.navbar-nav .nav-link {
    font-size: 1rem;
    padding: 0.5rem 1rem;
}

/* Navigation bar: only mobile (until lg) */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        font-size: 1rem;
        /* bigger text */
        padding: 0.75rem 1rem;
        /* more space */
    }
}

/* *********** Header *********** */
.header-h1 {
    color: #4CAF50;
}

.header-p {
    font-size: 20px;
}

.button-header {
    background-color: #636664;
    border-radius: 8px;
    padding: 10px 24px;
    color: white;
    text-align: center;
    margin: 4px 2px;
    border: none;
    white-space: nowrap;
}

.button-header:hover {
    background-color: #4CAF50;
}

/* *********** Footer *********** */
.footer {
    background-color: black;
    color: white;
}

.nav-link-footer.active {
    color: #4CAF50 !important;
}

.nav-link-footer:hover {
    color: #4CAF50;
}

.nav-link-footer {
    color: white;
    font-weight: 500;
    text-decoration: none;
}

.list-footer {
    color: white;
    text-decoration: none;
}

.list-footer:hover {
    color: #4CAF50;
}