:root {
            --bg-canvas: #0E0C0C;
            /* Cinematic AMC deep dark canvas */
            --bg-card: #181414;
            /* Carbon dark box background */
            --bg-light: #FAF6EE;
            /* Light cream section transition */
            --text-silver: #E5E5E5;
            /* Brushed metallic silver text */
            --text-ink: #1C1613;
            /* Deep dark ink for light section */
            --text-muted: #9C9390;
            /* Earthy brown-gray for dark sections */
            --text-muted-light: #5E534E;
            /* Earthy brown-gray for light sections */
            --accent-burgundy: #B82432;
            /* Rich passion burgundy red */
            --accent-burgundy-hover: #931924;
            /* Deeper burgundy red */
            --border-hairline: #2C2020;
            /* Precise dark steel hairline line */
            --border-hairline-light: #E8DCC2;
            /* Soft warm golden line */
            --radius-ui: 2px;
            /* Sleek rectangular professional edges */
            --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Papierová textúra pre vintage butikový vzhľad */
        body::after {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            opacity: 0.03;
            pointer-events: none;
            z-index: 9999;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
        }

        body {
            background-color: var(--bg-canvas);
            color: var(--text-silver);
            font-family: 'Plus Jakarta Sans', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 4%;
        }

        /* Typografia */
        h1,
        h2,
        h3,
        .amc-font {
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 0.05em;
            line-height: 1.05;
        }

        h1 {
            font-size: clamp(2.5rem, 6.5vw, 5.2rem);
            margin-bottom: 1.5rem;
        }

        h1 i,
        h2 i,
        h3 i {
            font-style: normal;
            font-weight: 500;
            color: var(--accent-burgundy);
        }

        h2 {
            font-size: clamp(1.8rem, 4.5vw, 2.8rem);
            line-height: 1.15;
            margin-bottom: 1.5rem;
        }

        .section-eyebrow {
            display: block;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            color: var(--accent-burgundy);
            margin-bottom: 1rem;
        }

        /* Navigácia */
        .site-nav {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            padding: 2.5rem 0;
            border-bottom: 1px solid var(--border-hairline);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-brand {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-silver);
            text-decoration: none;
            letter-spacing: 0.1em;
        }

        .nav-brand span {
            color: var(--accent-burgundy);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
        }

        .nav-links a {
            color: var(--text-silver);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: var(--transition-smooth);
            position: relative;
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--accent-burgundy);
            transition: var(--transition-smooth);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--accent-burgundy);
        }

        .nav-cta {
            font-family: 'Oswald', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--accent-burgundy);
            text-decoration: none;
            border: 1px solid var(--accent-burgundy);
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius-ui);
            background-color: transparent;
            transition: var(--transition-smooth);
        }

        .nav-cta:hover {
            background-color: var(--accent-burgundy);
            color: #0E0C0C;
        }

        /* Tlačidlá */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-family: 'Oswald', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-decoration: none;
            padding: 1.1rem 2.2rem;
            border-radius: var(--radius-ui);
            transition: var(--transition-smooth);
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--accent-burgundy);
            color: #FFFFFF;
            border: 1px solid var(--accent-burgundy);
        }

        .btn-primary:hover {
            background-color: var(--accent-burgundy-hover);
            border-color: var(--accent-burgundy-hover);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--text-silver);
            border: 1px solid var(--border-hairline);
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.02);
            border-color: var(--text-silver);
            transform: translateY(-2px);
        }

        /* Hero sekcia */
        .hero {
            position: relative;
            padding: 13rem 0 8rem;
            border-bottom: 1px solid var(--border-hairline);
            background-image: linear-gradient(to bottom, rgba(14, 12, 12, 0.8), rgba(14, 12, 12, 0.95)), url('img/hero-bg.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .hero-content {
            max-width: 580px;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
            line-height: 1.65;
        }

        .hero-actions {
            display: flex;
            gap: 1.5rem;
        }

        .hero-media {
            position: relative;
            width: 100%;
        }

        .media-frame {
            width: 100%;
            aspect-ratio: 16/11;
            border-radius: var(--radius-ui);
            overflow: hidden;
            border: 1px solid var(--border-hairline);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
        }

        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.03);
            transition: var(--transition-smooth);
            filter: brightness(0.8) contrast(1.1);
        }

        .hero:hover .hero-img {
            transform: scale(1);
        }

        /* Stats Banner */
        .stats-banner {
            padding: 3.5rem 0;
            background-color: var(--bg-card);
            border-bottom: 1px solid var(--border-hairline);
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }

        .stats-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            border-right: 1px solid var(--border-hairline);
        }

        .stats-item:last-child {
            border-right: none;
        }

        .stats-num {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-red);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stats-label {
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--text-muted);
        }

        /* O nás sekcia (Light/Paper Section Rhythm) */
        .about {
            padding: 8rem 0;
            border-bottom: 1px solid var(--border-hairline);
            background-color: var(--bg-light);
            color: var(--text-ink);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 6rem;
            align-items: center;
        }

        .about-image {
            position: relative;
            border-radius: var(--radius-ui);
            overflow: hidden;
            border: 1px solid var(--border-hairline);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            aspect-ratio: 16/11;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.85);
        }

        .about-content {
            max-width: 600px;
        }

        .about-text {
            font-size: 1.05rem;
            color: var(--text-muted-light);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        /* Naša ponuka - Dotted Line Editorial Menu list (Extremely clean & high vibe) */
        .menu-list-section {
            padding: 8rem 0;
            border-bottom: 1px solid var(--border-hairline);
            background-color: var(--bg-card);
        }

        .menu-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 5rem;
        }

        .menu-lead {
            font-size: 1.1rem;
            color: var(--text-muted);
        }

        .menu-container {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .menu-item {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .menu-item-top {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: 1.5rem;
        }

        .menu-item-title {
            font-family: 'Oswald', sans-serif;
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--text-silver);
            letter-spacing: 0.05em;
        }

        .menu-item-spacer {
            flex-grow: 1;
            border-bottom: 1px dotted var(--border-hairline);
        }

        .menu-item-price {
            font-family: 'Oswald', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent-burgundy);
        }

        .menu-item-desc {
            font-size: 0.9rem;
            color: var(--text-muted);
            max-width: 650px;
        }

        /* Catering & Spoločenská sála */
        .catering {
            padding: 8rem 0;
            border-bottom: 1px solid var(--border-hairline);
            background-color: var(--bg-light);
            color: var(--text-ink);
        }

        .catering-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .catering-photos {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .catering-img-wrapper {
            border-radius: var(--radius-ui);
            overflow: hidden;
            border: 1px solid var(--border-hairline);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            aspect-ratio: 1/1;
        }

        .catering-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
            filter: brightness(0.85);
        }

        .catering-img-wrapper:hover img {
            transform: scale(1.05);
        }

        /* Kontakt & Otváracie Hodiny */
        .contact {
            padding: 8rem 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 5rem;
            align-items: stretch;
        }

        .contact-card {
            background-color: var(--bg-card);
            border: 1px solid var(--border-hairline);
            padding: 4.5rem 3.5rem;
            border-radius: var(--radius-ui);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-details {
            margin-top: 3rem;
        }

        .contact-row {
            margin-bottom: 2rem;
            border-bottom: 1px solid var(--border-hairline);
            padding-bottom: 1.5rem;
        }

        .contact-row:last-child {
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 0;
        }

        .contact-label {
            display: block;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--accent-burgundy);
            margin-bottom: 0.5rem;
        }

        .contact-value {
            font-size: 1.05rem;
            color: var(--text-silver);
            line-height: 1.5;
        }

        a.contact-value {
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        a.contact-value:hover {
            color: var(--accent-burgundy);
        }

        a.contact-value.highlight {
            font-family: 'Oswald', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--accent-burgundy);
            letter-spacing: 0.05em;
        }

        /* Mapa panel */
        .map-wrapper {
            position: relative;
            border-radius: var(--radius-ui);
            overflow: hidden;
            border: 1px solid var(--border-hairline);
            min-height: 500px;
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
        }

        .map-overlay {
            position: absolute;
            bottom: 2rem;
            left: 2rem;
            right: 2rem;
            background-color: rgba(14, 12, 12, 0.96);
            backdrop-filter: blur(5px);
            border: 1px solid var(--border-hairline);
            padding: 2rem;
            border-radius: var(--radius-ui);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            z-index: 10;
        }

        .map-overlay h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .map-overlay p {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .map-link-btn {
            display: inline-block;
            background-color: var(--accent-burgundy);
            color: #0E0C0C;
            text-decoration: none;
            padding: 0.75rem 1.5rem;
            font-size: 0.75rem;
            font-weight: 700;
            border-radius: var(--radius-ui);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: var(--transition-smooth);
        }

        .map-link-btn:hover {
            background-color: #FFFFFF;
            transform: translateY(-2px);
        }

        /* Pätička */
        .site-footer {
            background-color: #0B0909;
            color: rgba(255, 255, 255, 0.5);
            padding: 6rem 0 4rem;
            border-top: 1px solid var(--border-hairline);
            font-size: 0.85rem;
        }

        .footer-top {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding-bottom: 3rem;
            margin-bottom: 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-logo {
            font-size: 1.5rem;
            color: #FFFFFF;
        }

        .footer-tagline {
            font-size: 0.95rem;
            font-family: 'Oswald', sans-serif;
            font-style: italic;
            color: rgba(255, 255, 255, 0.3);
            max-width: 400px;
            letter-spacing: 0.05em;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-legal p {
            color: rgba(255, 255, 255, 0.3);
        }

        .footer-medweb a {
            color: #FFFFFF;
            text-decoration: none;
            transition: var(--transition-smooth);
            font-weight: 500;
        }

        .footer-medweb a:hover {
            color: var(--accent-burgundy);
        }

        /* Adaptívny dizajn pre mobil */
        @media (max-width: 992px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 5rem;
                text-align: center;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-actions {
                justify-content: center;
            }

            .hero-media {
                max-width: 500px;
                margin: 0 auto;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .stats-item {
                border-right: none;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 5rem;
                text-align: center;
            }

            .about-content {
                max-width: 100%;
            }

            .about-image {
                max-width: 500px;
                margin: 0 auto;
            }

            .catering-grid {
                grid-template-columns: 1fr;
                gap: 5rem;
                text-align: center;
            }

            .catering-photos {
                max-width: 500px;
                margin: 0 auto;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 5rem;
            }

            .footer-top {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .site-nav {
                padding: 1.5rem 0;
            }

            .hero {
                padding-top: 9rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-card {
                padding: 3rem 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }
        }
/* =======================================================
   Sekcia Čo ponúkame (Our Offer)
   ======================================================= */
.offers-section {
    padding: 8rem 0;
    background-color: var(--bg-light);
    color: var(--text-ink);
    border-bottom: 1px solid var(--border-hairline-light);
    position: relative;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.offers-lead {
    font-size: 1.1rem;
    color: var(--text-muted-light);
    margin-top: 1rem;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.offer-card {
    background-color: #FFFFFF;
    border: 1px solid var(--border-hairline-light);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-ui);
    box-shadow: 0 5px 15px rgba(34, 30, 28, 0.02);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(156, 127, 96, 0.08);
    border-color: var(--accent-burgundy);
}

.offer-icon {
    color: var(--accent-burgundy);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(184, 36, 50, 0.05);
    border-radius: 4px;
}

.offer-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--text-ink);
}

.offer-card p {
    font-size: 0.9rem;
    color: var(--text-muted-light);
    line-height: 1.6;
}

/* Podstránka História Levoče */
.history-section {
    padding: 12rem 0 8rem;
    background-color: var(--bg-light);
    color: var(--text-ink);
    border-bottom: 1px solid var(--border-hairline-light);
}

.history-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: start;
}

.history-text {
    font-size: 1.05rem;
    color: var(--text-muted-light);
    line-height: 1.8;
}

.history-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.history-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.history-gallery-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: var(--radius-ui);
    border: 1px solid var(--border-hairline-light);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

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

.history-gallery-item:hover {
    transform: scale(1.04);
    border-color: var(--accent-burgundy);
    box-shadow: 0 10px 20px rgba(156, 127, 96, 0.15);
}

.history-gallery-item:hover img {
    filter: brightness(1.05);
}

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

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

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