/* ==========================================================================
   Pub Piwnica Olecko - Style główne
   Klimat: piwnica z czerwonej cegły, ciepłe światło, przytulna atmosfera
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
    /* Kolory główne - ciepłe, piwnicowe */
    --color-brick: #8B4513;
    --color-brick-dark: #5D2E0C;
    --color-brick-light: #A0522D;

    /* Tła */
    --color-bg-dark: #1a1209;
    --color-bg-medium: #2d1f14;
    --color-bg-card: #3a2a1d;

    /* Akcenty - złoto/bursztyn */
    --color-gold: #c7ad6d;
    --color-gold-light: #d4bc7d;
    --color-gold-dark: #a08040;

    /* Tekst */
    --color-text: #f5f0e6;
    --color-text-muted: #bfb5a3;
    --color-text-dark: #1a1209;

    /* Pozostałe */
    --color-red: #a63d2f;
    --color-success: #4a7c4e;

    /* Typografia */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Raleway', 'Segoe UI', sans-serif;

    /* Rozmiary */
    --container-max: 1200px;
    --header-height: 80px;

    /* Cienie */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);

    /* Przejścia */
    --transition: 0.3s ease;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg-dark);
    background-image:
        linear-gradient(rgba(26, 18, 9, 0.95), rgba(26, 18, 9, 0.95)),
        url('../images/brick-pattern.png');
    background-attachment: fixed;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-gold-light);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-gold);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
}

.btn--golden {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-text-dark);
    border-color: var(--color-gold);
}

.btn--golden:hover {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    color: var(--color-text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn--outline:hover {
    background: var(--color-gold);
    color: var(--color-text-dark);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, rgba(26, 18, 9, 0.95) 100%);
    border-bottom: 1px solid var(--color-brick-dark);
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo img {
    height: 60px;
    width: auto;
}

.header__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.header__menu a {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
}

.header__menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition);
}

.header__menu a:hover::after {
    width: 100%;
}

/* Hamburger */
.header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.header__hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-gold);
    border-radius: 2px;
    transition: all var(--transition);
}

.header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.header__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* --------------------------------------------------------------------------
   Main Content
   -------------------------------------------------------------------------- */
.main {
    padding-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1rem;
    background:
        linear-gradient(rgba(26, 18, 9, 0.7), rgba(26, 18, 9, 0.85)),
        url('../images/hero-bg.jpg') center/cover no-repeat;
}

.hero__content {
    max-width: 800px;
}

.hero__title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Info Bar (delivery, phone)
   -------------------------------------------------------------------------- */
.info-bar {
    background: var(--color-brick-dark);
    padding: 1rem;
    text-align: center;
    border-bottom: 3px solid var(--color-gold-dark);
}

.info-bar__content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-bar__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.info-bar__phone {
    font-size: 1.25rem;
    color: var(--color-gold);
}

/* --------------------------------------------------------------------------
   Section
   -------------------------------------------------------------------------- */
.section {
    padding: 4rem 1rem;
}

.section--dark {
    background: var(--color-bg-medium);
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__title {
    margin-bottom: 0.5rem;
}

.section__subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   Menu Categories Grid
   -------------------------------------------------------------------------- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-brick-dark);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-dark));
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold-dark);
}

.category-card__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.category-card__desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Układ kategorii - strona główna (Pizza + 4 inne) */
.categories-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1.25rem;
    align-items: stretch;
}

.category-featured {
    background: linear-gradient(135deg, rgba(180, 130, 70, 0.1) 0%, rgba(58, 42, 29, 0.9) 100%);
    border: 1px solid var(--color-gold-dark);
    border-radius: 10px;
    padding: 1.25rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-dark));
}

.category-featured:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold);
}

.category-featured__image {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--color-gold-dark);
}

.category-featured__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-featured:hover .category-featured__image img {
    transform: scale(1.05);
}

.category-featured__badge {
    display: inline-block;
    background: var(--color-gold-dark);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    margin-bottom: 0.5rem;
    width: fit-content;
}

