/* Campari Bistro – minimalistické a teplé (vlastná duša) */

:root {
    --gold: #C9A227;
    --gold-dark: #B8921F;
    --black: #0a0a0a;
    --black-soft: #1a1a1a;
    --white: #FFFFFF;
    --grey: #666666;
    --border: rgba(0, 0, 0, 0.08);
    --shadow-soft: 0 2px 20px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

body.page-index main {
    padding-top: 0;
}

main > section + section {
    margin-top: 4rem;
}

/* ========== HEADER – čistý, minimalistický ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 24px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-text {
    color: var(--black);
    font-size: 1.15rem;
    font-weight: 600;
    font-family: Inter, sans-serif;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.logo-image {
    height: 56px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

.nav-dropdown-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 0.25rem 0.4rem;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
}

.nav-link {
    display: inline-block;
    padding: 0.45rem 0.6rem;
    text-decoration: none;
    color: var(--black-soft);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: Inter, sans-serif;
    letter-spacing: 0.02em;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--black);
    background: rgba(0, 0, 0, 0.04);
}

.nav-link.active {
    color: var(--black);
    font-weight: 600;
}

.nav-social {
    display: flex;
    gap: 0.25rem;
    margin-left: 0.5rem;
}
.nav-link-icon {
    padding: 0.4rem 0.5rem;
}
.nav-link-icon i {
    font-size: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #000;
    margin: 0 auto;
}

/* ========== HERO (celá výška, overlay, obsah) ========== */
.hero {
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(74, 58, 42, 0.35) 0%, rgba(45, 74, 51, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 640px;
    margin: 0 auto;
    padding: 3rem 24px 4rem;
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    margin-bottom: 1rem;
}

.hero-logo h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    font-family: Georgia, serif;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.02em;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0 0 0.75rem;
    font-weight: 400;
}

.hero-opening {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    margin: 0 0 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background-color: var(--gold);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: Inter, sans-serif;
    letter-spacing: 0.02em;
    transition: background 0.25s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: var(--gold-dark);
    transform: translateY(-1px);
    text-decoration: none;
}

/* ========== O NÁS – priestranné, teplé ========== */
.about {
    padding: 5rem 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 2.5rem;
    font-family: Georgia, serif;
    letter-spacing: 0.01em;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

.about-text p.about-intro {
    margin-bottom: 0;
    color: var(--black-soft);
    line-height: 1.75;
    font-size: 1.05rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

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

.feature {
    padding: 1.75rem 1.25rem;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: box-shadow 0.25s ease;
}

.feature:hover {
    box-shadow: var(--shadow-card);
}

.feature i {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 0.75rem;
    display: block;
    opacity: 0.85;
}

.feature h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.35rem;
    font-family: Georgia, serif;
}

.feature p {
    font-size: 0.9rem;
    color: var(--grey);
    margin: 0;
    line-height: 1.5;
}

.about-image {
    position: sticky;
    top: 6rem;
}

.about-image-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
}

/* ========== FOTOGALÉRIA – jemné karty ========== */
.nearby {
    padding: 5rem 0;
    background-color: var(--white);
}

.nearby-intro {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    color: var(--grey);
    font-size: 1rem;
    line-height: 1.6;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .nearby-grid {
        grid-template-columns: 1fr;
    }
}

.nearby-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.25s ease;
}

.nearby-item:hover {
    box-shadow: var(--shadow-card);
}

.nearby-image {
    overflow: hidden;
}

.nearby-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.nearby-item:hover .nearby-image img {
    transform: scale(1.03);
}

.nearby-content {
    padding: 1.25rem;
}

.nearby-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-family: Georgia, serif;
}

.nearby-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.nearby-link:hover {
    color: var(--grey);
}

.nearby-link i {
    font-size: 0.8rem;
}

/* ========== FOOTER ========== */
.footer {
    padding: 2rem 24px;
    background: var(--white);
    color: var(--black-soft);
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer a {
    color: var(--black);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .container p {
    margin: 0;
    font-size: 0.95rem;
}
.footer-main {
    margin-bottom: 0.5rem;
}
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    transition: background 0.2s ease;
}
.footer-social a:hover {
    background: rgba(0, 0, 0, 0.12);
    text-decoration: none;
}
.footer-social i {
    font-size: 1rem;
}

/* ========== VŠETKY PODSTRÁNKY – jednotný dizajn ========== */
body:not(.page-index) main {
    padding-top: 5.5rem;
}

.page-section {
    padding: 3rem 0 4rem;
    background: var(--white);
}

.page-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-title {
    font-family: Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 0.75rem;
}

.page-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--black-soft);
    margin: 0 0 1.5rem;
    max-width: 65ch;
}

