/* /Components/HeroSection.razor.rz.scp.css */
/* ===== Hero Root ===== */

.hero[b-ow84vt33tc] {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
}

/* ===== Layout ===== */

.hero-grid[b-ow84vt33tc] {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
    padding-block: 1rem;
}

/* ===== Content ===== */

.hero-content[b-ow84vt33tc] {
    max-width: 560px;
}

    .hero-content h1[b-ow84vt33tc] {
        font-size: clamp(2.2rem, 3.2vw, 3rem);
        line-height: 1.1;
        margin-bottom: 1.5rem;
        letter-spacing: -0.5px;
    }

.hero-subtext[b-ow84vt33tc] {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2.25rem;
    max-width: 58ch;
}

/* ===== CTA ===== */

.hero-cta[b-ow84vt33tc] {
    display: inline-block;
    padding: .85rem 1.6rem;
    border-radius: .6rem;
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
}

    .hero-cta:hover[b-ow84vt33tc] {
        filter: brightness(1.05);
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

/* ===== Media / Carousel ===== */

.hero-media[b-ow84vt33tc] {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 520px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    border: 2px solid var(--color-primary); /* RAMKA */
}

/* Slides */

.hero-slide[b-ow84vt33tc] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

    .hero-slide.active[b-ow84vt33tc] {
        opacity: 1;
    }


/* ===== Responsive ===== */

@media (max-width: 900px) {
    .hero-grid[b-ow84vt33tc] {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-media[b-ow84vt33tc] {
        order: -1;
    }
}
/* /Components/ProcessSection.razor.rz.scp.css */
.process[b-2rrysiu8p8] {
    background: var(--color-surface);
}

/* ===== Header ===== */

.process-header[b-2rrysiu8p8] {
    margin-bottom: 0px;
    position: relative;
    display: inline-block; /* KLUCZOWE */
    padding-bottom: -0.4rem;
}

.process-header[b-2rrysiu8p8]::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 100%; /* dopasowanie do tekstu */
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
}

/* ===== Layout ===== */

.process-list[b-2rrysiu8p8] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem 4rem;
    margin-top: 3rem;
}

/* ===== Item ===== */

.process-item[b-2rrysiu8p8] {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

/* ===== Number ===== */

.process-number[b-2rrysiu8p8] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    min-width: 3rem;
}

/* ===== Text ===== */

.process-content h3[b-2rrysiu8p8] {
    margin: 0 0 .5rem;
    font-size: 1.1rem;
}

.process-content p[b-2rrysiu8p8] {
    margin: 0;
    color: var(--color-text-muted);
}

.process-list[b-2rrysiu8p8] {
    position: relative;
}

.process-list[b-2rrysiu8p8]::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: var(--color-border);
    transform: translateX(-50%);
}


/* ===== Responsive ===== */

@media (max-width: 900px) {
    .process-list[b-2rrysiu8p8] {
        grid-template-columns: 1fr;
    }
}
/* /Components/ProjectsSection.razor.rz.scp.css */
/* File: Components/ProjectsSection.razor.css | Styles for projects section */
.projects-header[b-u28oc1l5kf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.section-title[b-u28oc1l5kf] {
    position: relative;
    display: inline-block;
    padding-bottom: .4rem;
}

    .section-title[b-u28oc1l5kf]::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: var(--color-primary);
        border-radius: 2px;
    }

.section-link[b-u28oc1l5kf] {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.projects-grid[b-u28oc1l5kf] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.project-card[b-u28oc1l5kf] {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-surface);
    border: 3px solid rgba(224,168,0,.25);
    box-shadow: 0 8px 28px rgba(0,0,0,.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .project-card:hover[b-u28oc1l5kf] {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0,0,0,.12);
    }


.project-card img[b-u28oc1l5kf] {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .3s ease;
}

.project-card:hover img[b-u28oc1l5kf] {
    transform: scale(1.03);
}

.project-card h3[b-u28oc1l5kf],
.project-card p[b-u28oc1l5kf] {
    margin-inline: 1rem;
}

.project-card h3[b-u28oc1l5kf] {
    margin-top: .85rem;
    margin-bottom: .4rem;
    font-size: 1rem;
}

.project-card a[b-u28oc1l5kf] {
    text-decoration:none;
}

.project-card p[b-u28oc1l5kf] {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

@media (max-width: 1024px) {
    .projects-grid[b-u28oc1l5kf] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .projects-grid[b-u28oc1l5kf] {
        grid-template-columns: 1fr;
    }
}
/* /Components/ServicesSection.razor.rz.scp.css */
/* =========================================
   ROOT
========================================= */

.services[b-stu7m8o9k8] {
    padding-block: clamp(2rem, 4vw, 3rem);
}


/* =========================================
   HEADER
========================================= */

.services-header[b-stu7m8o9k8] {
    margin-bottom: 3rem;
}

    .services-header h2[b-stu7m8o9k8] {
        position: relative;
        display: inline-block; /* KLUCZ */
        font-size: clamp(1.6rem, 2vw, 1.9rem);
        font-weight: 700;
        margin: 0;
        padding-bottom: .5rem;
    }

        .services-header h2[b-stu7m8o9k8]::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%; /* dopasowane do tekstu */
            height: 2px;
            background: var(--color-primary);
        }


/* =========================================
   GRID
========================================= */

.services-grid[b-stu7m8o9k8] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.2rem;
}