.category-featured__title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
}

.category-featured__desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.category-featured__cta {
    color: var(--color-gold);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.category-featured:hover .category-featured__cta {
    letter-spacing: 0.03em;
}

.categories-grid--small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.category-card--small {
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card--small .category-card__title {
    font-size: 1.2rem;
    margin-bottom: 0;
    text-align: center;
}

/* --------------------------------------------------------------------------
   Menu Items
   -------------------------------------------------------------------------- */
.menu-list {
    max-width: 900px;
    margin: 0 auto;
}

.menu-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-brick-dark);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all var(--transition);
}

.menu-item:hover {
    border-color: var(--color-gold-dark);
    box-shadow: var(--shadow-sm);
}

.menu-item__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.menu-item__name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-gold);
}

.menu-item--numbered {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.menu-item__number {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    opacity: 0.6;
    min-width: 2rem;
    text-align: right;
}

.menu-item--numbered .menu-item__header {
    flex: 1;
}

.menu-item__prices {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.menu-item__price {
    background: var(--color-brick-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.menu-item__price-size {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    display: block;
}

.menu-item__desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-style: italic;
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--color-brick-dark);
}

/* --------------------------------------------------------------------------
   Features
   -------------------------------------------------------------------------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature__icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.feature__icon svg {
    width: 48px;
    height: 48px;
    fill: var(--color-golden);
}

/* Features Section */
.features-section {
    background: #2d1810;
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.features-layout__car {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.features-layout__car img {
    width: 100%;
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5));
}

.features-layout__car-text {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-align: center;
}

.features-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.features-section .feature {
    background: rgba(26, 18, 9, 0.85);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--color-brick-dark);
}

@media (max-width: 992px) {
    .features-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-layout__car {
        order: -1;
    }

    .features-layout__car img {
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .features-section .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature__desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   About Hero
   -------------------------------------------------------------------------- */
.about-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: var(--header-height);
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 15, 10, 0.7), rgba(26, 15, 10, 0.85));
}

.about-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.about-hero__content h1 {
    font-size: 3.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.about-hero__content p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
}

.about-text-full {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text-full p {
    margin-bottom: 1.5rem;
}

/* Offers Grid - O nas */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

.offer-card {
    background: rgba(26, 18, 9, 0.6);
    border: 1px solid var(--color-brick-dark);
    border-radius: 8px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.offer-card:hover {
    border-color: var(--color-gold-dark);
    transform: translateY(-3px);
}

.offer-card h3 {
    font-size: 1.1rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.offer-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .offers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .offer-card {
        padding: 1rem 0.75rem;
    }

    .offer-card h3 {
        font-size: 1rem;
    }

    .offer-card p {
        font-size: 0.8rem;
    }
}

/* Virtual Tour Embed */
.virtual-tour-embed {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-brick-dark);
}

.virtual-tour-embed iframe {
    display: block;
}

@media (max-width: 768px) {
    .virtual-tour-embed iframe {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .virtual-tour-embed iframe {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 40vh;
        background-attachment: scroll;
    }

    .about-hero__content h1 {
        font-size: 2.5rem;
    }
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid var(--color-brick-dark);
    min-height: 350px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--color-bg-medium);
    border-top: 3px solid var(--color-brick-dark);
    padding-top: 3rem;
}

.footer__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.footer p {
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
}

.footer__phone a {
    font-size: 1.25rem;
    font-weight: 600;
}

.footer__delivery-info {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-gold) !important;
    margin-bottom: 1rem !important;
}

.footer__bottom {
    border-top: 1px solid var(--color-brick-dark);
    padding: 1.5rem;
    text-align: center;
}

.footer__bottom p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   404 Page
   -------------------------------------------------------------------------- */
.error-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.error-page h1 {
    font-size: 6rem;
    margin-bottom: 1rem;
}

.error-page p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Responsive - Tablet
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }
}

