/* ============================================================
   menu.css — Stilet për menunë dixhitale të QR Code
   Bar Restorant Trojet
   ============================================================ */

:root {
    --burg: #722F37;
    --burg-light: #9B3F4A;
    --burg-pale: #F3E8E9;
    --bg: #FAF7F2;
    --bg-card: #FFFFFF;
    --bg-featured: #FDF6ED;
    --text: #1C1610;
    --text-muted: #7A6E68;
    --border: #E5DDD4;
    --divider: rgba(114, 47, 55, 0.18);
    --shadow: rgba(28, 22, 16, 0.08);
    --topbar-h: 52px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { overflow-x: hidden; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
}

/* ── BILINGUAL ── */
.en { display: none; }
body.lang-en .sq { display: none; }
body.lang-en .en { display: block; }
body.lang-en .en-inline { display: inline; }
.en-inline { display: none; }
body.lang-en .sq-inline { display: none; }
.sq-inline { display: inline; }

/* ── TOP BAR ── */
.top-bar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    height: var(--topbar-h);
    background: rgba(250, 247, 242, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
}

.top-logo {
    display: flex;
    align-items: center;
    gap: 9px;
}

.top-logo img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.top-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--burg);
    letter-spacing: 3px;
    font-weight: 700;
}

.lang-btn {
    background: none;
    border: 1.5px solid var(--burg);
    color: var(--burg);
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 5px 13px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
}

.lang-btn:hover {
    background: var(--burg);
    color: #fff;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-toggle {
    display: flex;
    border: 1.5px solid var(--burg);
    border-radius: 20px;
    overflow: hidden;
}

.view-btn {
    background: none;
    border: none;
    color: var(--burg);
    padding: 5px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, color 0.18s;
}

.view-btn.active {
    background: var(--burg);
    color: #fff;
}

.view-btn:not(.active):hover {
    background: var(--burg-pale);
}

.share-btn {
    background: none;
    border: 1.5px solid var(--burg);
    color: var(--burg);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, color 0.18s;
    flex-shrink: 0;
}

.share-btn:hover {
    background: var(--burg);
    color: #fff;
}

.share-btn svg {
    display: block;
}

/* ── HERO ── */
.hero {
    margin-top: var(--topbar-h);
    padding: 56px 24px 44px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, #FDF8F3 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(114,47,55,0.07) 0%, transparent 60%);
    pointer-events: none;
}

.hero-logo {
    width: 62px;
    height: auto;
    object-fit: contain;
    margin-bottom: 16px;
    opacity: 0.9;
}

.hero-label {
    font-size: 0.68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--burg);
    margin-bottom: 10px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 3.8rem);
    font-weight: 400;
    letter-spacing: 6px;
    color: var(--text);
    margin-bottom: 16px;
}

.hero-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.hero-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
}

.hero-ornament::before, .hero-ornament::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--divider);
}

.hero-ornament span { color: var(--burg); font-size: 0.9rem; }

/* ── CATEGORY NAV ── */
.cat-nav {
    position: sticky;
    top: var(--topbar-h);
    z-index: 50;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
    box-shadow: 0 2px 8px var(--shadow);
}

.cat-nav::-webkit-scrollbar { display: none; }

.cat-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 22px;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.cat-btn:hover { color: var(--burg-light); }
.cat-btn.active { color: var(--burg); border-bottom-color: var(--burg); font-weight: 700; }

/* ── MAIN ── */
main { max-width: 1020px; margin: 0 auto; padding: 0 24px 100px; }

/* ── SECTION ── */
.menu-section { margin-top: 64px; }

.section-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 22px;
}

.section-header::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--divider);
    margin-top: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--burg);
    white-space: nowrap;
}

.section-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 3px;
}

/* ── SECTION BANNER ── */
.section-banner {
    display: grid;
    grid-template-columns: 55% 45%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    min-height: 220px;
    margin-bottom: 40px;
    box-shadow: 0 4px 16px var(--shadow);
}

.banner-img-wrap {
    background: linear-gradient(135deg, #E8DDD0 0%, #D5C9BC 100%);
    overflow: hidden;
    height: 220px;
}

.banner-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-text {
    background: var(--bg-featured);
    padding: 26px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--border);
}

.banner-brand {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--burg);
    margin-bottom: 6px;
}

.banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 12px;
}

.banner-title span {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}
.banner-title .en-inline { display: none; }
body.lang-en .banner-title .sq-inline { display: none; }
body.lang-en .banner-title .en-inline { display: block; }

.banner-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.65;
    border-top: 1px solid var(--divider);
    padding-top: 10px;
}

/* ── PHOTO GRID ── */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.photo-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
    box-shadow: 0 2px 8px var(--shadow);
}

.photo-card:hover {
    border-color: rgba(114, 47, 55, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(28, 22, 16, 0.12);
}

.photo-card--featured {
    grid-column: span 2;
}

.photo-card--featured .photo-wrap {
    height: 240px;
}

.photo-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #EDE5D8 0%, #DDD3C6 100%);
}

.photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s;
}

.photo-card:hover .photo-wrap img {
    transform: scale(1.06);
}

.photo-info {
    padding: 12px 14px 16px;
}

.photo-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.photo-desc {
    font-size: 0.73rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 3px;
    line-height: 1.5;
}

