/* /Components/Layout/InvoiceLayout.razor.rz.scp.css */
/* Glob�ln� reset v r�mci layoutu */
[b-eu7d10hwlf] a {
    text-decoration: none !important;
}

.page[b-eu7d10hwlf] {
    display: flex !important;
    min-height: 100vh;
    background-color: #f5f5f7;
}

.sidebar[b-eu7d10hwlf] {
    width: 320px !important;
    background: #ffffff !important;
    border-right: 1px solid rgba(0,0,0,0.05);
    display: flex !important;
    flex-direction: column !important;
    padding: 3rem 1.5rem !important;
}

.sidebar-brand[b-eu7d10hwlf] {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px;
    margin-bottom: 3.5rem;
}

.nav-logo[b-eu7d10hwlf] {
    width: 120px !important;
    height: auto !important;
}

.brand-text[b-eu7d10hwlf] {
    font-weight: 800 !important;
    font-size: 1.4rem !important;
    background: linear-gradient(135deg, #8A2BE2, #007FFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sidebar-nav[b-eu7d10hwlf] {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px;
}

/* NavLink stylizace */
[b-eu7d10hwlf] .nav-link {
    display: flex !important;
    align-items: center !important;
    gap: 15px;
    padding: 14px 20px !important;
    color: #515154 !important;
    border-radius: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
}

    [b-eu7d10hwlf] .nav-link:hover {
        background: rgba(138, 43, 226, 0.05) !important;
        color: #8A2BE2 !important;
        transform: translateX(5px);
    }

    /* Aktivn� link s fialovou linkou */
    [b-eu7d10hwlf] .nav-link.active {
        background: #ffffff !important;
        color: #8A2BE2 !important;
        font-weight: 700;
        box-shadow: 0 8px 20px rgba(138, 43, 226, 0.1);
        border: 1px solid rgba(138, 43, 226, 0.1) !important;
        position: relative;
    }

        [b-eu7d10hwlf] .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 20px;
            right: 20px;
            height: 2px;
            background: linear-gradient(90deg, #8A2BE2, #007FFF);
        }

.nav-divider[b-eu7d10hwlf] {
    height: 1px;
    background: rgba(0,0,0,0.06);
    margin: 1.5rem 0;
}

.main-content[b-eu7d10hwlf] {
    flex-grow: 1;
    padding: 3rem !important;
}
/* /Components/Layout/LandingLayout.razor.rz.scp.css */
:root[b-p2n0dtsdx7] {
    --bg-dark: #0a0a0c;
    --text-light: #e2e8f0;
    --accent-purple: #8A2BE2;
    --accent-blue: #007FFF;
}

.landing-wrapper[b-p2n0dtsdx7] {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-oa87biycyp],
.components-reconnect-repeated-attempt-visible[b-oa87biycyp],
.components-reconnect-failed-visible[b-oa87biycyp],
.components-pause-visible[b-oa87biycyp],
.components-resume-failed-visible[b-oa87biycyp],
.components-rejoining-animation[b-oa87biycyp] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-oa87biycyp],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-oa87biycyp],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-oa87biycyp],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-oa87biycyp],
#components-reconnect-modal.components-reconnect-retrying[b-oa87biycyp],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-oa87biycyp],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-oa87biycyp],
#components-reconnect-modal.components-reconnect-failed[b-oa87biycyp],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-oa87biycyp] {
    display: block;
}


#components-reconnect-modal[b-oa87biycyp] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-oa87biycyp 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-oa87biycyp 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-oa87biycyp 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-oa87biycyp]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-oa87biycyp 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-oa87biycyp {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-oa87biycyp {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-oa87biycyp {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-oa87biycyp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-oa87biycyp] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-oa87biycyp] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-oa87biycyp] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-oa87biycyp] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-oa87biycyp] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-oa87biycyp] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-oa87biycyp 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-oa87biycyp] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-oa87biycyp {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.landing-page[b-08ivgxt4j2] {
    --purple: #8A2BE2;
    --blue: #007FFF;
    --bg: #ffffff;
    --card-bg: #f8f9fa;
    --text: #1d1d1f;
    --text-muted: #86868b;
    background-color: var(--bg);
    color: var(--text);
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Hero Section */
.hero-section[b-08ivgxt4j2] {
    padding: 15vh 5% 10vh;
    text-align: center;
}