.page-subtitle {
    font-family: Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin: 2rem 0 0.75rem;
}

.page-list {
    padding-left: 1.5rem;
    color: var(--black-soft);
    margin: 0 0 1rem;
    line-height: 1.8;
}

.about-page .about-photo {
    margin: 0 0 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
}

.about-page .about-photo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
}

.about-page .about-photo figcaption {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    color: var(--grey);
}

/* Index – dnešné denné menu (predizajnovaný blok) */
.index-menu-today {
    padding: 3rem 0;
    background: linear-gradient(180deg, #fafafa 0%, var(--white) 100%);
}

.index-menu-box {
    max-width: 680px;
    margin: 0 auto;
    padding: 0;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 0 rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.index-menu-head {
    padding: 1.5rem 2rem 1.25rem;
    border-bottom: 3px solid var(--gold);
    background: var(--white);
}

.index-menu-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.25rem;
    font-family: Inter, system-ui, sans-serif;
}

.index-menu-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
}

.index-menu-title time {
    font-weight: 500;
    color: var(--grey);
    font-size: 1rem;
}

.index-menu-empty {
    margin: 0;
    padding: 2rem 2rem 1.5rem;
    color: var(--grey);
    font-size: 0.95rem;
}

.index-menu-list {
    padding: 1.25rem 2rem 1.5rem;
}

.index-menu-cat {
    margin-bottom: 1.25rem;
}

.index-menu-cat:last-child {
    margin-bottom: 0;
}

.index-menu-cat h3 {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--grey);
    margin: 0 0 0.5rem;
    padding-bottom: 0.35rem;
    border-bottom: 2px solid var(--gold);
    font-family: Inter, system-ui, sans-serif;
}

.index-menu-cat ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.index-menu-cat li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.4rem 0;
    font-size: 0.95rem;
    line-height: 1.4;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.08);
}

.index-menu-cat li:last-child {
    border-bottom: none;
}

.index-menu-cat .name {
    flex: 1;
    min-width: 0;
}

.index-menu-cat .name em {
    font-style: normal;
    color: var(--grey);
    font-size: 0.88rem;
}

.index-menu-cat .price {
    flex-shrink: 0;
    font-weight: 700;
    color: var(--black);
    font-family: Inter, system-ui, sans-serif;
}

.index-menu-footer {
    padding: 1.25rem 2rem 1.5rem;
    background: #fafafa;
    border-top: 1px solid var(--border);
    text-align: center;
}

.index-menu-cta {
    display: inline-block;
    padding: 0.6rem 1.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    background: var(--gold);
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
    font-family: Inter, system-ui, sans-serif;
}

.index-menu-cta:hover {
    background: var(--gold-dark);
    color: var(--white);
    text-decoration: none;
}

/* Index – sekcia galérie (náhľad + odkaz) */
.index-gallery {
    padding: 4rem 0;
    background: var(--white);
}

.section-intro {
    text-align: center;
    color: var(--grey);
    margin: 0 auto 2rem;
    max-width: 480px;
}

.index-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 700px) {
    .index-gallery-grid {
        grid-template-columns: 1fr;
    }
}

.index-gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.25s ease;
}

.index-gallery-item:hover {
    box-shadow: var(--shadow-card);
}

.index-gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

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

.index-gallery-placeholder {
    display: block;
    width: 100%;
    height: 220px;
    background: var(--border);
    border-radius: 12px;
    line-height: 220px;
    text-align: center;
    color: var(--grey);
}

.index-gallery-cta {
    text-align: center;
    margin: 0;
}

/* Galéria stránka – plná mriežka */
.gallery-page .gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.gallery-item figcaption {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--black-soft);
}

.menu-page .menu-page-head {
    margin-bottom: 0.75rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border);
}
.menu-page .menu-page-head .page-title {
    margin-bottom: 0.2rem;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    font-family: Inter, system-ui, sans-serif;
}
.menu-page .menu-page-head .menu-week-info {
    margin: 0 0 0 0.5rem;
    font-size: 0.8rem;
    color: var(--grey);
    font-family: Inter, system-ui, sans-serif;
}
.menu-page .menu-page-head .menu-week-info::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-right: 0.4rem;
    background: var(--gold);
    border-radius: 50%;
    vertical-align: 0.18em;
}

