/* =========================================
   OLIVER_SPOT — site.css
   Sdílené styly pro celý web
   ========================================= */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #0d0d0d;
    --dark: #141414;
    --dark2: #1c1c1c;
    --dark3: #242424;
    --gray: #888;
    --gray2: #555;
    --white: #f5f5f5;
    --accent1: #FF6B00;
    --accent2: #FFD000;
    --accent-grad: linear-gradient(90deg, #FF6B00, #FFD000);
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-script: 'Dancing Script', cursive;
    --nav-h: 60px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    padding-bottom: var(--nav-h);
}

/* Mobile: omezit šířku jako "phone frame" */
@media (max-width: 767px) {
    body {
        max-width: 480px;
        margin: 0 auto;
    }
    body > *:not(.nav-bottom) {
        border-left: 0.5px solid #1e1e1e;
        border-right: 0.5px solid #1e1e1e;
    }
}

/* Desktop: plná šířka, bez bottom nav padding */
@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
    .page-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 40px;
    }
}

/* ---- NAV TOP (mobile only) ---- */
.nav-top {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13,13,13,0.92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 52px;
    border-bottom: 0.5px solid #222;
}

@media (min-width: 768px) {
    .nav-top { display: none; }
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

    .nav-logo img {
        height: 32px;
        width: auto;
    }

.nav-insta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray);
    font-size: 13px;
    text-decoration: none;
}

    .nav-insta:hover {
        color: var(--accent1);
    }

    .nav-insta svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
    }

/* ---- NAV BOTTOM (mobile only) ---- */
@media (min-width: 768px) {
    .nav-bottom { display: none !important; }
}

.nav-bottom {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    height: var(--nav-h);
    background: rgba(13,13,13,0.96);
    backdrop-filter: blur(10px);
    border-top: 0.5px solid #222;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 100;
}

.nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--gray2);
    font-size: 10px;
    font-family: var(--font-body);
    text-decoration: none;
    padding: 6px 16px;
    transition: color 0.15s;
}

    .nav-btn svg {
        width: 22px;
        height: 22px;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .nav-btn.active {
        color: var(--accent1);
    }

        .nav-btn.active svg {
            stroke: var(--accent1);
        }

/* ---- SEKCE ---- */
section {
    padding: 32px 20px;
    border-bottom: 0.5px solid #1a1a1a;
}

    section:last-of-type {
        border-bottom: none;
    }

.section-label {
    font-family: var(--font-head);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent1);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.section-title {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}

.accent-line {
    width: 36px;
    height: 2.5px;
    background: var(--accent-grad);
    border-radius: 2px;
    margin-bottom: 16px;
}

/* ---- PAGE HEADER ---- */
.page-header {
    padding: 28px 20px 0;
}

.page-label {
    font-family: var(--font-head);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent1);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.page-title {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.0;
    margin-bottom: 4px;
}

.page-sub {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 20px;
}

/* ---- TLAČÍTKA ---- */
.btn-primary {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    background: var(--accent-grad);
    color: #111;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    border: none;
    cursor: pointer;
    margin-bottom: 10px;
    transition: opacity 0.2s;
}

    .btn-primary:hover {
        opacity: 0.88;
    }

.btn-secondary {
    display: block;
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    border: 0.5px solid #333;
    color: var(--gray);
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    background: transparent;
    cursor: pointer;
    transition: all 0.15s;
}

    .btn-secondary:hover {
        border-color: var(--accent1);
        color: var(--accent1);
    }

/* ---- FILTER BAR ---- */
.filter-bar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 20px 20px;
    scrollbar-width: none;
}

    .filter-bar::-webkit-scrollbar {
        display: none;
    }

.filter-btn {
    flex-shrink: 0;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 20px;
    border: 0.5px solid #333;
    background: transparent;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}

    .filter-btn:hover {
        border-color: var(--accent1);
        color: var(--accent1);
    }

    .filter-btn.active {
        background: var(--accent1);
        border-color: var(--accent1);
        color: #111;
    }

/* ---- BADGES ---- */
.badge {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    font-weight: 500;
}

.badge-oliver {
    background: rgba(255,107,0,0.12);
    color: var(--accent1);
    border: 0.5px solid rgba(255,107,0,0.25);
}

