/* General Styles */
body {
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    margin: 0;
    color: #333;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}
.header-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 28px;
    font-weight: 800;
    color: #222;
}
.navbar ul {
    display: flex;
    list-style: none;
    gap: 20px;
}
.navbar a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    transition: color 0.3s;
}
.navbar a:hover {
    color: #e67e22;
}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

/* Sections */
.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 4px solid #e67e22;
    display: inline-block;
    padding-bottom: 5px;
}

/* Grid */
.grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Menu Cards */
.menu-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.menu-card:hover {
    transform: scale(1.05);
}
.menu-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.card-body {
    padding: 20px;
}
.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}
.item-header h3 {
    font-size: 20px;
    font-weight: 700;
}
.price {
    font-size: 18px;
    font-weight: bold;
    color: #e67e22;
    cursor: pointer;
    transition: color 0.3s;
}
.price:hover {
    color: #d35400;
}
p {
    font-size: 14px;
    color: #666;
}

/* Tooltip */
.tooltip-container {
    position: relative;
    display: inline-block;
}
.tooltip-message {
    visibility: hidden;
    background: #333;
    color: #fff;
    font-size: 12px;
    border-radius: 6px;
    padding: 5px 8px;
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
}
.tooltip-message.visible {
    visibility: visible;
    opacity: 1;
}

/* Footer */
.footer {
    background: #1f2937;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}
.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}
.footer p {
    font-size: 14px;
    margin: 3px 0;
}
.footer .copyright {
    font-size: 12px;
    margin-top: 10px;
    color: #aaa;
}