.photo-price {
    display: inline-block;
    margin-top: 9px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--burg);
}

/* ── LIST VIEW ── */
.photo-grid.list-view {
    grid-template-columns: 1fr;
    gap: 10px;
}

.photo-grid.list-view .photo-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    min-height: 100px;
}

.photo-grid.list-view .photo-card--featured {
    grid-column: 1;
}

.photo-grid.list-view .photo-wrap {
    height: 100%;
    min-height: 100px;
    border-radius: 0;
}

.photo-grid.list-view .photo-info {
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.photo-grid.list-view .photo-name {
    font-size: 1rem;
}

.photo-grid.list-view .photo-desc {
    font-size: 0.8rem;
    margin-top: 4px;
}

.photo-grid.list-view .photo-price {
    margin-top: 8px;
    font-size: 0.95rem;
}

/* ── CUSTOM ORDER CARD ── */
.custom-order-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin: 48px 16px 0;
    padding: 22px 24px;
    background: var(--bg-featured);
    border: 1.5px solid var(--divider);
    border-left: 4px solid var(--burg);
    border-radius: 12px;
}

.custom-order-icon {
    color: var(--burg);
    flex-shrink: 0;
    margin-top: 2px;
}

.custom-order-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.custom-order-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--burg);
    font-weight: 600;
}

.custom-order-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.custom-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 4px;
    background: var(--burg);
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 20px;
    width: fit-content;
    transition: background 0.18s;
}

.custom-order-btn:hover {
    background: var(--burg-light);
}

/* ── CALL TO ACTION ── */
.cta-section {
    background: linear-gradient(135deg, var(--burg) 0%, #5a2028 100%);
    margin-top: 80px;
    padding: 64px 24px;
    text-align: center;
}

.cta-inner {
    max-width: 560px;
    margin: 0 auto;
}

.cta-label {
    font-size: 0.68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 36px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 30px;
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.cta-btn--primary {
    background: #fff;
    color: var(--burg);
}

.cta-btn--primary:hover {
    background: var(--burg-pale);
}

.cta-btn--secondary {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.6);
}

.cta-btn--secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* ── FOOTER ── */
footer {
    text-align: center;
    margin-top: 80px;
    padding-top: 44px;
    border-top: 2px solid var(--burg-pale);
    background: var(--bg-featured);
}

.footer-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.footer-logo-wrap img { height: 52px; width: auto; }

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--burg);
    letter-spacing: 5px;
    font-weight: 700;
}

.footer-map {
    width: 100%;
    max-width: 720px;
    margin: 0 auto 32px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px var(--shadow);
}

.footer-map iframe {
    width: 100%;
    height: 240px;
    display: block;
    border: 0;
}

.footer-tagline {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 26px;
}

.contact-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
}

.contact-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover { color: var(--burg); }

.contact-icon {
    width: 30px;
    height: 30px;
    border: 1px solid var(--burg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--burg);
    flex-shrink: 0;
}

.footer-copy {
    font-size: 0.7rem;
    color: #AFA8A2;
    letter-spacing: 1px;
    padding: 18px 0 32px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .section-banner { grid-template-columns: 1fr; }
    .banner-img-wrap { min-height: 180px; height: 180px; }
    .banner-text { border-left: none; border-top: 1px solid var(--border); }
    .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .photo-wrap { height: auto; aspect-ratio: 4 / 3; }
    .contact-grid { gap: 18px; }
}

@media (max-width: 560px) {
    .top-bar { padding: 0 14px; }
    .top-logo-text { font-size: 0.88rem; letter-spacing: 2px; }
    .hero { padding: 44px 16px 34px; }
    main { padding: 0 12px 60px; }
    .cat-btn { padding: 14px 10px; font-size: 0.64rem; letter-spacing: 1px; }
    .banner-text { padding: 16px; }
    .banner-brand { font-size: 0.9rem; }
    .banner-title { font-size: 1rem; }
    .banner-desc { font-size: 0.75rem; }
    .section-title { font-size: 1.2rem; }
    .cta-section { padding: 44px 16px; }

    /* ── Footer mobile ── */
    footer {
        margin-top: 60px;
        padding: 28px 20px 0;
    }
    .footer-logo-wrap img { height: 42px; }
    .footer-logo { font-size: 1.2rem; letter-spacing: 3px; }
    .footer-tagline { font-size: 0.78rem; margin-bottom: 20px; }
    .footer-map {
        border-radius: 10px;
        margin-bottom: 24px;
    }
    .footer-map iframe { height: 190px; }
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px 12px;
        margin-bottom: 20px;
        padding: 0 4px;
    }
    .contact-item {
        font-size: 0.74rem;
        gap: 7px;
        justify-content: flex-start;
    }
    .contact-item span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        min-width: 0;
    }
    .contact-icon { width: 28px; height: 28px; }
    .footer-copy { font-size: 0.62rem; letter-spacing: 0.5px; padding: 12px 0 22px; }
}

@media (max-width: 400px) {
    .photo-grid { grid-template-columns: 1fr; }
    .photo-wrap { height: auto; aspect-ratio: 4 / 3; }
    .top-logo-text { display: none; }
    .photo-grid.list-view .photo-card { grid-template-columns: 90px 1fr; }
    .photo-grid.list-view .photo-wrap { min-height: 90px; }
}