.badge-report {
    background: rgba(255,208,0,0.10);
    color: var(--accent2);
    border: 0.5px solid rgba(255,208,0,0.20);
}

.badge-sraz {
    background: rgba(255,255,255,0.05);
    color: #aaa;
    border: 0.5px solid rgba(255,255,255,0.10);
}

.badge-zavody {
    background: rgba(255,60,0,0.10);
    color: #ff6030;
    border: 0.5px solid rgba(255,60,0,0.20);
}

/* ---- POST TYPE ---- */
.post-type {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.type-zaber {
    background: rgba(255,107,0,0.12);
    color: var(--accent1);
    border: 0.5px solid rgba(255,107,0,0.25);
}

.type-pribeh {
    background: rgba(255,208,0,0.10);
    color: var(--accent2);
    border: 0.5px solid rgba(255,208,0,0.20);
}

.type-backstage {
    background: rgba(255,255,255,0.05);
    color: #aaa;
    border: 0.5px solid rgba(255,255,255,0.10);
}

.type-zavody {
    background: rgba(255,60,0,0.10);
    color: #ff6030;
    border: 0.5px solid rgba(255,60,0,0.20);
}

/* ---- SOCIAL LINKS ---- */
.social-links, .social-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray);
    font-size: 13px;
    text-decoration: none;
}

    .social-link:hover {
        color: var(--accent1);
    }

    .social-link svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
    }

/* =========================================
   HOMEPAGE — Index
   ========================================= */

.hero {
    position: relative;
    height: 88vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 40%, #0d0d0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero-bg img,
    .hero-slide {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        position: absolute;
        inset: 0;
        transition: opacity 0.8s ease;
    }

    .hero-slide.active {
        opacity: 0.7;
    }

.hero-bg-placeholder {
    color: #333;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,1) 0%, rgba(13,13,13,0.4) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px 32px;
}

.hero-label {
    font-family: var(--font-head);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent1);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-title {
    font-family: var(--font-head);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.0;
    color: #fff;
    margin-bottom: 12px;
}

    .hero-title em {
        font-style: normal;
        background: var(--accent-grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-sub {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
    max-width: 280px;
    margin-bottom: 20px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--accent1);
    background: var(--dark3);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: var(--gray2);
}

    .hero-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-name {
    font-family: var(--font-script);
    font-size: 16px;
    color: #ccc;
}

.hero-location {
    font-size: 12px;
    color: var(--gray);
}

.hero-sig {
    position: absolute;
    bottom: 140px;
    right: 20px;
    z-index: 3;
    font-family: var(--font-script);
    font-size: 14px;
    color: rgba(255,107,0,0.65);
    pointer-events: none;
    transform: rotate(-3deg);
}

/* Feed grid */
.feed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.feed-card {
    background: var(--dark2);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
}

    .feed-card:hover {
        transform: scale(1.02);
    }

    .feed-card.featured {
        grid-column: 1 / -1;
    }

.feed-img {
    background: var(--dark3);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .feed-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.feed-card.featured .feed-img {
    aspect-ratio: 16/9;
}

.feed-img-placeholder {
    font-size: 10px;
    color: #333;
    letter-spacing: 1px;
    text-align: center;
}

.feed-body {
    padding: 10px 12px 12px;
}

.feed-title {
    font-size: 13px;
    font-weight: 500;
    color: #e0e0e0;
    line-height: 1.3;
    margin-bottom: 4px;
}

.feed-meta {
    font-size: 11px;
    color: var(--gray2);
}

/* Oliver blok */
.oliver-block {
    background: var(--dark2);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
}

.oliver-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.oliver-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--accent1);
    background: var(--dark3);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: var(--gray2);
    text-align: center;
}

    .oliver-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.oliver-quote {
    font-family: var(--font-script);
    font-size: 17px;
    color: #ddd;
    line-height: 1.5;
    margin-bottom: 6px;
}

.oliver-name-tag {
    font-size: 12px;
    color: var(--accent1);
}

.oliver-bio {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 14px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    font-size: 11px;
    color: #aaa;
    border: 0.5px solid #333;
    border-radius: 20px;
    padding: 4px 10px;
}

/* Akce na homepage */
.events-list {
    display: flex;
    flex-direction: column;
}

.event-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 0.5px solid #1e1e1e;
}

    .event-item:last-child {
        border-bottom: none;
    }

