body {
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, .navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.navbar-brand span {
    color: #ffc107;
}

.bg-dark-custom {
    background-color: #1a1a1a;
    color: white;
}

nav .row {
    width: 100%;
    align-items: center;
}

nav img {
    width: 100%;
    max-width: 200px;
    height: auto;
}

/* Prevent business name from forcing width to be too wide on phone */
.navbar-brand {
    white-space: normal;
    line-height: 1.2;
    font-size: clamp(0.75rem, 2.8vw, 1.1rem);
}

/* phone updates */
@media (max-width: 576px) {
    nav .container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .navbar-brand {
        font-size: 0.68rem;
        line-height: 1.15;
    }

    nav .container[style*="color:white"] {
        font-size: 0.72rem;
        line-height: 1.2;
    }
}