/* --------------------------------------------------------------------------
   Responsive - Mobile
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .header__logo img {
        height: 45px;
        width: auto;
    }

    .header__hamburger {
        display: flex;
        margin-left: 1rem;
    }

    .header__nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-bg-dark);
        border-bottom: 1px solid var(--color-brick-dark);
        padding: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .header__nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header__menu {
        flex-direction: column;
        gap: 0;
    }

    .header__menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--color-brick-dark);
    }

    .header__menu li:last-child a {
        border-bottom: none;
    }

    .hero {
        min-height: 60vh;
        padding: 3rem 1rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__cta {
        flex-direction: column;
        align-items: center;
    }

    .info-bar__content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .menu-item__header {
        flex-direction: column;
    }

    .menu-item__prices {
        width: 100%;
        justify-content: flex-start;
    }

    .menu-item__number {
        font-size: 2rem;
        min-width: 1.5rem;
    }

    .footer__container {
        text-align: center;
    }

    .categories-layout {
        grid-template-columns: 1fr;
    }

    .category-featured__image {
        width: 150px;
        height: 150px;
    }

    .categories-grid--small {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card--small {
        padding: 1.25rem 0.75rem;
    }

    .category-card--small .category-card__title {
        font-size: 1.1rem;
    }

    .menu-categories-layout {
        grid-template-columns: 1fr;
    }

    .menu-category-featured__image {
        height: 140px;
    }

    .menu-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --------------------------------------------------------------------------
   Responsive - Small Mobile
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .header__logo img {
        height: 38px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-featured {
        padding: 1rem;
        gap: 1rem;
    }

    .category-featured__image {
        width: 120px;
        height: 120px;
    }

    .category-featured__title {
        font-size: 1.2rem;
    }

    .categories-grid--small {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .category-card--small {
        padding: 1rem 0.5rem;
    }

    .category-card--small .category-card__title {
        font-size: 1rem;
    }

    .menu-category-featured {
        padding: 1rem;
    }

    .menu-category-featured__image {
        height: 100px;
    }

    .menu-category-featured__content h3 {
        font-size: 1.1rem;
    }

    .menu-categories-grid {
        gap: 0.75rem;
    }

    .menu-category-card--grid {
        padding: 0.85rem;
    }

    .menu-category-card--grid__image {
        width: 50px;
        height: 50px;
    }

    .menu-category-card--grid h3 {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 360px) {
    .categories-grid--small {
        grid-template-columns: 1fr;
    }

    .menu-categories-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid var(--color-brick-dark);
    cursor: pointer;
    transition: all var(--transition);
}

.gallery-item:hover {
    border-color: var(--color-gold);
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 18, 9, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__overlay span {
    color: var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__content {
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox__content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: rgba(199, 173, 109, 0.2);
    border: none;
    color: var(--color-gold);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all var(--transition);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background: var(--color-gold);
    color: var(--color-text-dark);
}

.lightbox__close {
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    padding: 0 0.75rem;
}

.lightbox__prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Virtual Tour Banner */
.virtual-tour-banner {
    background: linear-gradient(135deg, var(--color-brick-dark), var(--color-bg-card));
    border: 2px solid var(--color-gold-dark);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.virtual-tour-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.virtual-tour-banner__text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.virtual-tour-banner__text p {
    color: var(--color-text-muted);
    margin: 0;
}

/* Gallery preview on homepage */
.gallery-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-preview .gallery-item {
    aspect-ratio: 1;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-preview {
        grid-template-columns: repeat(2, 1fr);
    }

    .virtual-tour-banner__content {
        flex-direction: column;
        text-align: center;
    }

    .lightbox__prev,
    .lightbox__next {
        top: auto;
        bottom: 4rem;
        transform: none;
    }

    .lightbox__prev {
        left: 2rem;
    }

    .lightbox__next {
        right: 2rem;
    }
}

/* --------------------------------------------------------------------------
   Menu Page - Hero
   -------------------------------------------------------------------------- */
.menu-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../uploads/galeria/7.jpg') center/cover no-repeat;
}