/* =========================================
   CARD
========================================= */

.service-card[b-stu7m8o9k8] {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 2rem 1.8rem;
    border: 1px solid rgba(224,168,0,.25);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .service-card:hover[b-stu7m8o9k8] {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(0,0,0,.08);
    }


/* =========================================
   ICON
========================================= */

.service-icon[b-stu7m8o9k8] {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    background: rgba(224,168,0,.12);
    color: var(--color-primary);
    margin-bottom: 1rem;
}


/* =========================================
   CONTENT
========================================= */

.service-card h3[b-stu7m8o9k8] {
    position: relative;
    display: inline-block; /* KLUCZ */
    margin: 0 0 .6rem;
    font-size: 1.05rem;
    font-weight: 700;
    padding-bottom: .4rem;
}

    .service-card h3[b-stu7m8o9k8]::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%; /* dopasowanie do tekstu */
        height: 2px;
        background: var(--color-primary);
    }

.service-card p[b-stu7m8o9k8] {
    margin: 0;
    line-height: 1.55;
    color: var(--color-text-muted);
    font-size: .95rem;
}


/* =========================================
   LINK
========================================= */

.service-link[b-stu7m8o9k8] {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease;
}

    .service-link:hover[b-stu7m8o9k8] {
        border-bottom: 1px solid var(--color-primary);
    }


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1024px) {
    .services-grid[b-stu7m8o9k8] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .services-grid[b-stu7m8o9k8] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Projects.razor.rz.scp.css */
section[b-9jk0h6c3ki] {
    padding: 1rem;
}

#realizacje-title[b-9jk0h6c3ki] {
    margin-bottom: 0px;
}

.projects-list[b-9jk0h6c3ki] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.project-row[b-9jk0h6c3ki] {
    display: flex;
    gap: 2rem;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 1.5rem;
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .project-row:hover[b-9jk0h6c3ki] {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .project-row img[b-9jk0h6c3ki] {
        width: 260px;
        height: 180px;
        object-fit: cover;
        border-radius: var(--radius-md);
        flex-shrink: 0;
    }

.project-row-content h2[b-9jk0h6c3ki] {
    margin: 0 0 .6rem;
    font-size: 1.2rem;
}

.project-row-content p[b-9jk0h6c3ki] {
    margin: 0 0 .8rem;
    color: var(--color-text-muted);
    max-width: 60ch;
}

.project-row-link[b-9jk0h6c3ki] {
    font-weight: 600;
    color: var(--color-primary);
}

@media (max-width: 900px) {
    .project-row[b-9jk0h6c3ki] {
        flex-direction: column;
        align-items: flex-start;
    }

        .project-row img[b-9jk0h6c3ki] {
            width: 100%;
            height: auto;
        }
}
/* /Pages/ProjectsItem.razor.rz.scp.css */
/* =========================================
   DETAIL ROOT
========================================= */

.project-detail[b-3fuzyufj8s] {
    padding-top: 1rem;
}

.back-link[b-3fuzyufj8s] {
    display: inline-block;
    margin-bottom: .5rem;
    text-decoration: none;
    color: var(--color-text-muted);
    font-size: .9rem;
}

/* WYŚRODKOWANY HEADER */

.project-title[b-3fuzyufj8s] {
    text-align: center;
    font-size: clamp(1.9rem, 2.5vw, 2.4rem);
    margin: 0 0 2rem 0;
}


/* =========================================
   LAYOUT
========================================= */

.project-top[b-3fuzyufj8s] {
    display: grid;
    grid-template-columns: minmax(380px, 520px) 1fr;
    gap: 3.5rem;
    align-items: start;
}

.project-image[b-3fuzyufj8s] {
    max-width: 520px;
    width: 100%;
}


/* =========================================
   CAROUSEL
========================================= */

.carousel[b-3fuzyufj8s] {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.carousel-slide-bg[b-3fuzyufj8s] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(30px) brightness(0.55);
    transform: scale(1.15);
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.carousel-slide[b-3fuzyufj8s] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 2;
}

    .carousel-slide-bg.active[b-3fuzyufj8s],
    .carousel-slide.active[b-3fuzyufj8s] {
        opacity: 1;
    }


/* =========================================
   ARROWS
========================================= */

.carousel-arrow[b-3fuzyufj8s] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--color-primary);
    cursor: pointer;
    transition: transform .25s ease;
    z-index: 3;
}

    .carousel-arrow:hover[b-3fuzyufj8s] {
        transform: translateY(-50%) scale(1.15);
    }

    .carousel-arrow.left[b-3fuzyufj8s] {
        left: 14px;
    }

    .carousel-arrow.right[b-3fuzyufj8s] {
        right: 14px;
    }