.menu-page-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Galéria na o-nas */
.gallery-full h2,
.gallery-preview h2 {
    font-family: Georgia, serif;
    font-size: 1.75rem;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.gallery-grid figure {
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gallery-full-grid img {
    height: 260px;
}

.gallery-grid figcaption {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--black);
}

/* Denné menu – dni vedľa seba */
section.menu-page {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
    background: #fafafa;
}

.menu-page-inner .menu-page-head {
    margin-bottom: 1.25rem;
}

.menu-page-intro {
    max-width: 720px;
    margin-bottom: 2rem;
    padding: 1rem 0;
    color: var(--black-soft);
    font-size: 1rem;
    line-height: 1.6;
}

.menu-days {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.menu-day-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    min-width: 0;
}

.menu-day-card.is-today {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.15);
}

.menu-day-card-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    padding: 0.6rem 0.75rem;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.menu-day-card.is-today .menu-day-card-head {
    background: linear-gradient(to bottom, rgba(201, 162, 39, 0.1), var(--white));
    border-bottom-color: rgba(201, 162, 39, 0.3);
}

.menu-day-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--black);
    font-family: Inter, system-ui, sans-serif;
}

.menu-day-date {
    font-size: 0.75rem;
    color: var(--grey);
    font-weight: 500;
}

.menu-day-badge {
    margin-left: auto;
    padding: 0.15rem 0.4rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--white);
    border-radius: 4px;
    font-family: Inter, system-ui, sans-serif;
}

.menu-day-body {
    padding: 0.65rem 0.75rem;
}

.menu-day-empty-block {
    color: var(--grey);
    font-size: 0.78rem;
}

.menu-day-empty-block p {
    margin: 0;
}

.menu-cat-block {
    margin-bottom: 0.6rem;
}

.menu-cat-block:last-child {
    margin-bottom: 0;
}

.menu-cat-title {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--grey);
    margin: 0 0 0.35rem;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid var(--gold);
    font-family: Inter, system-ui, sans-serif;
}

.menu-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-cat-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.1rem 0.75rem;
    align-items: baseline;
    padding: 0.25rem 0;
    border-bottom: 1px dotted var(--border);
    font-size: 0.72rem;
    line-height: 1.35;
}

.menu-cat-item:last-child {
    border-bottom: none;
}

.menu-item-name {
    grid-column: 1;
    grid-row: 1;
    font-weight: 600;
    color: var(--black);
}

.menu-item-desc {
    grid-column: 1;
    grid-row: 2;
    font-size: 0.68rem;
    color: var(--grey);
    font-weight: 400;
}

.menu-item-price {
    grid-column: 2;
    grid-row: 1 / -1;
    align-self: start;
    font-weight: 700;
    color: var(--black);
    white-space: nowrap;
    font-size: 0.7rem;
    font-family: Inter, system-ui, sans-serif;
}

@media (max-width: 900px) {
    .menu-days {
        gap: 1rem;
    }
    .menu-day-card-head {
        padding: 0.75rem 1rem;
    }
    .menu-day-name { font-size: 1rem; }
    .menu-day-date { font-size: 0.9rem; }
    .menu-day-body {
        padding: 1rem 1.25rem;
    }
    .menu-cat-item {
        font-size: 0.9rem;
    }
    .menu-item-desc { font-size: 0.82rem; }
    .menu-item-price { font-size: 0.88rem; }
}

/* Kontakt */
.contact-page h1 {
    font-family: Georgia, serif;
    font-size: 1.75rem;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.contact-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-block {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.contact-block h2 {
    font-family: Georgia, serif;
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.contact-block a {
    color: var(--black);
    text-decoration: none;
}

.contact-block a:hover {
    text-decoration: underline;
}

.contact-map-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    align-items: start;
}

.contact-map-wrap {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
}

.contact-map-wrap iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

.contact-form-wrap {
    min-width: 0;
}

@media (max-width: 768px) {
    .contact-map-form {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .contact-map-wrap iframe {
        height: 320px;
    }
}

.contact-form-title {
    font-family: Georgia, serif;
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    color: var(--black);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    max-width: 420px;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: Georgia, serif;
    font-size: 1rem;
    background: var(--white);
}

.contact-form button,
.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-family: Inter, sans-serif;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease, color 0.2s ease;
}

.contact-form button:hover,
.button:hover {
    background: var(--black);
    color: var(--white);
    text-decoration: none;
}

.message {
    padding: 0.85rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.message.success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ========== Admin panel ========== */
body.admin-panel {
    background: #1a1a1a;
    font-family: Inter, system-ui, -apple-system, sans-serif;
}

body.admin-panel:not(.admin-login-page) {
    min-height: 100vh;
}

/* Prihlasovacia stránka */
body.admin-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #1a1a1a;
}

.admin-login-bg {
    position: fixed;
    inset: 0;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    z-index: 0;
}

.admin-login-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 400px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    padding: 2.25rem 2rem;
}

.admin-login-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.admin-login-header h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.02em;
}