.menu-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 18, 9, 0.8) 0%,
        rgba(26, 18, 9, 0.9) 100%
    );
}

.menu-hero__content {
    position: relative;
    z-index: 1;
    padding: 3rem 1rem;
}

.menu-hero__content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.menu-hero__content > p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.menu-hero__info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 1.1rem;
}

.menu-hero__divider {
    color: var(--color-gold-dark);
}

.menu-hero__phone {
    font-weight: 700;
    font-size: 1.3rem;
}

/* --------------------------------------------------------------------------
   Menu Categories - Cards
   -------------------------------------------------------------------------- */
.menu-categories-section {
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-category-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--color-bg-card) 0%, rgba(58, 42, 29, 0.8) 100%);
    border: 1px solid var(--color-brick-dark);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.menu-category-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--color-gold), var(--color-gold-dark));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.menu-category-card:hover {
    border-color: var(--color-gold-dark);
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.menu-category-card:hover::before {
    transform: scaleY(1);
}

.menu-category-card__image {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--color-gold-dark);
}

.menu-category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-category-card:hover .menu-category-card__image img {
    transform: scale(1.1);
}

.menu-category-card__content {
    flex: 1;
}

.menu-category-card__content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.menu-category-card:hover .menu-category-card__content h3 {
    color: var(--color-gold);
}

.menu-category-card__content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.4;
}

.menu-category-card__arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-dark);
    transition: all 0.3s ease;
}

.menu-category-card__arrow svg {
    width: 24px;
    height: 24px;
}

.menu-category-card:hover .menu-category-card__arrow {
    color: var(--color-gold);
    transform: translateX(4px);
}

/* Układ kategorii menu - Pizza + 4 inne */
.menu-categories-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
}

.menu-category-featured {
    background: linear-gradient(135deg, rgba(180, 130, 70, 0.1) 0%, rgba(58, 42, 29, 0.95) 100%);
    border: 1px solid var(--color-gold-dark);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.menu-category-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-dark));
}

.menu-category-featured:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold);
}

.menu-category-featured__image {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 2px solid var(--color-gold-dark);
}

.menu-category-featured__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.menu-category-featured:hover .menu-category-featured__image img {
    transform: scale(1.05);
}

.menu-category-featured__badge {
    display: inline-block;
    width: fit-content;
    background: var(--color-gold-dark);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    margin-bottom: 0.35rem;
}

.menu-category-featured__content h3 {
    font-size: 1.3rem;
    color: var(--color-gold);
    margin-bottom: 0.35rem;
}

.menu-category-featured__content p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0 0 0.75rem 0;
}

.menu-category-featured__cta {
    color: var(--color-gold);
    font-weight: 500;
    font-size: 0.9rem;
}

.menu-categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.menu-category-card--grid {
    background: var(--color-bg-card);
    border: 1px solid var(--color-brick-dark);
    border-radius: 10px;
    padding: 1rem;
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.menu-category-card--grid:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold-dark);
}

.menu-category-card--grid__image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    border: 2px solid var(--color-gold-dark);
}

.menu-category-card--grid__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-category-card--grid h3 {
    font-size: 1.1rem;
    color: var(--color-text);
    margin: 0;
    transition: color 0.3s ease;
}

.menu-category-card--grid:hover h3 {
    color: var(--color-gold);
}

/* --------------------------------------------------------------------------
   Menu Featured Section
   -------------------------------------------------------------------------- */
.menu-featured__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.menu-featured__badge {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-text-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.menu-featured__text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.menu-featured__text p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.menu-featured__image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.menu-featured__image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid var(--color-gold-dark);
    border-radius: 16px;
    pointer-events: none;
}

.menu-featured__image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-featured__image:hover img {
    transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   Menu Category Page - Items
   -------------------------------------------------------------------------- */
.menu-category-header {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-brick-dark);
    margin-bottom: 2rem;
}

.menu-category-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.menu-category-nav a {
    padding: 0.5rem 1rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-brick-dark);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.menu-category-nav a:hover,
