@font-face {
    font-family: 'Viva';
    src: url('../fonts/viva.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #333;
}

h1, h2, h3 {
    font-weight: 700;
}

#restaurant-name {
    font-family: 'Viva', sans-serif;
    background: linear-gradient(45deg, #ff6200, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
}

.carousel-caption {

    padding: 20px;
    border-radius: 10px;
}

.ordering-btn {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.ordering-btn.doordash { background-color: #ff6200; }
.ordering-btn.grubhub { background-color: #ffd700; }
.ordering-btn.ubereats { background-color: #00cc44; }
.ordering-btn.catering { background-color: #ff1493; }

.gallery-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    position: relative;
}

.gallery-img::after {
    content: attr(data-name);
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
}

.accessibility-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.font-small { font-size: 14px; }
.font-medium { font-size: 16px; }
.font-large { font-size: 20px; }

.contrast-high {
    background: #000;
    color: #fff;
}

.contrast-high a, .contrast-high .nav-link, .contrast-high .carousel-caption {
    color: #fff !important;
    background: rgba(0, 0, 0, 0.8) !important;
}

.social-icons i {
    font-size: 24px;
    color: #333;
}

footer img {
    filter: brightness(0) invert(1);
}

.meat-choices {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}