/* _content/Zimmerei_Karch_DotNet8/Components/Components/Footer.razor.rz.scp.css */

.footer-text strong[b-lz4jl1rcv3] {
    color: white;
    font-weight: 600;
}

.contact-section[b-lz4jl1rcv3] {
    margin-top: 1rem;
    padding: 1rem;
    background-color: rgba(139, 69, 19, 0.4);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.email-link[b-lz4jl1rcv3] {
    color: #FFE4B5;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    border-bottom: 1px solid transparent;
}

.email-link:hover[b-lz4jl1rcv3] {
    color: #FFEFD5;
    border-bottom: 1px solid #FFEFD5;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(255, 228, 181, 0.5);
}

.social-icons[b-lz4jl1rcv3] {
    margin: 1.5rem 0;
    padding: 1rem 0;
}

.social-link[b-lz4jl1rcv3] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.3), rgba(139, 69, 19, 0.3));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-link:hover[b-lz4jl1rcv3] {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.5), rgba(210, 105, 30, 0.5));
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: white;
}

/* Individual social media colors on hover */
.social-link.twitter:hover[b-lz4jl1rcv3] {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
    border-color: #1DA1F2;
    color: white;
}

.social-link.facebook:hover[b-lz4jl1rcv3] {
    background: linear-gradient(135deg, #1877F2, #0d65d9);
    border-color: #1877F2;
    color: white;
}

.social-link.instagram:hover[b-lz4jl1rcv3] {
    background: linear-gradient(135deg, #E4405F, #C13584);
    border-color: #E4405F;
    color: white;
}

.social-link.linkedin:hover[b-lz4jl1rcv3] {
    background: linear-gradient(135deg, #0A66C2, #004182);
    border-color: #0A66C2;
    color: white;
}

/* Animation for footer entrance */
@keyframes fadeInUp-b-lz4jl1rcv3 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-footer[b-lz4jl1rcv3] {
    animation: fadeInUp-b-lz4jl1rcv3 0.6s ease-out;
}
/* _content/Zimmerei_Karch_DotNet8/Components/Components/Fuhrpark/TruckCard.razor.rz.scp.css */
/* _content/Zimmerei_Karch_DotNet8/Components/Components/SectionHeader.razor.rz.scp.css */
.section-header[b-yafyaspdro] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.line[b-yafyaspdro] {
    width: 40px;
    height: 2px;
    background-color: #F9A602;
}

.section-header h2[b-yafyaspdro] {
    margin: 0;
    font-weight: 700;
    font-size: 2rem;
}
/* _content/Zimmerei_Karch_DotNet8/Components/Components/ServiceCard.razor.rz.scp.css */
.services-container[b-get65otnqx] {
    padding: 40px 20px;
    max-width: 1600px;
    margin: 0 auto;
}

.services-grid[b-get65otnqx] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Service Card */
.service-card[b-get65otnqx] {
    display: grid;
    grid-template-columns: 45% 55%;
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.06), /* Inner soft border */ inset 0 0 0 1px rgba(255, 255, 255, 0.5); /* Light inner glow */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 300px;
}

.service-card:hover[b-get65otnqx] {
    transform: translateY(-8px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1),
    0 8px 24px rgba(0, 0, 0, 0.15); /* Even stronger on hover */
}

/* Card Image Section */
.card-image[b-get65otnqx] {
    position: relative;
    height: 100%;
}

.card-image img[b-get65otnqx] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .card-image img[b-get65otnqx] {
    transform: scale(1.1);
}

.image-overlay[b-get65otnqx] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .image-overlay[b-get65otnqx] {
    opacity: 1;
}

/* Card Content Section */
.card-content[b-get65otnqx] {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.card-title[b-get65otnqx] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.service-card:hover .card-title[b-get65otnqx] {
    color: #FF8C42;
}

/* Title Underline */
.title-underline[b-get65otnqx] {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #FF8C42, #FFB84D);
    border-radius: 2px;
    margin-bottom: 16px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .title-underline[b-get65otnqx] {
    width: 80px;
}

.card-description[b-get65otnqx] {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

/* Card Footer */
.card-footer-button[b-get65otnqx] {
    margin-top: auto;
}

.learn-more-btn[b-get65otnqx] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #FF8C42, #FFB84D);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(255, 140, 66, 0.3);
    opacity: 0;
    transform: translateX(-10px);
}

.service-card:hover .learn-more-btn[b-get65otnqx] {
    opacity: 1;
    transform: translateX(0);
}

.learn-more-btn:hover[b-get65otnqx] {
    background: linear-gradient(135deg, #e67a2e, #f0a43a);
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.4);
    transform: translateX(4px);
}

.arrow-icon[b-get65otnqx] {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.learn-more-btn:hover .arrow-icon[b-get65otnqx] {
    transform: translateX(4px);
}

@media (max-width: 1800px) {
    .services-grid[b-get65otnqx] {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid[b-get65otnqx] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-card[b-get65otnqx] {
        grid-template-columns: 1fr;
        height: auto;
    }

    .services-container[b-get65otnqx] {
        width: 100%;
    }

    .card-image[b-get65otnqx] {
        height: 200px;
    }

    .card-content[b-get65otnqx] {
        padding: 24px 20px;
    }

    .card-title[b-get65otnqx] {
        font-size: 1.5rem;
    }

    .learn-more-btn[b-get65otnqx] {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 576px) {
    .services-container[b-get65otnqx] {
        padding: 20px 15px;
    }

    .services-grid[b-get65otnqx] {
        gap: 20px;
    }

    .card-image[b-get65otnqx] {
        height: 180px;
    }
}
/* _content/Zimmerei_Karch_DotNet8/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-6bo14bokyb] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-6bo14bokyb] {
    flex: 1;
}

.sidebar[b-6bo14bokyb] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-6bo14bokyb] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.top-row[b-6bo14bokyb]  a, .top-row[b-6bo14bokyb]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
}

.top-row[b-6bo14bokyb]  a:hover, .top-row[b-6bo14bokyb]  .btn-link:hover {
    text-decoration: underline;
}

.top-row[b-6bo14bokyb]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
    .top-row[b-6bo14bokyb] {
        justify-content: space-between;
    }

    .top-row[b-6bo14bokyb]  a, .top-row[b-6bo14bokyb]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-6bo14bokyb] {
        flex-direction: row;
    }

    .sidebar[b-6bo14bokyb] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-6bo14bokyb] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-6bo14bokyb]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-6bo14bokyb], article[b-6bo14bokyb] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-6bo14bokyb] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-6bo14bokyb] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* _content/Zimmerei_Karch_DotNet8/Components/Pages/Firma/Geschichte.razor.rz.scp.css */
.history-card[b-qg2hfx0zg0] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2.5rem;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}


/* _content/Zimmerei_Karch_DotNet8/Components/Pages/Firma/Team.razor.rz.scp.css */
.timeline-container[b-lop8akn6qo] {
    position: relative;
    padding: 2rem 0;
}

.timeline-item[b-lop8akn6qo] {
    display: grid;
    grid-template-columns: 100px 60px 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item-last[b-lop8akn6qo] {
    margin-bottom: 0;
}

/* Jahr */
.timeline-year[b-lop8akn6qo] {
    text-align: right;
    padding-top: 0.5rem;
}

/* Timeline Linie */
.timeline-line[b-lop8akn6qo] {
    position: relative;
    display: flex;
    justify-content: center;
}

.timeline-line[b-lop8akn6qo]::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--rz-primary) 0%, var(--rz-secondary) 100%);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item-last .timeline-line[b-lop8akn6qo]::before {
    height: 30px;
}

/* Timeline Punkt */
.timeline-dot[b-lop8akn6qo] {
    width: 20px;
    height: 20px;
    background: var(--rz-primary);
    border: 4px solid var(--rz-base-100);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px var(--rz-primary-lighter);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot[b-lop8akn6qo] {
    transform: scale(1.3);
    box-shadow: 0 0 0 6px var(--rz-primary-lighter);
}

/* Content */
.timeline-content[b-lop8akn6qo] {
    padding-top: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .timeline-item[b-lop8akn6qo] {
        grid-template-columns: 60px 40px 1fr;
        gap: 0.5rem;
    }

    .timeline-year[b-lop8akn6qo] {
        font-size: 0.9rem;
    }

    .timeline-dot[b-lop8akn6qo] {
        width: 16px;
        height: 16px;
    }
}

/* Animation beim Laden */
@keyframes fadeInUp-b-lop8akn6qo {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item[b-lop8akn6qo] {
    animation: fadeInUp-b-lop8akn6qo 0.6s ease-out;
    animation-fill-mode: both;
}

.timeline-item:nth-child(1)[b-lop8akn6qo] { animation-delay: 0.1s; }
.timeline-item:nth-child(2)[b-lop8akn6qo] { animation-delay: 0.2s; }
.timeline-item:nth-child(3)[b-lop8akn6qo] { animation-delay: 0.3s; }
.timeline-item:nth-child(4)[b-lop8akn6qo] { animation-delay: 0.4s; }
.timeline-item:nth-child(5)[b-lop8akn6qo] { animation-delay: 0.5s; }
/* _content/Zimmerei_Karch_DotNet8/Components/Pages/Karriere.razor.rz.scp.css */
.text-overlay[b-aaz19og9xv] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 1;
}

.banner-overlay[b-aaz19og9xv] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    pointer-events: none;
}


.job-card[b-aaz19og9xv] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2.5rem;
    flex: 1;
    min-width: 450px;
    max-width: 600px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.job-card:hover[b-aaz19og9xv] {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.job-card-header[b-aaz19og9xv] {
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f7fafc;
    margin-bottom: 1.5rem;
}

.job-card-body[b-aaz19og9xv] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.job-section[b-aaz19og9xv] {
    margin-bottom: 0.5rem;
}

.job-list[b-aaz19og9xv] {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.job-list li[b-aaz19og9xv] {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
}

.job-list li[b-aaz19og9xv]:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF8C00;
    font-weight: bold;
    font-size: 1.1rem;
}

.job-cta[b-aaz19og9xv] {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 2px solid #f7fafc;
    text-align: center;
}

.apply-button[b-aaz19og9xv] {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%) !important;
    border: none !important;
    padding: 0.75rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 6px rgba(255, 140, 0, 0.3) !important;
}

.apply-button:hover[b-aaz19og9xv] {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 12px rgba(255, 140, 0, 0.4) !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .job-card[b-aaz19og9xv] {
        min-width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .job-card[b-aaz19og9xv] {
        padding: 1.5rem;
    }
}
/* _content/Zimmerei_Karch_DotNet8/Components/Pages/Kontakt.razor.rz.scp.css */
.text-overlay[b-g4746rs63m] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 1;
}

.banner-overlay[b-g4746rs63m] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    pointer-events: none;
}

.contact-card[b-g4746rs63m] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.contact-card:hover[b-g4746rs63m] {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(255, 140, 0, 0.3), 0 10px 10px -5px rgba(255, 140, 0, 0.2);
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
}

.contact-card:hover .contact-card-header[b-g4746rs63m],
.contact-card:hover .contact-card-body[b-g4746rs63m] {
    opacity: 0;
    transform: translateX(30px);
}

.contact-card:hover .hover-action[b-g4746rs63m] {
    opacity: 1;
    transform: translate(-50%, -50%) translateX(0);
}

.contact-card-header[b-g4746rs63m] {
    text-align: center;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(253, 139, 0, 0.13);
    transition: all 0.4s ease;
}

.contact-icon[b-g4746rs63m] {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(253, 139, 0, 0.72) 0%, rgba(255, 165, 0, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon[b-g4746rs63m] {
    transform: scale(1.1);
}

.contact-card-body[b-g4746rs63m] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    transition: all 0.4s ease;
}

.hover-action[b-g4746rs63m] {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%) translateX(-150px);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.map-container[b-g4746rs63m] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-card[b-g4746rs63m] {
        min-width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-card[b-g4746rs63m] {
        padding: 1.25rem;
    }

    .map-container iframe[b-g4746rs63m] {
        height: 250px !important;
    }

    .hover-action[b-g4746rs63m] {
        font-size: 1rem;
    }
}
/* _content/Zimmerei_Karch_DotNet8/Components/Pages/Leistungen/Leistungen.razor.rz.scp.css */
.responsive-button-row[b-mgib05dm82] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* center horizontally */
    align-items: center; /* center vertically in row */
    gap: 10px;
    padding: 10px 0;
}

.responsive-button-row .rz-button[b-mgib05dm82] {
    flex: 1 1 120px; /* Grow and shrink, min width 120px. Adjust as needed */
    min-width: 100px;
    max-width: 200px;
    margin: 0;
}