.event-date {
    min-width: 44px;
    text-align: center;
    background: var(--dark3);
    border-radius: 8px;
    padding: 6px 4px;
    flex-shrink: 0;
}

    .event-date .d {
        font-family: var(--font-head);
        font-size: 22px;
        font-weight: 700;
        color: var(--accent1);
        line-height: 1;
    }

    .event-date .m {
        font-size: 9px;
        letter-spacing: 1px;
        color: var(--gray);
        text-transform: uppercase;
    }

.event-name {
    font-size: 14px;
    font-weight: 500;
    color: #e0e0e0;
    margin-bottom: 3px;
    line-height: 1.3;
}

.event-sub {
    font-size: 12px;
    color: var(--gray2);
    margin-bottom: 5px;
}

/* CTA blok */
.cta-block {
    background: var(--dark2);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
}

.cta-quote {
    font-family: var(--font-script);
    font-size: 20px;
    color: #ddd;
    line-height: 1.5;
    margin-bottom: 6px;
}

.cta-sub {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 20px;
}

/* =========================================
   ZÁBĚRY — Zabery
   ========================================= */

.feed-post {
    border-bottom: 0.5px solid #1e1e1e;
    padding: 20px 0;
}

    .feed-post:last-child {
        border-bottom: none;
    }

.post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.post-date {
    font-size: 11px;
    color: var(--gray2);
}

.post-img {
    width: 100%;
    border-radius: 10px;
    background: var(--dark2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
}

    .post-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .post-img.ratio-square {
        aspect-ratio: 1/1;
    }

    .post-img.ratio-wide {
        aspect-ratio: 16/9;
    }

    .post-img.ratio-tall {
        aspect-ratio: 4/5;
    }

.post-img-placeholder {
    font-size: 10px;
    color: #333;
    letter-spacing: 1px;
    text-align: center;
    padding: 20px;
}

.post-sig {
    position: absolute;
    bottom: 10px;
    right: 12px;
    font-family: var(--font-script);
    font-size: 13px;
    color: rgba(255,107,0,0.65);
    pointer-events: none;
    transform: rotate(-2deg);
}

.post-title {
    font-size: 17px;
    font-weight: 500;
    color: #eee;
    line-height: 1.3;
    margin-bottom: 8px;
}

.post-text {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 8px;
}

.post-readmore {
    font-size: 13px;
    color: var(--accent1);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: var(--font-body);
}

    .post-readmore:hover {
        text-decoration: underline;
    }

.post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.post-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--gray2);
}

    .post-location svg {
        width: 13px;
        height: 13px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.post-insta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--gray2);
    text-decoration: none;
}

    .post-insta:hover {
        color: var(--accent1);
    }

    .post-insta svg {
        width: 14px;
        height: 14px;
        fill: currentColor;
    }

.load-more-wrap {
    padding: 24px 20px 8px;
    text-align: center;
}

.btn-load {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 10px;
    border: 0.5px solid #333;
    color: var(--gray);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    transition: all 0.15s;
}

    .btn-load:hover {
        border-color: var(--accent1);
        color: var(--accent1);
    }

/* =========================================
   AKCE — Akce
   ========================================= */

.month-divider {
    padding: 8px 20px;
    font-family: var(--font-head);
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--gray2);
    text-transform: uppercase;
    border-bottom: 0.5px solid #1e1e1e;
    background: var(--black);
    position: sticky;
    top: 52px;
    z-index: 10;
}

.event-card {
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    border-bottom: 0.5px solid #1a1a1a;
    cursor: pointer;
    transition: opacity 0.15s;
}

    .event-card:hover {
        opacity: 0.8;
    }

.event-date-block {
    min-width: 48px;
    text-align: center;
    background: var(--dark2);
    border-radius: 10px;
    padding: 8px 4px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .event-date-block.oliver {
        background: rgba(255,107,0,0.1);
        border: 0.5px solid rgba(255,107,0,0.25);
    }

.event-d {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    color: var(--accent1);
    line-height: 1;
}

.event-m {
    font-size: 9px;
    letter-spacing: 1px;
    color: var(--gray);
    text-transform: uppercase;
    margin-top: 2px;
}

.event-body {
    flex: 1;
    min-width: 0;
}

.event-name {
    font-size: 15px;
    font-weight: 500;
    color: #eee;
    line-height: 1.3;
    margin-bottom: 4px;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--gray2);
    margin-bottom: 6px;
}

    .event-location svg {
        width: 12px;
        height: 12px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }

