/* _content/TachoSerwisWebApp/Components/Layout/MainLayout.razor.rz.scp.css */
/* Pasek nawigacji */
.appbar[b-gy02bci84c] {
    background: #fff;
    border-bottom: 1px solid #e6eaf4;
}

    /* Zbijamy padding toolbara, żeby wysokość była kontrolowana */
    .appbar[b-gy02bci84c]  .mud-toolbar {
        padding-block: 6px;
    }

/* === Baner + tagline (lewa strona AppBar) === */
.brand-block[b-gy02bci84c] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    gap: 4px;
    padding-right: 8px; /* oddech od menu */
    transition: opacity .2s ease;
}

    .brand-block:hover[b-gy02bci84c] {
        opacity: .9;
    }

.nav-banner[b-gy02bci84c] {
    display: block;
    height: 38px; /* wysokość banera na desktopie */
    max-height: 42px;
    width: auto;
    max-width: 260px; /* bezpiecznik na szerokie płótno */
    object-fit: contain;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,.08));
}

/* Dwie linie hasła pod banerem */
.tagline[b-gy02bci84c] {
    line-height: 1.1;
}

    .tagline .t1[b-gy02bci84c] {
        color: #002B5B; /* granat */
        font-weight: 700;
        font-size: .95rem;
        letter-spacing: .2px;
    }

    .tagline .t2[b-gy02bci84c] {
        color: #334155; /* lekko jaśniejszy */
        font-weight: 500;
        font-size: .84rem;
    }

/* Delikatny hover na przyciskach menu */
.appbar[b-gy02bci84c]  .mud-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,.08);
    transition: all .2s ease;
}

/* Linki/mn – nie łamią się brzydko */
.appbar[b-gy02bci84c]  .mud-toolbar .mud-button {
    white-space: nowrap;
}

/* === Responsywność === */
@media (max-width: 1200px) {
    .nav-banner[b-gy02bci84c] {
        height: 36px;
        max-width: 230px;
    }

    .tagline .t1[b-gy02bci84c] {
        font-size: .9rem;
    }

    .tagline .t2[b-gy02bci84c] {
        font-size: .8rem;
    }
}

@media (max-width: 960px) {
    /* na tabletach zostaw baner, ukryj tekst, by nie podbijać wysokości */
    .nav-banner[b-gy02bci84c] {
        height: 34px;
        max-width: 210px;
    }

    .tagline[b-gy02bci84c] {
        display: none;
    }
}

@media (max-width: 600px) {
    .nav-banner[b-gy02bci84c] {
        height: 30px;
        max-width: 180px;
    }
}

/* Aktywny link (gdyby były MudNavLink) */
.appbar[b-gy02bci84c]  .mud-nav-link.active {
    font-weight: 600;
}
/* _content/TachoSerwisWebApp/Components/Pages/About.razor.rz.scp.css */
/* About Page Styles */

.about-container[b-8vpdlwqm2w] {
    margin-top: 32px;
}

.about-title[b-8vpdlwqm2w] {
    margin-bottom: 24px;
    color: #1976d2;
    font-weight: bold;
}

.about-content[b-8vpdlwqm2w] {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: start;
}

.about-text[b-8vpdlwqm2w] {
    margin-bottom: 16px;
}

.about-chips[b-8vpdlwqm2w] {
    margin-bottom: 24px;
}

.contact-card[b-8vpdlwqm2w] {
    height: fit-content;
}

.contact-title[b-8vpdlwqm2w] {
    margin-bottom: 16px;
    color: #1976d2;
    font-weight: bold;
}

.contact-item[b-8vpdlwqm2w] {
    margin-bottom: 12px;
}