.menu-category-nav a.active {
    background: var(--color-gold);
    color: var(--color-text-dark);
    border-color: var(--color-gold);
}

/* Enhanced menu item */
.menu-item {
    background: linear-gradient(135deg, var(--color-bg-card) 0%, rgba(45, 31, 20, 0.9) 100%);
    border: 1px solid var(--color-brick-dark);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--color-gold);
    border-radius: 0 4px 4px 0;
    transition: height 0.3s ease;
}

.menu-item:hover {
    border-color: var(--color-gold-dark);
    box-shadow: var(--shadow-md);
}

.menu-item:hover::before {
    height: 60%;
}

.menu-item__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
}

.menu-item__name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-gold);
    line-height: 1.3;
}

.menu-item__prices {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.menu-item__price {
    background: linear-gradient(135deg, var(--color-brick-dark) 0%, var(--color-bg-dark) 100%);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    min-width: 70px;
    border: 1px solid rgba(199, 173, 109, 0.2);
}

.menu-item__price-size {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    display: block;
    font-weight: 400;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-item__desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Responsive - Menu
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .menu-featured__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .menu-featured__image {
        order: -1;
    }

    .menu-featured__text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .menu-hero__content h1 {
        font-size: 2.5rem;
    }

    .menu-categories {
        grid-template-columns: 1fr;
    }

    .menu-category-card {
        padding: 1.25rem;
    }

    .menu-category-card__image {
        width: 56px;
        height: 56px;
    }

    .menu-item__header {
        flex-direction: column;
        gap: 1rem;
    }

    .menu-item__prices {
        width: 100%;
    }

    .menu-item__price {
        flex: 1;
    }
}

/* --------------------------------------------------------------------------
   Menu Category Header with Icon
   -------------------------------------------------------------------------- */
.menu-category-header {
    text-align: center;
    padding: 2rem 0 1.5rem;
    border-bottom: 1px solid var(--color-brick-dark);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.menu-category-header--with-bg {
    padding: 4rem 2rem;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    border: none;
}

.menu-category-header__overlay {
    display: none;
}

.menu-category-header--with-bg .menu-category-header__overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(26, 18, 9, 0.7) 0%,
        rgba(26, 18, 9, 0.85) 100%
    );
}

.menu-category-header__content {
    position: relative;
    z-index: 1;
}

.menu-category-header--with-bg h1 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.menu-category-header--with-bg p {
    color: var(--color-text);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.menu-category-header__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: 20px;
    color: var(--color-text-dark);
    box-shadow: var(--shadow-md);
}

.menu-category-header__icon svg {
    width: 40px;
    height: 40px;
}

.menu-category-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.menu-category-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.menu-item__info {
    flex: 1;
}

.menu-item__desc--en {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .menu-category-header__icon {
        width: 64px;
        height: 64px;
    }

    .menu-category-header__icon svg {
        width: 32px;
        height: 32px;
    }

    .menu-category-header h1 {
        font-size: 1.75rem;
    }
}

/* --------------------------------------------------------------------------
   Menu Item with Image
   -------------------------------------------------------------------------- */
.menu-item--with-image {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.menu-item__image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--color-brick-dark);
    position: relative;
}

.menu-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item__image-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.menu-item__image-link:hover img {
    transform: scale(1.1);
}

.menu-item__image-link:hover .menu-item__image-zoom {
    opacity: 1;
}

.menu-item__image-zoom {
    position: absolute;
    inset: 0;
    background: rgba(26, 18, 9, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.menu-item--with-image .menu-item__header {
    flex: 1;
    margin-bottom: 0;
}

/* Responsive - Menu Item with Image */
@media (max-width: 768px) {
    .menu-item--with-image {
        flex-direction: column;
        gap: 1rem;
    }

    .menu-item__image {
        width: 80px;
        height: 80px;
    }

    .menu-item--with-image .menu-item__header {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .menu-item__image {
        width: 70px;
        height: 70px;
    }
}