.event-arrow {
    display: flex;
    align-items: center;
    color: var(--gray2);
    flex-shrink: 0;
    align-self: center;
}

    .event-arrow svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 200;
    display: none;
    align-items: flex-end;
    backdrop-filter: blur(4px);
}

    .modal-overlay.open {
        display: flex;
    }

.modal {
    background: var(--dark);
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 24px 24px 40px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}

.modal-handle {
    width: 36px;
    height: 4px;
    background: #333;
    border-radius: 2px;
    margin: 0 auto 20px;
}

.modal-label {
    font-family: var(--font-head);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent1);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.modal-title {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 6px;
}

.modal-date-loc {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 16px;
}

.modal-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.modal-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--dark3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 11px;
    color: #333;
    letter-spacing: 1px;
    text-align: center;
}

.modal-desc {
    font-size: 14px;
    color: #999;
    line-height: 1.8;
    margin-bottom: 20px;
}

.modal-oliver {
    background: var(--dark2);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.modal-oliver-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--accent1);
    background: var(--dark3);
    overflow: hidden;
    flex-shrink: 0;
}

    .modal-oliver-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.modal-oliver-text {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

    .modal-oliver-text strong {
        color: var(--accent1);
        font-weight: 500;
    }

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--dark3);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gray);
}

    .modal-close svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

/* =========================================
   OLIVER — stránka Oliver
   ========================================= */

.oliver-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.oliver-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #1a1a1a 0%, #0d0d0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.oliver-hero-drawing {
    position: absolute;
    right: -20px;
    top: 0;
    bottom: 0;
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

    .oliver-hero-drawing img {
        height: 100%;
        width: auto;
        object-fit: contain;
        object-position: right center;
    }

.drawing-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #2a2a2a;
    letter-spacing: 1px;
    text-align: center;
    padding: 20px;
}

.oliver-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13,13,13,1) 30%, rgba(13,13,13,0.2) 80%, transparent 100%), linear-gradient(to top, rgba(13,13,13,1) 0%, transparent 40%);
}