.admin-login-header p {
    margin: 0.35rem 0 0;
    font-size: 0.9rem;
    color: var(--grey);
    font-weight: 500;
}

.admin-login-form .form-group {
    margin-bottom: 1.1rem;
}

.admin-login-form .form-group:last-of-type {
    margin-bottom: 1.5rem;
}

.admin-login-form input {
    max-width: none;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.admin-login-form input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.admin-login-submit {
    width: 100%;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: var(--gold);
    color: var(--white);
    cursor: pointer;
    transition: background 0.2s;
}

.admin-login-submit:hover {
    background: var(--gold-dark);
}

.admin-login-footer {
    margin: 1.5rem 0 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.9rem;
}

.admin-login-footer a {
    color: var(--grey);
    text-decoration: none;
}

.admin-login-footer a:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

.admin-login-card .alert-error {
    margin-bottom: 1.25rem;
}

.admin-narrow-card {
    max-width: 420px;
}

.admin-header {
    background: rgba(0, 0, 0, 0.4);
    color: var(--white);
    padding: 0 1.5rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 3.5rem;
}

.admin-brand {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.admin-brand a {
    color: var(--white);
    text-decoration: none;
}

.admin-brand a:hover {
    color: var(--gold);
}

.admin-header .admin-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.admin-header .admin-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
}

.admin-header .admin-nav a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.admin-main {
    min-height: calc(100vh - 3.5rem);
    padding: 2rem 1.5rem;
    background: linear-gradient(180deg, #1a1a1a 0%, #252525 100%);
}

.admin-layout {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    padding: 2rem 2.25rem;
}

.admin-layout > p:first-of-type {
    margin: -0.5rem 0 1.25rem;
    font-size: 0.9rem;
}

.admin-layout > p:first-of-type a {
    color: var(--grey);
    text-decoration: none;
}

.admin-layout > p:first-of-type a:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

.admin-layout h2 {
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0 0 1.25rem;
    color: var(--black);
}

.admin-layout h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: var(--black);
}

.admin-layout a {
    color: var(--black);
}

.admin-layout a:hover {
    text-decoration: underline;
}

/* Alerts */
.admin-layout .alert,
.alert-success,
.alert-error {
    padding: 0.85rem 1.1rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.admin-layout .alert-success,
.alert-success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.admin-layout .alert-error,
.alert-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.admin-layout .alert {
    background: #f8fafc;
    color: var(--black-soft);
    border: 1px solid var(--border);
}

/* Date picker */
.admin-date-picker {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    padding: 0.85rem 1.1rem;
    background: #f5f5f5;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.admin-date-picker label {
    font-weight: 500;
    color: var(--black-soft);
}

.admin-date-picker input[type="date"] {
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    border: 1px solid var(--border);
}

.admin-date-dayname {
    padding: 0.25rem 0.5rem;
    background: var(--white);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--grey);
}

.admin-this-day-closed-block {
    margin-bottom: 1.5rem;
    padding: 1rem 1.1rem;
    background: #f0f7ff;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.admin-this-day-closed-block h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.admin-this-day-closed-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
}

.admin-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    cursor: pointer;
}

.admin-checkbox-label input[type="checkbox"] {
    width: 1.1rem;
    height: 1.1rem;
    cursor: pointer;
}

.admin-paste-import-block {
    margin-bottom: 1.5rem;
    padding: 1rem 1.1rem;
    background: #f5f9f0;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.admin-paste-import-block h3 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 600;
}

.admin-paste-import-form .admin-paste-import-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-top: 0.75rem;
}

.admin-paste-import-form .admin-paste-import-row:first-of-type {
    align-items: flex-start;
}

.admin-paste-import-form label {
    font-weight: 500;
    color: var(--black-soft);
}

.admin-paste-import-form textarea {
    flex: 1;
    min-width: 280px;
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    line-height: 1.4;
}

.admin-paste-import-form select {
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    border: 1px solid var(--border);
}

.admin-paste-import-actions {
    margin-top: 0.5rem;
}

.admin-paste-save-btn {
    padding: 0.6rem 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: var(--gold);
    color: var(--white);
    transition: background 0.2s;
}

.admin-paste-save-btn:hover {
    background: var(--gold-dark);
}

.admin-closed-day-block {
    margin-bottom: 1.5rem;
    padding: 1rem 1.1rem;
    background: #f9f9f9;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.admin-closed-day-block h3 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 600;
}

.admin-closed-day-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-top: 0.5rem;
}