.contact-icon[b-8vpdlwqm2w] {
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content[b-8vpdlwqm2w] {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-container[b-8vpdlwqm2w] {
        margin-top: 16px;
    }
}

@media (max-width: 480px) {
    .contact-card[b-8vpdlwqm2w] {
        margin-top: 16px;
    }
}




/* _content/TachoSerwisWebApp/Components/Pages/Contact.razor.rz.scp.css */
/* Contact Page Styles */

.contact-container[b-gf6si6114z] {
    margin-top: 32px;
}

.contact-title[b-gf6si6114z] {
    margin-bottom: 24px;
    color: #1976d2;
    font-weight: bold;
}

.contact-content[b-gf6si6114z] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.form-card[b-gf6si6114z] {
    height: fit-content;
}

.form-title[b-gf6si6114z] {
    margin-bottom: 16px;
    color: #1976d2;
    font-weight: bold;
}

.form-field[b-gf6si6114z] {
    margin-bottom: 16px;
}

.form-button[b-gf6si6114z] {
    width: 100%;
}

.contact-info[b-gf6si6114z] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card[b-gf6si6114z] {
    height: fit-content;
}

.contact-info-title[b-gf6si6114z] {
    margin-bottom: 16px;
    color: #1976d2;
    font-weight: bold;
}

.contact-item[b-gf6si6114z] {
    margin-bottom: 16px;
}

.contact-icon[b-gf6si6114z] {
    margin-right: 12px;
}

.contact-details[b-gf6si6114z] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hours-card[b-gf6si6114z] {
    height: fit-content;
}

.hours-title[b-gf6si6114z] {
    margin-bottom: 16px;
    color: #1976d2;
    font-weight: bold;
}

.hours-item[b-gf6si6114z] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.hours-label[b-gf6si6114z] {
    color: #666;
}

.hours-value[b-gf6si6114z] {
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content[b-gf6si6114z] {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-container[b-gf6si6114z] {
        margin-top: 16px;
    }
}

@media (max-width: 480px) {
    .contact-info[b-gf6si6114z] {
        gap: 16px;
    }
    
    .form-card[b-gf6si6114z] {
        margin-bottom: 16px;
    }
}




/* _content/TachoSerwisWebApp/Components/Pages/Home.razor.rz.scp.css */
/* Home Page Styles */

.hero-section[b-mlccyhcpx7] {
    margin-top: 0;
}

.service-card[b-mlccyhcpx7] {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover[b-mlccyhcpx7] {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15) !important;
}

.hero-gradient[b-mlccyhcpx7] {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.1) 0%, rgba(211, 47, 47, 0.1) 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-content[b-mlccyhcpx7] {
    max-width: 600px;
    margin: 0 auto;
}

.hero-buttons[b-mlccyhcpx7] {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.services-section[b-mlccyhcpx7] {
    margin-top: 32px;
    margin-bottom: 32px;
}

.services-title[b-mlccyhcpx7] {
    text-align: center;
    margin-bottom: 24px;
}

.services-grid[b-mlccyhcpx7] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.about-section[b-mlccyhcpx7] {
    margin-bottom: 32px;
}

.about-content[b-mlccyhcpx7] {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: center;
}

.about-avatar[b-mlccyhcpx7] {
    background: linear-gradient(45deg, #d32f2f, #1976d2);
    margin: 0 auto 16px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-buttons[b-mlccyhcpx7] {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content[b-mlccyhcpx7] {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid[b-mlccyhcpx7] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-gradient[b-mlccyhcpx7] {
        padding: 40px 0;
    }
    
    .hero-buttons[b-mlccyhcpx7] {
        gap: 12px;
    }
}




/* _content/TachoSerwisWebApp/Components/Pages/Services.razor.rz.scp.css */
/* Services Page Styles */

.services-container[b-k0tpw69ftz] {
    margin-top: 32px;
}

.services-title[b-k0tpw69ftz] {
    margin-bottom: 24px;
    color: #1976d2;
    font-weight: bold;
}

.services-grid[b-k0tpw69ftz] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.service-card[b-k0tpw69ftz] {
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover[b-k0tpw69ftz] {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15) !important;
}

.service-icon[b-k0tpw69ftz] {
    margin-bottom: 16px;
}

.service-title[b-k0tpw69ftz] {
    margin-bottom: 12px;
    color: #1976d2;
}

.service-description[b-k0tpw69ftz] {
    margin-bottom: 16px;
}

.service-button[b-k0tpw69ftz] {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid[b-k0tpw69ftz] {
        grid-template-columns: 1fr;
    }
    
    .services-container[b-k0tpw69ftz] {
        margin-top: 16px;
    }
}

@media (max-width: 480px) {
    .service-card[b-k0tpw69ftz] {
        margin-bottom: 16px;
    }
}




