body {
    font-family: Arial, sans-serif;
    background: #f8f8f8;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 900px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    display: flex;
    flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

/* New card layout */
.card-media {
    position: relative;
    width: 100%;
    height: 160px;
    background: #eee;
}
.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f5d76e;
    color: #3a2b00;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.add-btn {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.95);
    color: #cc4b2b;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    cursor: pointer;
}
.add-btn:focus { outline: 2px solid rgba(204,75,43,0.2); }

.card-body {
    padding: 12px 14px 16px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}
.card-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}
.card-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}
.card-price {
    color: #2a7b2a;
    font-weight: 700;
    font-size: 14px;
}
.card-desc {
    margin-top: 8px;
    color: #666;
    font-size: 13px;
    line-height: 1.4;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background: #fff;
    border-radius: 10px;
    padding: 32px 24px;
    max-width: 400px;
    width: 90vw;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    position: relative;
}
.close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.5em;
    color: #888;
    cursor: pointer;
}
.modal-content img {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 18px;
}
.modal-title {
    font-size: 1.3em;
    margin-bottom: 10px;
}
.modal-desc {
    color: #444;
    margin-bottom: 12px;
}
.modal-price {
    font-weight: bold;
    color: #2a7b2a;
    font-size: 1.1em;
}

/* Header and category menu styles */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 900;
}
.header-left { display: flex; align-items: center; gap: 12px; }
.hotel-logo { width: 48px; height: 48px; border-radius: 6px; object-fit: cover; }
.hotel-name { font-weight: 700; font-size: 1.1rem; }
.menu-btn { background: transparent; border: 0; padding: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.hamburger { width: 22px; height: 2px; background: #333; display: block; position: relative; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: #333; }
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }
.category-menu { position: absolute; right: 20px; top: 64px; background: #fff; border-radius: 8px; box-shadow: 0 6px 18px rgba(0,0,0,0.12); min-width: 160px; overflow: hidden; }
.category-menu ul { list-style: none; margin: 0; padding: 8px 0; }
.category-menu li { padding: 8px 16px; cursor: pointer; white-space: nowrap; color: #333; }
.category-menu li:hover, .category-menu li:focus { background: #f2f2f2; outline: none; }
.visually-hidden { position: absolute!important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }

/* Special banner / hero carousel */
.special-banner {
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
    background: #000;
}
.carousel {
    height: 100%;
    display: flex;
    transition: transform 0.6s ease;
}
.carousel-item {
    min-width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.6) 100%);
}
.carousel-item .content {
    position: relative;
    color: #fff;
    text-align: center;
    max-width: 760px;
    padding: 20px;
}
.carousel-item h2 {
    font-size: 42px;
    margin: 0 0 8px;
    font-family: 'Georgia', serif;
}
.carousel-item p {
    margin: 0 0 12px;
    color: rgba(255,255,255,0.9);
}
.carousel-item .price {
    color: #ffd700;
    font-weight: 700;
    margin-right: 12px;
}
.carousel-controls {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    border: none;
    font-size: 20px;
    color: #222;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

.carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}
.carousel-dots button {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    border: none;
    cursor: pointer;
}
.carousel-dots button.active {
    background: #ffd700;
    width: 28px;
    border-radius: 12px;
}

/* Give page content a bit of top space so sticky header doesn't overlap */
body { padding-top: 8px; }


/* Menu intro heading */
.menu-intro {
    max-width: 900px;
    margin: 28px auto 8px;
    text-align: center;
    padding: 18px 12px 8px;
}
.menu-intro .eyebrow {
    color: #d66e5a;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 6px;
}
.menu-intro h1 {
    font-family: 'Georgia', serif;
    font-size: 36px;
    margin: 0;
    color: #222;
    font-weight: 700;
}
.menu-intro .decor-underline {
    width: 72px;
    height: 4px;
    background: linear-gradient(90deg, #d7a63a, #c88c2b);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* adjust container margin to sit below intro */
.container { margin-top: 18px; }

/* Footer styles */
.site-footer {
    background: #231f1e;
    color: #dcd7d4;
    padding-top: 40px;
    margin-top: 36px;
    font-size: 14px;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
    padding: 0 20px 28px;
}
.footer-col { min-height: 1px; }
.footer-brand .footer-logo {
    font-family: 'Georgia', serif;
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
}
.footer-desc { color: #bfb9b6; line-height: 1.6; max-width: 320px; }
.footer-social { margin-top: 14px; display: flex; gap: 10px; }
.social-btn {
    width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.03); border-radius: 8px; color: #ddd; border: 1px solid rgba(255,255,255,0.04);
}
.social-btn svg { color: #e6e1de; }

.footer-col h4 { color: #fff; margin: 0 0 12px; font-size: 18px; font-weight: 700; }
.visit-list { list-style: none; padding: 0; margin: 0; color: #cfc9c6; }
.visit-list li { margin-bottom: 10px; display: flex; gap: 8px; align-items: flex-start; }
.visit-list .icon { opacity: 0.95; margin-right: 6px; }

.hours-table { width: 100%; border-collapse: collapse; color: #cfc9c6; }
.hours-table td { padding: 6px 0; }
.hours-table tr td:first-child { width: 60%; opacity: 0.95; }
.hours-table tr td:last-child { text-align: right; color: #e7e2df; }
.hours-table tr + tr td { border-top: 1px solid rgba(255,255,255,0.03); padding-top: 12px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.04); padding: 18px 0 28px; margin-top: 8px; }
.footer-bottom-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.separator { width: 100%; height: 1px; background: transparent; }
.copyright { color: #9f9996; font-size: 13px; }

/* Responsive */
@media (max-width: 900px) {
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .hours-table tr td:last-child { text-align: center; }
    .visit-list li { justify-content: center; }
}