.admin-closed-day-form label {
    font-weight: 500;
    color: var(--black-soft);
}

.admin-closed-day-form select {
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    border: 1px solid var(--border);
    min-width: 180px;
}

.admin-closed-day-note {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    color: var(--black-soft);
}

/* Menu row: zoznam + formulár */
.admin-menu-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 850px) {
    .admin-menu-row {
        grid-template-columns: 1fr;
    }
}

.admin-menu-list h3,
.admin-menu-form-wrap h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--border);
}

.admin-menu-form-wrap {
    min-width: 0;
    position: sticky;
    top: 1rem;
    padding: 1.25rem;
    background: #f8f8f8;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.admin-menu-form-wrap .form-group input,
.admin-menu-form-wrap .form-group select,
.admin-menu-form-wrap .form-group textarea {
    max-width: 100%;
}

.admin-menu-form-wrap button {
    margin-right: 0.75rem;
}

.admin-cancel-edit {
    font-size: 0.875rem;
    color: var(--grey);
}

/* Tabuľka */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    font-size: 0.9rem;
}

.admin-table th {
    background: var(--black);
    color: var(--white);
    padding: 0.7rem 1rem;
    text-align: left;
    font-weight: 600;
}

.admin-table td {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.admin-table tbody tr.admin-row-editing {
    background: rgba(201, 162, 39, 0.12);
}

.admin-table tbody tr.admin-row-editing td {
    background: rgba(201, 162, 39, 0.08);
    box-shadow: inset 0 0 0 2px var(--gold);
}

.admin-table .actions a {
    display: inline-block;
    margin-right: 0.75rem;
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: #f0f0f0;
    text-decoration: none;
    color: var(--black);
}

.admin-table .actions a:hover {
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
}

/* Formuláre v admine */
.form-label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--black);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group-inline {
    margin-bottom: 1rem;
}

.form-group-inline .form-label {
    margin-bottom: 0.5rem;
}

.form-group-inline label {
    display: inline-block;
    margin-right: 1.25rem;
    font-weight: 500;
}

/* Zobraziť na – prepínač Galéria / O nás */
.admin-placement-wrap .form-label {
    margin-bottom: 0.5rem;
}

.admin-placement-choices {
    display: inline-flex;
    background: #eee;
    border-radius: 8px;
    padding: 3px;
    border: 1px solid var(--border);
}

.admin-placement-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    cursor: pointer;
}

.admin-placement-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.admin-placement-option span {
    display: block;
    padding: 0.5rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.admin-placement-option input:focus + span {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.admin-placement-option:first-child span {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.admin-placement-option:last-child span {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.admin-placement-option input:checked + span {
    background: var(--gold);
    color: var(--white);
}

.admin-placement-option:hover span {
    background: rgba(0, 0, 0, 0.06);
}

.admin-placement-option input:checked:hover + span {
    background: var(--gold-dark);
    color: var(--white);
}

.form-group label input[type="radio"] {
    margin-right: 0.35rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--black);
}

.form-hint {
    margin: -0.2rem 0 0.5rem;
    font-size: 0.85rem;
    color: var(--black-soft);
    font-weight: 400;
}

.admin-form .form-group textarea {
    max-width: 100%;
    min-height: 120px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 420px;
    padding: 0.55rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.admin-layout button,
.admin-layout .button {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    transition: background 0.2s;
}

.admin-layout button:hover,
.admin-layout .button:hover {
    background: var(--gold-dark);
    text-decoration: none;
}

/* Galéria – karty fotiek */
.admin-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}

.admin-gallery-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s;
}

.admin-gallery-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.admin-gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.admin-gallery-item .actions {
    padding: 0.75rem 0.85rem;
    font-size: 0.85rem;
}

.admin-gallery-item .actions p {
    margin: 0 0 0.4rem;
    color: var(--black-soft);
}

.admin-gallery-placement {
    margin: 0.35rem 0 0.5rem;
    padding: 0.25rem 0;
    border-top: 1px solid var(--border);
}

.admin-gallery-placement a {
    color: var(--black);
    text-decoration: none;
}

.admin-gallery-placement a:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

.admin-gallery-item .actions > a[href*="delete"] {
    color: #b91c1c;
    margin-top: 0.5rem;
    display: inline-block;
}

.admin-gallery-item .actions > a[href*="delete"]:hover {
    text-decoration: underline;
}

/* Mobilná navigácia */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-dropdown-wrap {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-dropdown-wrap.open {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-link {
        padding: 0.75rem;
    }

    .hero-logo h1 {
        font-size: 2.25rem;
    }

    .hero-title {
        font-size: 1.25rem;
    }
}