.oliver-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px 32px;
}

    .oliver-hero-content .hero-title {
        font-family: var(--font-head);
        font-size: 44px;
        font-weight: 700;
        line-height: 1.0;
        color: #fff;
        margin-bottom: 8px;
    }

        .oliver-hero-content .hero-title em {
            font-style: normal;
            background: var(--accent-grad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

.hero-motto {
    font-family: var(--font-script);
    font-size: 18px;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 16px;
}

.hero-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hero-tag {
    font-size: 11px;
    color: #aaa;
    border: 0.5px solid #333;
    border-radius: 20px;
    padding: 4px 10px;
}

/* Story timeline */
.story-block {
    margin-bottom: 24px;
    padding-left: 20px;
    position: relative;
}

    .story-block::before {
        content: '';
        position: absolute;
        left: 0;
        top: 6px;
        bottom: -24px;
        width: 1px;
        background: linear-gradient(to bottom, #FF6B00, transparent);
    }

    .story-block:last-child::before {
        display: none;
    }

.story-dot {
    position: absolute;
    left: -5px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent1);
    border: 2px solid var(--black);
}

.story-year {
    font-family: var(--font-head);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--accent1);
    margin-bottom: 4px;
}

.story-text {
    font-size: 14px;
    color: #888;
    line-height: 1.8;
}

    .story-text strong {
        color: #ccc;
        font-weight: 500;
    }

/* Citáty */
.quote-block {
    background: var(--dark2);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 12px;
    border-left: 2px solid var(--accent1);
}

.quote-text {
    font-family: var(--font-script);
    font-size: 20px;
    color: #ddd;
    line-height: 1.5;
    margin-bottom: 8px;
}

.quote-sub {
    font-size: 12px;
    color: var(--gray2);
}

/* Hodnoty */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.value-card {
    background: var(--dark2);
    border-radius: 12px;
    padding: 16px;
}

.value-icon {
    font-size: 22px;
    margin-bottom: 8px;
}

.value-title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.value-desc {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.6;
}

/* Akce grid */
.action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.action-img {
    background: var(--dark2);
    border-radius: 10px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #333;
    letter-spacing: 1px;
    text-align: center;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

    .action-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        inset: 0;
    }

    .action-img.wide {
        grid-column: 1/-1;
        aspect-ratio: 16/8;
    }

/* Kontakt */
.contact-block {
    background: var(--dark2);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
}

.contact-motto {
    font-family: var(--font-script);
    font-size: 22px;
    color: #ddd;
    line-height: 1.5;
    margin-bottom: 6px;
}

.contact-sub {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* =========================================
   DESKTOP NAV (≥ 768px)
   ========================================= */

.nav-desktop {
    display: none;
}

@media (min-width: 768px) {
    /* Tmavý pruh přes celou šířku */
    .nav-desktop {
        display: flex;
        justify-content: center;
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(13,13,13,0.95);
        backdrop-filter: blur(10px);
        border-bottom: 0.5px solid #222;
        height: 90px;
        overflow: visible;
    }

    /* Vnitřek omezen max-width */
    .nav-desktop-inner {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 1280px;
        padding: 0 48px;
    }

    /* Obě skupiny stejně velké → logo bude vždy přesně uprostřed */
    .nav-desktop-group {
        display: flex;
        align-items: center;
        gap: 32px;
        flex: 1;
    }

    /* Levá — položky přitažené k logu (zarovnání doprava) */
    .nav-desktop-left {
        justify-content: flex-end;
    }

    /* Pravá — položky přitažené k logu (zarovnání doleva) */
    .nav-desktop-right {
        justify-content: flex-start;
    }

    .nav-desktop-logo {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        text-decoration: none;
        padding: 0 40px;
    }

    .nav-desktop-logo img {
        height: 200px;
        width: auto;
    }

    .nav-desktop-link {
        font-family: var(--font-head);
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #aaa;
        text-decoration: none;
        transition: color 0.15s;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .nav-desktop-link:hover,
    .nav-desktop-link.active {
        color: #fff;
    }

    .nav-desktop-link.active {
        border-bottom: 1.5px solid var(--accent1);
        padding-bottom: 2px;
        color: #fff;
    }
}

/* =========================================
   GALLERY BLOK
   ========================================= */

.gallery-block-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}

@media (min-width: 1100px) {
    .gallery-block-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.gallery-block-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    background: var(--dark2);
}

.gallery-block-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-block-item:hover img {
    transform: scale(1.03);
}

.gallery-block-item .post-sig {
    position: absolute;
    bottom: 8px;
    right: 10px;
}

/* =========================================
   SLUŽBY
   ========================================= */

.services-intro {
    padding-bottom: 0;
    border-bottom: none;
}

.services-desc {
    font-size: 15px;
    color: #999;
    line-height: 1.8;
    max-width: 600px;
}

.packages-section {
    border-bottom: none;
}

.packages-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

@media (min-width: 768px) {
    .packages-grid {
        flex-direction: row;
        align-items: stretch;
        gap: 20px;
    }
}

.package-card {
    background: var(--dark2);
    border-radius: 14px;
    padding: 24px 20px;
    flex: 1;
    position: relative;
    border: 0.5px solid #2a2a2a;
    display: flex;
    flex-direction: column;
}

.package-card-featured {
    border-color: var(--accent1);
}

.package-featured-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent1);
    color: #111;
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.package-tag {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent1);
    line-height: 1;
    margin-bottom: 8px;
}

.package-name {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.package-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.package-features {
    list-style: none;
    margin-bottom: 20px;
}

.package-features li {
    font-size: 13px;
    color: #aaa;
    padding: 6px 0;
    border-bottom: 0.5px solid #1e1e1e;
    padding-left: 16px;
    position: relative;
}

.package-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent1);
    font-size: 11px;
}

.pkg-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    border: 0.5px solid #333;
    color: #aaa;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.15s;
}

.pkg-btn:hover {
    border-color: var(--accent1);
    color: var(--accent1);
}

.pkg-btn-primary {
    background: var(--accent1);
    border-color: var(--accent1);
    color: #111;
}

.pkg-btn-primary:hover {
    opacity: 0.88;
    color: #111;
}

