/* ==== GENERAL STYLES ==== */
body {
    font-family: 'Oswald', sans-serif;
    background-color: #fffaf5;
    color: #333;
}

/* ==== NAVIGATION ==== */
.navbar {
    border-bottom: 2px solid #f3f3f3;
}

.costumnav {
    background: #fff8f0;
}

.navbar-brand span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.colornav {
    color: #b22222 !important;
}

.nav-link {
    font-weight: 500;
    color: #333;
    transition: 0.3s ease;
}

.nav-link:hover {
    color: #b22222;
}

/* ==== HEADINGS ==== */
h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: #b22222;
    margin-bottom: 0.5rem;
}

p.text-center {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ==== RIBBONS ==== */
.ribbon {
    position: relative;
    padding: 0.5rem 1rem;
    background-color: #b22222;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    text-align: center;
}

.ribbontwo {
    height: 4px;
    background-color: #FCC84B;
    width: 100%;
    margin-top: 5px;
}

/* ==== MENU LAYOUT ==== */
.menu-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-leftside,
.menu-rightside {
    flex: 1;
    min-width: 300px;
}

/* ==== CARD WRAPPING ==== */
.plate-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.menucardwrap {
    display: flex;
    justify-content: center;
}

/* ==== MENU CARDS ==== */
.menucard {
    width: 100%;
    max-width: 350px;
    border: 2px solid #eee;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s;
}

.menucard:hover {
    transform: translateY(-5px);
}

.item-image-container,
.item-image-containeer {
    width: 100%;
    overflow: hidden;
}

.item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.titlecontainer {
    padding: 0.75rem 1rem 0 1rem;
    background-color: #fffaf0;
}

.item-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #b22222;
}

/* ==== DESCRIPTION & PRICE ==== */
.info-row {
    padding: 0.75rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5rem;
}

.item-description {
    font-size: 0.95rem;
    color: #444;
}

.item-price {
    font-weight: bold;
    color: #222;
    font-size: 1.1rem;
    align-self: flex-end;
}

/* ==== DRINKS GRID ==== */
.drink-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.bottledcardwrap {
    margin-top: 2rem;
}

.fullwidth {
    border: 2px solid #eee;
    border-radius: 12px;
    background-color: #fff;
    padding: 1.5rem;
    max-width: 100%;
}

.titlecontainerd .item-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #b22222;
}

@media screen and (max-width: 768px) {
    .menu-grid {
        flex-direction: column;
    }
}

.custom-nav-btn {
    background-color: #dc3545;
    color: #fff !important;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3);
    text-align: center;
    display: inline-block;
    white-space: nowrap;
}

.custom-nav-btn:hover {
    background-color: #c82333;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(220, 53, 69, 0.4);
}