
body {
    background: #c0c0c0 url("/images/diamond.jpg");
    margin-top: 1em;
}

.banner .container {
    background: #fff;
    text-align: center;
}
.banner a {
    color: #fff;
    text-decoration: none;
}
.banner a:hover {
    color: #ffff73;
}
.banner-logo,
.banner-contact {
    padding: 1em;
}
.banner-contact {
    color: #fff;
    background: #034FA3;
}

.ebco-facebook a {
    color: #222;
    text-decoration: none;
}

.image-block {
    text-align: center;
}
.image-block img {
    max-height: 200px;
}

#footer {
    margin-top: 1em;
    text-align: center;
}
#footer p {
    margin-bottom: .25em;
}

.hero .container {
    background: #c0c0c0;
    min-height: 32px;
}

.main .container {
    background: #fff;
}

.main-menu {
    color: #fff;
    background: #034FA3;
}

.marquee-container {
    width: 100%;
    line-height: 1em;
}
.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
}
.marquee-item {
    flex: 0 0 auto;
    color: #495057;
}
.marquee-item a {
    color: #222;
    text-decoration: none;
}
.marquee-item:hover {
    color: #000;
}
@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}
/* Optional: Pause animation on hover */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.menu-list {
    margin-top: 1em;
    text-align: center;
}
.menu-list li {
    margin: .25em 0;
}
.menu-list li:not(:first-child) a {
    color: #c9e3fa;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
}
.menu-list li:not(:first-child) a:hover {
    color: #fff;
}

.order-button {
    display: inline-block;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    color: #000; /* black by default */
    background: linear-gradient(to bottom, #f4f7fb 0%, #d9e2ec 50%, #c3d0e0 51%, #e8edf3 100%);
    border: 1px solid #000;
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.6);
    cursor: pointer;
    transition: color 0.2s ease;
}

.order-button:hover {
    color: #c00; /* red on hover */
}