.services-note {
    border-bottom: none;
}

.note-block {
    background: var(--dark2);
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .note-block {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.note-text {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    max-width: 480px;
}

/* =========================================
   KONTAKT
   ========================================= */

.contact-section {
    border-bottom: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 560px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: var(--font-head);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
}

.form-input {
    background: var(--dark2);
    border: 0.5px solid #333;
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.15s;
    width: 100%;
}

.form-input:focus {
    border-color: var(--accent1);
}

.form-input::placeholder {
    color: #444;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 480px) {
    .form-radio-group {
        flex-direction: row;
        gap: 12px;
    }
}

.form-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--dark2);
    border: 0.5px solid #333;
    border-radius: 8px;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 13px;
    color: #888;
    flex: 1;
    transition: all 0.15s;
}

.form-radio input[type="radio"] {
    accent-color: var(--accent1);
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.form-radio.active,
.form-radio:has(input:checked) {
    border-color: var(--accent1);
    color: #fff;
}

.form-error {
    font-size: 13px;
    color: #ff4444;
    background: rgba(255,68,68,0.08);
    border: 0.5px solid rgba(255,68,68,0.2);
    border-radius: 8px;
    padding: 10px 14px;
}

.contact-success {
    text-align: center;
    padding: 40px 20px;
}

.contact-success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,107,0,0.12);
    border: 1.5px solid var(--accent1);
    color: var(--accent1);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact-success-title {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.contact-success-sub {
    font-size: 14px;
    color: #888;
}

.contact-socials {
    border-bottom: none;
}

.social-link-lg {
    font-size: 15px;
    gap: 8px;
}

.social-link-lg svg {
    width: 20px;
    height: 20px;
}

    .nav-desktop-link.active {
        border-bottom: 1.5px solid var(--accent1);
        padding-bottom: 2px;
    }
}

/* =========================================
   DESKTOP — page layout & sections
   ========================================= */

@media (min-width: 768px) {
    /* Sekce dostanou více vzduchu */
    section {
        padding: 48px 0;
    }

    .page-header {
        padding: 48px 0 0;
    }

    /* Hero na desktopu roztáhne přes celou šířku */
    .hero {
        height: 85vh;
        min-height: 600px;
        max-width: 100vw;
        margin-left: calc(-50vw + 50%);
        width: 100vw;
    }

    /* Filter bar */
    .filter-bar {
        padding: 0 0 24px;
    }
}

/* =========================================
   GALERIE GRID (desktop)
   ========================================= */

/* Mobilní feed zůstává jako je.
   Na desktopu přepneme na masonry-like grid. */

@media (min-width: 768px) {

    /* Záběry page — přepnout na grid */
    #feed {
        padding: 0 !important;
        column-count: 2;
        column-gap: 16px;
    }

    .feed-post {
        break-inside: avoid;
        border: none;
        background: var(--dark2);
        border-radius: 12px;
        margin-bottom: 16px;
        padding: 0;
        overflow: hidden;
    }

    /* Obrázek bez zaoblení (card má radius) */
    .post-img {
        border-radius: 0;
        margin-bottom: 0;
    }

    /* Text pod fotkou */
    .post-header,
    .post-title,
    .post-text,
    .post-footer {
        padding-left: 14px;
        padding-right: 14px;
    }

    .post-header {
        padding-top: 12px;
    }

    .post-footer {
        padding-bottom: 14px;
    }

    .post-title {
        padding-top: 10px;
        padding-bottom: 4px;
    }

    .post-text {
        padding-bottom: 8px;
    }

    /* 3 sloupce na velkých obrazovkách */
    @media (min-width: 1100px) {
        #feed {
            column-count: 3;
        }
    }
}

/* =========================================
   HERO — desktop layout
   ========================================= */

/* Výchozí: mobile content viditelný, desktop skrytý */
.hero-content-desktop { display: none; }
.hero-content-mobile  { display: flex; flex-direction: column; }