.hero-logo[b-08ivgxt4j2] {
    width: 100px;
    height: 100px;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
    transition: transform 0.5s ease;
}

    .hero-logo:hover[b-08ivgxt4j2] {
        transform: scale(1.05) rotate(2deg);
    }

.hero-title[b-08ivgxt4j2] {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

    .hero-title span[b-08ivgxt4j2] {
        background: linear-gradient(90deg, var(--purple), var(--blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.hero-subtitle[b-08ivgxt4j2] {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Bento Grid */
.bento-grid[b-08ivgxt4j2] {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem 10rem;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.bento-card[b-08ivgxt4j2] {
    background: var(--card-bg);
    border-radius: 32px;
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

    .bento-card:hover[b-08ivgxt4j2] {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.04);
        background: #fff;
        border-color: rgba(0,127,255,0.2);
    }

/* Layout karet */
.dev-card[b-08ivgxt4j2] {
    grid-column: span 4;
    min-height: 400px;
}

.network-card[b-08ivgxt4j2] {
    grid-column: span 2;
}

.photo-card[b-08ivgxt4j2] {
    grid-column: span 3;
}

.iot-card[b-08ivgxt4j2] {
    grid-column: span 3;
}

.badge[b-08ivgxt4j2] {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--blue);
    background: rgba(0,127,255,0.08);
    padding: 0.4rem 0.8rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

h3[b-08ivgxt4j2] {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

p[b-08ivgxt4j2] {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.05rem;
}

.tech-tags[b-08ivgxt4j2] {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.5rem;
}

    .tech-tags span[b-08ivgxt4j2] {
        font-size: 0.8rem;
        padding: 0.3rem 0.7rem;
        background: #eee;
        border-radius: 8px;
        color: #555;
    }

/* Footer */
.minimal-footer[b-08ivgxt4j2] {
    padding: 5rem 2rem;
    text-align: center;
    border-top: 1px solid #f2f2f2;
}

.mail-link[b-08ivgxt4j2] {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    background: linear-gradient(var(--blue), var(--blue)) bottom left no-repeat;
    background-size: 0% 2px;
    transition: background-size 0.3s;
}

    .mail-link:hover[b-08ivgxt4j2] {
        background-size: 100% 2px;
    }
/* Globální oprava pro karty, které jsou linkem */
a.bento-card[b-08ivgxt4j2] {
    text-decoration: none; /* Odstraní podtržení ze všech vnořených textů */
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Specifické ladění pro Photo kartu */
.photo-card[b-08ivgxt4j2] {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    /* Skrytí podtržení textu při hoveru (některé prohlížeče to vynucují) */
    .photo-card h3[b-08ivgxt4j2],
    .photo-card p[b-08ivgxt4j2] {
        text-decoration: none !important;
    }

    .photo-card h3[b-08ivgxt4j2] {
        color: var(--purple); /* Dáme nadpisu barvu, aby bylo jasné, že je to akce */
        transition: color 0.3s ease;
    }

/* Šipka místo podtržení */
.go-icon[b-08ivgxt4j2] {
    font-size: 1.5rem;
    color: var(--purple);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.photo-card:hover h3[b-08ivgxt4j2] {
    color: var(--blue);
}

.photo-card:hover .go-icon[b-08ivgxt4j2] {
    transform: translateX(8px);
}

/* Vizuální efekt vnitřní záře při hoveru pro Photo */
.photo-card:hover[b-08ivgxt4j2] {
    border-color: rgba(138, 43, 226, 0.3);
    background: #fff;
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.08);
}
/* Mobile */
@media (max-width: 850px) {
    .bento-grid[b-08ivgxt4j2] {
        grid-template-columns: 1fr;
    }

    .bento-card[b-08ivgxt4j2] {
        grid-column: span 1 !important;
    }
}
/* /Components/Pages/Invoices/Customers.razor.rz.scp.css */
.dialog-overlay[b-ic7ihygdpu] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn-b-ic7ihygdpu 0.3s ease;
}

.dialog-card[b-ic7ihygdpu] {
    width: 100%;
    max-width: 600px;
    border: 1px solid rgba(138, 43, 226, 0.1);
    animation: scaleUp-b-ic7ihygdpu 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn-b-ic7ihygdpu {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleUp-b-ic7ihygdpu {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Styl pro karty v gridu */
.bento-grid-table[b-ic7ihygdpu] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.customer-card[b-ic7ihygdpu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .customer-card:hover[b-ic7ihygdpu] {
        transform: translateY(-5px);
        border-color: rgba(138, 43, 226, 0.2);
    }

.card-info[b-ic7ihygdpu] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer-avatar[b-ic7ihygdpu] {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8A2BE2, #007FFF);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.btn-icon[b-ic7ihygdpu] {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #86868b;
    transition: color 0.2s;
    padding: 5px;
}

    .btn-icon:hover[b-ic7ihygdpu] {
        color: #1d1d1f;
    }
/* /Components/Pages/Invoices/Invoices.razor.rz.scp.css */
.invoice-row[b-5i6c6z4f3p] {
    display: grid;
    /* 12% Číslo, 32% Odběratel, 15% Stav, 13% Splatnost, 18% Částka, 10% Akce */
    grid-template-columns: 1.2fr 3.2fr 1.5fr 1.3fr 1.8fr 1fr;
    gap: 1rem;
}

.header-row[b-5i6c6z4f3p] {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 15px !important;
}

.bento-card[b-5i6c6z4f3p] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.03) !important;
}

    .bento-card:hover[b-5i6c6z4f3p] {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.08) !important;
        border-color: rgba(138, 43, 226, 0.2) !important; /* Accent purple border */
    }

.bg-success-subtle[b-5i6c6z4f3p] {
    background-color: #e8f5e9 !important;
    border: 1px solid rgba(40, 167, 69, 0.1);
}

.text-silver[b-5i6c6z4f3p] {
    color: #d2d2d7;
}

.btn-light[b-5i6c6z4f3p] {
    background: #f5f5f7;
    border: none;
}

    .btn-light:hover[b-5i6c6z4f3p] {
        background: #e8e8ed;
    }

/* Responzivita - horizontální scroll pro malé displeje */
@media (max-width: 992px) {
    .invoice-list[b-5i6c6z4f3p] {
        min-width: 900px;
    }

    .invoice-container[b-5i6c6z4f3p] {
        overflow-x: auto;
    }
}
/* /Components/Pages/Invoices/Projects.razor.rz.scp.css */
/* Notifikační bublina */
.bento-toast[b-5qyolqxlyf] {
    position: fixed;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 43, 226, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    animation: toastSlideIn-b-5qyolqxlyf 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-icon[b-5qyolqxlyf] {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #8A2BE2, #007FFF);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.toast-content[b-5qyolqxlyf] {
    display: flex;
    flex-direction: column;
}

    .toast-content strong[b-5qyolqxlyf] {
        color: #1d1d1f;
        font-size: 0.95rem;
    }

    .toast-content span[b-5qyolqxlyf] {
        color: #86868b;
        font-size: 0.85rem;
    }

@keyframes toastSlideIn-b-5qyolqxlyf {
    from {
        transform: translateX(100%) opacity: 0;
    }

    to {
        transform: translateX(0) opacity: 1;
    }
}

/* Vylepšení řádků v seznamu */
.project-item[b-5qyolqxlyf] {
    background: white !important;
    border: 1px solid rgba(0,0,0,0.03) !important;
    margin-bottom: 10px !important;
    border-radius: 16px !important;
    transition: all 0.3s ease !important;
}

    .project-item:hover[b-5qyolqxlyf] {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        border-color: rgba(138, 43, 226, 0.1) !important;
    }

.text-silver[b-5qyolqxlyf] {
    color: #d2d2d7;
}
/* /Components/Pages/Login.razor.rz.scp.css */
.login-viewport[b-mhunyqxoys] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f7; /* Světle šedé pozadí Apple-style */
    z-index: 9999;
}

.login-card[b-mhunyqxoys] {
    width: 100%;
    max-width: 420px;
    padding: 20px;
    animation: fadeInScale-b-mhunyqxoys 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Styl pro tvoje logo */
.login-logo[b-mhunyqxoys] {
    max-width: 100px; /* Uprav si podle potřeby */
    height: auto;
    display: inline-block;
}

.brand-tagline[b-mhunyqxoys] {
    font-size: 0.85rem;
    color: #86868b; /* Stejná šedá jako na hlavní stránce */
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-top: 10px;
}

/* Bento karta */
.bento-surface[b-mhunyqxoys] {
    background: white;
    border-radius: 30px;
    border: 1px solid rgba(0,0,0,0.03);
}

/* Styl patičky */
.footer-text[b-mhunyqxoys] {
    color: #86868b; /* Šedá barva pro text */
    font-size: 0.85rem;
}

@keyframes fadeInScale-b-mhunyqxoys {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
/* /Components/Pages/Photo.razor.rz.scp.css */
.photo-page[b-azo7hpehwe] {
    --accent: #8A2BE2; /* Fialová z vašeho loga pro jemnou vazbu */
    --gold: #dab68b;
    --text: #1d1d1f;
    --bg: #ffffff;
    background-color: var(--bg);
    color: var(--text);
    min-height: 100vh;
    padding: 0 5%;
}

/* Navigace */
.nav-minimal[b-azo7hpehwe] {
    padding: 3rem 0;
}

.back-link[b-azo7hpehwe] {
    color: #888;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
}

    .back-link:hover[b-azo7hpehwe] {
        color: var(--accent);
    }

.arrow[b-azo7hpehwe] {
    font-size: 1.2rem;
    vertical-align: middle;
}

/* Hero */
.photo-hero[b-azo7hpehwe] {
    text-align: center;
    padding: 4rem 0 8rem;
}

.serif-title[b-azo7hpehwe] {
    font-family: 'Viaoda Libre', serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -2px;
}

    .serif-title span[b-azo7hpehwe] {
        font-style: italic;
        color: var(--gold);
    }

.duo-info[b-azo7hpehwe] {
    margin-top: 2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #bbb;
}

/* Galerie - Bento/Masonry na bílém podkladě */
.gallery-grid[b-azo7hpehwe] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 350px;
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
}

.item[b-azo7hpehwe] {
    background-size: cover;
    background-position: center;
    background-color: #f5f5f7;
    border-radius: 24px; /* Stejné zaoblení jako u Bento karet na Home */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #f0f0f2;
}

    .item:hover[b-azo7hpehwe] {
        transform: scale(1.02);
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    }

.tall[b-azo7hpehwe] {
    grid-row: span 2;
}

.wide[b-azo7hpehwe] {
    grid-column: span 2;
}

/* Služby - čistý horizontální layout */
.services-clean[b-azo7hpehwe] {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1100px;
    margin: 10rem auto;
    border-top: 1px solid #eee;
    padding-top: 4rem;
}

.s-label[b-azo7hpehwe] {
    font-family: 'Viaoda Libre', serif;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.s-item h3[b-azo7hpehwe] {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.s-item p[b-azo7hpehwe] {
    color: #86868b;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 300px;
}

/* Footer */
.photo-footer[b-azo7hpehwe] {
    padding: 5rem 0 10rem;
    text-align: center;
}

.contact-line[b-azo7hpehwe] {
    font-size: 1.5rem;
    font-weight: 500;
}

    .contact-line a[b-azo7hpehwe] {
        color: var(--accent);
        text-decoration: none;
        background: linear-gradient(var(--accent), var(--accent)) bottom left no-repeat;
        background-size: 0% 2px;
        transition: background-size 0.3s;
    }

        .contact-line a:hover[b-azo7hpehwe] {
            background-size: 100% 2px;
        }

/* Celá karta jako odkaz */
.photo-card[b-azo7hpehwe] {
    text-decoration: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Šipka, která se objeví při hoveru */
.go-icon[b-azo7hpehwe] {
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.photo-card:hover .go-icon[b-azo7hpehwe] {
    opacity: 1;
    transform: translateX(0);
}

/* Zajištění, že texty zůstanou čitelné */
.photo-card h3[b-azo7hpehwe] {
    color: var(--text);
}

.photo-card p[b-azo7hpehwe] {
    color: var(--text-muted);
}

.photo-card:hover[b-azo7hpehwe] {
    border-color: var(--gold);
    background: #fff;
}

@media (max-width: 850px) {
    .services-clean[b-azo7hpehwe] {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .s-item p[b-azo7hpehwe] {
        margin: 0 auto;
    }

    .wide[b-azo7hpehwe] {
        grid-column: span 1;
    }
}