/* =========================================
   META – FINAL CLEAN
========================================= */

.project-meta[b-3fuzyufj8s] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 2rem;
    width: 100%;
}

/* kolumna */

.meta-item[b-3fuzyufj8s] {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    /* NA SIŁĘ usuwamy wszelkie border/border-radius */
    border: none !important;
    padding: 0 !important;
    background: none !important;
}

    /* nagłówek – wyraźny */

    .meta-item span[b-3fuzyufj8s] {
        font-size: .72rem;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--color-primary)
    }

    /* wartość – mniejsza i bardziej kompaktowa */

    .meta-item strong[b-3fuzyufj8s] {
        font-size: .95rem;
        font-weight: 600;
    }

    /* pionowe kreski */

    .meta-item:not(:last-child)[b-3fuzyufj8s]::after {
        content: "";
        position: absolute;
        right: -1.3rem;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 32px;
        background: var(--color-primary);
        opacity: .6;
        box-shadow: 0 0 6px var(--color-primary);
    }


/* =========================================
   CONTENT
========================================= */

.project-info[b-3fuzyufj8s] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-content[b-3fuzyufj8s] {
    height: 100%;
    align-items: stretch;
}

.content-section[b-3fuzyufj8s] {
    margin-bottom: 2rem;
}

.project-content h2[b-3fuzyufj8s],
.project-content h3[b-3fuzyufj8s] {
    position: relative;
    display: inline-block; /* KLUCZOWE */
    padding-bottom: .6rem;
}

.project-content h2[b-3fuzyufj8s]::after,
.project-content h3[b-3fuzyufj8s]::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%; /* dopasowuje się do tekstu */
        height: 2px;
        background: var(--color-primary);
        border-radius: 2px;
}

.project-content p[b-3fuzyufj8s] {
    line-height: 1.6;
}

.project-content ul[b-3fuzyufj8s] {
    margin-top: .5rem;
    padding-left: 1.2rem;
}

.project-content li[b-3fuzyufj8s] {
    margin-bottom: .45rem;
}

/* =========================================
   EMPTY STATE
========================================= */
.project-empty[b-3fuzyufj8s] {
    min-height: 50vh;
    display: flex;
    align-items: center;
    height:100%;
    margin: auto;
    padding: 15rem;
}

.project-empty-container[b-3fuzyufj8s] {
    text-align: center;
    margin: 0 auto;
}

.project-empty-box[b-3fuzyufj8s] {
    max-width: 500px;
    margin: 0 auto;
}

.project-empty-title[b-3fuzyufj8s] {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: .6rem;
}

.project-empty-text[b-3fuzyufj8s] {
    margin-bottom: 2rem;
    opacity: 0.8;
}

.project-empty-title[b-3fuzyufj8s]::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
    .project-top[b-3fuzyufj8s] {
        grid-template-columns: 1fr;
    }

    .project-image[b-3fuzyufj8s] {
        max-width: 100%;
    }

    .carousel[b-3fuzyufj8s] {
        aspect-ratio: 3 / 4;
    }

    .project-info[b-3fuzyufj8s] {
        max-width: 100%;
    }

    .project-meta[b-3fuzyufj8s] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-content: start;
    }

    .meta-item:not(:last-child)[b-3fuzyufj8s]::after {
        display: none;
    }
}
/* /Shared/Footer.razor.rz.scp.css */
/* ===== Footer Wrapper ===== */

.site-footer[b-xbz2i35vrg] {
    padding: 0px, 0px, 0px, 0px;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    font-size: .9rem;
}

