
body {
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

/* Ribbon Header Styling */
.ribbon-container {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.ribbon {
    position: relative;
    background: #004733;
    color: #d4af37;
    text-transform: uppercase;
    font-weight: 800;
    padding: 6px 15px;
    font-size: 0.75rem; /* Extremely compact for very small screens */
    clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 375px) {
    .ribbon {
        font-size: 0.9rem;
        padding: 8px 25px;
    }
}

@media (min-width: 768px) {
    .ribbon {
        padding: 10px 60px;
        font-size: 1.5rem;
        clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    }
}

/* Logo Image Container */
.logo-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

/* Menu Item Styles */
.menu-item-name {
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .menu-item-name {
        font-size: 1.5rem;
    }
}

.price-tag {
    font-size: 1rem;
    font-weight: 800;
    color: #004733;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .price-tag {
        font-size: 1.5rem;
    }
}

.vegan-badge {
    background-color: #16a34a;
    color: white;
    font-size: 7px;
    font-weight: 800;
    padding: 1px 3px;
    border-radius: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .vegan-badge {
        font-size: 10px;
        padding: 2px 5px;
    }
}

/* Focus states for accessibility */
a:focus {
    outline: 2px dashed #d4af37;
    outline-offset: 4px;
}

/* Address Link Styling */
address a {
    text-decoration: none;
    color: inherit;
}