@media (min-width: 768px) {
    /* Full-bleed — vyskočí z page-wrapper */
    .hero-fullbleed {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        height: 90vh;
        min-height: 600px;
    }

    .hero-content-mobile  { display: none; }
    .hero-content-desktop {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
        z-index: 2;
        padding: 0 24px 60px;
    }

    .hero-desktop-tagline1 {
        font-family: var(--font-head);
        font-size: 12px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.6);
        margin-bottom: 8px;
    }

    .hero-desktop-tagline2 {
        font-family: var(--font-head);
        font-size: 14px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.8);
        margin-bottom: 8px;
    }

    .hero-desktop-tagline3 {
        font-family: var(--font-head);
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--accent1);
        margin-bottom: 32px;
    }

    .hero-desktop-btns {
        display: flex;
        gap: 16px;
    }

    .hero-desktop-btn {
        font-family: var(--font-head);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #fff;
        border: 1px solid rgba(255,255,255,0.5);
        padding: 12px 28px;
        text-decoration: none;
        transition: all 0.2s;
    }

    .hero-desktop-btn:hover {
        border-color: var(--accent1);
        color: var(--accent1);
    }
}

/* =========================================
   DESKTOP FOOTER
   ========================================= */

@media (min-width: 768px) {
    .site-footer {
        border-top: 0.5px solid #222;
        padding: 40px 0 32px;
        text-align: center;
    }

    .footer-nav {
        display: flex;
        justify-content: center;
        gap: 32px;
        margin-bottom: 20px;
    }

    .footer-nav a {
        font-family: var(--font-head);
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #666;
        text-decoration: none;
    }

    .footer-nav a:hover {
        color: var(--accent1);
    }

    .footer-social {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 16px;
    }

    .footer-social a {
        color: #555;
        transition: color 0.15s;
    }

    .footer-social a:hover {
        color: var(--accent1);
    }

    .footer-social svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
    }

    .footer-copy {
        font-size: 12px;
        color: #444;
    }
}

/* =========================================
   GALERIE — přehled
   ========================================= */

.galerie-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
}

@media (min-width: 768px) {
    .galerie-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 32px 0;
    }
}

@media (min-width: 1100px) {
    .galerie-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.galerie-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--dark2);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s;
}

.galerie-card:hover {
    transform: translateY(-3px);
}

.galerie-card-img {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
    background: var(--dark3);
}

.galerie-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s;
}

.galerie-card:hover .galerie-card-img img {
    transform: scale(1.04);
}

.galerie-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.galerie-card-placeholder svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
}

.galerie-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.2s;
}

.galerie-card:hover .galerie-card-overlay {
    opacity: 1;
}

.galerie-card-count {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    font-family: var(--font-head);
    letter-spacing: 1px;
}

.galerie-card-info {
    padding: 10px 12px 12px;
}

.galerie-card-title {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
    color: var(--white);
}

.galerie-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: var(--gray);
}

.galerie-meta-misto {
    display: flex;
    align-items: center;
    gap: 3px;
}

.galerie-meta-misto svg {
    width: 11px;
    height: 11px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    flex-shrink: 0;
}

/* =========================================
   GALERIE — detail
   ========================================= */

.galerie-detail-header {
    padding: 20px 16px 24px;
}

@media (min-width: 768px) {
    .galerie-detail-header {
        padding: 32px 0 32px;
    }
}

.galerie-back {
    font-size: 12px;
    font-family: var(--font-head);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 16px;
}

.galerie-back:hover {
    color: var(--accent1);
}

.galerie-detail-title {
    font-family: var(--font-head);
    font-size: clamp(28px, 6vw, 52px);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 10px;
}

.galerie-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 14px;
}

.galerie-detail-meta svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    vertical-align: middle;
    margin-right: 3px;
}

.galerie-detail-popis {
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
    max-width: 600px;
}

/* Masonry-style grid pro fotky */
.galerie-detail-grid {
    columns: 2;
    column-gap: 6px;
    padding: 0 6px 40px;
}

@media (min-width: 600px) {
    .galerie-detail-grid {
        columns: 3;
    }
}

@media (min-width: 900px) {
    .galerie-detail-grid {
        columns: 4;
        column-gap: 8px;
        padding: 0 0 60px;
    }
}

.galerie-detail-item {
    break-inside: avoid;
    margin-bottom: 6px;
}

@media (min-width: 900px) {
    .galerie-detail-item {
        margin-bottom: 8px;
    }
}

.galerie-detail-item img {
    width: 100%;
    display: block;
    border-radius: 2px;
}