/* ===== Grid ===== */

.footer-grid[b-xbz2i35vrg] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
}

/* ===== Titles ===== */

.footer-title[b-xbz2i35vrg] {
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: .7rem;
    color: var(--color-text);
    letter-spacing: .3px;
}

/* ===== Blocks ===== */

.footer-block[b-xbz2i35vrg] {
    text-align: left;
}

    .footer-block p[b-xbz2i35vrg] {
        margin: .3rem 0;
        color: var(--color-text-muted);
        line-height: 1.5;
    }

    /* ===== Links ===== */

    .footer-block a[b-xbz2i35vrg] {
        color: var(--color-text);
        text-decoration: none;
        font-weight: 500;
        transition: color .2s ease;
    }

        .footer-block a:hover[b-xbz2i35vrg] {
            color: var(--color-primary);
        }

    /* ===== Subtelny separator kolumn ===== */

    .footer-block:not(:last-child)[b-xbz2i35vrg] {
        border-right: 3px solid rgba(224,168,0,.25);
        padding-right: clamp(1rem, 2vw, 1.5rem);
    }

/* ===== Footer Bottom ===== */

.footer-bottom[b-xbz2i35vrg] {
    background: rgba(0,0,0,0.02);
    border-top: 1px solid rgba(224,168,0,.2);
    text-align: center;
}



    .footer-bottom small[b-xbz2i35vrg] {
        display: block;
        margin: .2rem 0;
        font-size: .8rem;
        color: var(--color-text-muted);
    }

.footer-credit a[b-xbz2i35vrg] {
    color: inherit;
    text-decoration: none;
}

    .footer-credit a:hover[b-xbz2i35vrg] {
        color: var(--color-primary);
    }

/* ===== Responsive ===== */

@media (max-width: 900px) {

    .footer-grid[b-xbz2i35vrg] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-block:not(:last-child)[b-xbz2i35vrg] {
        border-right: none;
        border-bottom: 1px solid rgba(224,168,0,.25);
        padding-right: 0;
        padding-bottom: 1rem;
    }
}


.footer-title[b-xbz2i35vrg] {
    position: relative;
    display: inline-block; /* KLUCZOWE */
    padding-bottom: .4rem;
}

    .footer-title[b-xbz2i35vrg]::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%; /* dopasowanie do tekstu */
        height: 2px;
        background: var(--color-primary);
        border-radius: 2px;
    }


.footer-block p:first-of-type[b-xbz2i35vrg] {
    font-weight: 500;
    color: var(--color-text);
}

.container.footer-grid[b-xbz2i35vrg] {
    padding-bottom: 1rem ;
}
/* /Shared/Header.razor.rz.scp.css */
/* ===== Header Root ===== */

.site-header[b-9g9fxjhndi] {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--color-surface-muted);
    border-bottom: 1px solid var(--color-border);
    padding-block: .6rem;
}

/* ===== Layout ===== */

.header-inner[b-9g9fxjhndi] {
    min-height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* ===== Logo ===== */

.header-logo[b-9g9fxjhndi] {
    display: flex;
    align-items: center;
    margin-right: 1rem;

}

    .header-logo img[b-9g9fxjhndi] {
        height: 60px;
        width: auto;
        display: block;
    }


/* ===== CTA Wrapper ===== */

.header-cta[b-9g9fxjhndi] {
    display: flex;
    align-items: center;
    gap: .75rem;
}

/* ===== Phone (główne CTA) ===== */

.header-phone[b-9g9fxjhndi] {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: 1rem;
    font-weight: 700;
    padding: .65rem 1.25rem;
    border-radius: .6rem;
    background: var(--color-primary);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(224,168,0,.35);
    transition: transform .1s ease, box-shadow .15s ease;
}

    .header-phone:hover[b-9g9fxjhndi] {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(224,168,0,.45);
    }

/* ===== Mail button ===== */

.header-mail[b-9g9fxjhndi] {
    padding: .6rem 1rem;
    border-radius: .6rem;
    border: 1px solid var(--color-border);
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--color-text);
    transition: background .15s ease;
}

    .header-mail:hover[b-9g9fxjhndi] {
        background: var(--color-surface-muted);
    }





/* ===== Responsive ===== */

@media (max-width: 768px) {

    .header-inner[b-9g9fxjhndi] {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .header-nav[b-9g9fxjhndi] {
        order: 3;
        width: 100%;
        gap: 1.25rem;
    }

    .header-phone[b-9g9fxjhndi] {
        margin-left: auto;
    }
}
