:root {
    --accent: #e65100;
    --brand: #0b61b3;
    --muted: #666;
    --max-width: 1100px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: Inter, Arial, Helvetica, sans-serif;
    margin: 0;
    color: #222;
    line-height: 1.45;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px;
}

.topbar {
    background: #111;
    color: white;
}

.topbar .container {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 2px;
    padding-bottom: 2px;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 48px;
    width: 48px;
    object-fit: cover;
    border-radius: 6px;
}

.mainnav {
    margin-left: auto;
    display: flex;
    gap: 16px;
}

.mainnav a:hover{
    background:transparent;
    border-color: var(--accent);
    border-radius: 12px;
    border-width: 2px;
    border-style: solid;
}

.top-actions a:hover{
    background:transparent;
    border-color: var(--accent);
    border-radius: 12px;
    border-width: 2px;
    border-style: solid;
}

.hamburger {
    display: none;
    margin-left: auto;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    margin: 4px 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 12px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 1002;
}

.mobile-nav a {
    display: block;
    color: white;
    padding: 8px 12px;
    text-decoration: none;
}

.mobile-nav.open { display: block; }

.loginModal{
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 12px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 1002;
    width: calc(fit-content + 50px);
    align-items: center;
    text-align: center;
}

.loginModal input{
    background: transparent;
    border-color: var(--accent);
    border-radius: 8px;
    border-width: 2px;
    border-style: solid;
    color: white;
    margin-bottom: 8px;
    padding: 8px;
}

.loginModal button{
    background: var(--accent);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.myAccountLink {
   display: none;
}

.mainnav a {
    color: white;
    text-decoration: none;
    padding: 12px 8px;
}

.top-actions .btn {
    background: var(--accent);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
}

.hero {
    background: linear-gradient(90deg, rgba(6,97,179,0.06), rgba(230,81,0,0.04));
    padding: 40px 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-left {
    flex: 1;
}

.hero-left h2 {
    font-size: 34px;
    margin: 0 0 8px;
}

.hero-left p.lead {
    font-size: 18px;
    color: var(--muted);
}

.hero-right {
    width: 360px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.btn {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 6px;
    background: var(--brand);
    color: white;
    text-decoration: none;
}

.btn.outline {
    background: transparent;
    border: 2px solid var(--brand);
    color: var(--brand);
}

.btn.large {
    padding: 12px 18px;
    font-size: 16px;
}

.menu-section {
    padding: 28px 0;
}

.menu-categories {
    display: flex;
    gap: 8px;
    margin: 12px 0 18px;
}

.cat-btn {
    background: #f3f3f3;
    border: 1px solid #e6e6e6;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
    .menu-grid {
        /* treat this as a simple section container (not a grid) */
        display: block;
    }

    .menu-card { margin-bottom: 18px; }

@media (max-width: 1100px) {
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
    .menu-grid { grid-template-columns: repeat(1, 1fr); }
}

.menu-card {
    background: white;
    border: 1px solid #eee;
    padding: 14px;
    border-radius: 8px;
    display: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
    will-change: transform;
}

.menu-grid { align-items: start; }

@media (min-width: 900px) {
    .menu-card:hover {
        grid-column: span 2;
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 12px 30px rgba(14,30,60,0.12);
        z-index: 5;
    }
}

.menu-card .menu-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}
.menu-card .menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 12px;
}
.menu-card .menu-item {
    flex: 1 1 180px;
    min-width: 140px;
    max-width: 1fr;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    padding: 8px 10px;
    border-radius: 8px;
}

@media (max-width: 899px) {
    .menu-card .menu-items {
        flex-direction: column;
    }
    .menu-card:hover { grid-column: auto; transform: none; box-shadow: 0 2px 8px rgba(0,0,0,0.06); z-index: 1; }
}

.menu-card h3 {
    margin-top: 0;
}

.menu-card .price {
    float: right;
    color: var(--accent);
    font-weight: 700;
}

.location-section {
    padding: 28px 0;
}

.map-wrap {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.address {
    margin-top: 12px;
}

.contact-section {
    padding: 28px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-grid form label {
    display: block;
    margin-bottom: 8px;
}

.contact-grid input,
.contact-grid textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.site-footer {
    background: #111;
    color: #fff;
    padding: 18px 0;
    margin-top: 28px;
}

.site-footer p {
    margin: 0;
}

.closedText {
    color: red;
    font-weight: bold;
}

@media (max-width: 900px) {
    .hero .container {
        flex-direction: column;
    }

    .hero-right {
        width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .mainnav {
        display: none;
    }
    .hamburger {
        display: block;
    }
}