/* _content/HamecoWEB/Pages/OmOss.razor.rz.scp.css */
.image-gallery[b-4lry6y3xtn] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item[b-4lry6y3xtn] {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img[b-4lry6y3xtn] {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item img:hover[b-4lry6y3xtn] {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .image-gallery[b-4lry6y3xtn] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item img[b-4lry6y3xtn] {
        height: 250px;
    }
}
/* _content/HamecoWEB/Pages/Produkter.razor.rz.scp.css */
.products-grid[b-mrubmisl4o] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.product-item[b-mrubmisl4o] {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.product-item:hover[b-mrubmisl4o] {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.product-item img[b-mrubmisl4o] {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.product-content[b-mrubmisl4o] {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-content h3[b-mrubmisl4o] {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.product-content p[b-mrubmisl4o] {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #666;
    flex-grow: 1;
}

.product-button[b-mrubmisl4o] {
    background-color: #070d59;
    color: white;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    display: inline-block;
}

.product-button:hover[b-mrubmisl4o] {
    background-color: #0a1270;
    color: white;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .product-item[b-mrubmisl4o] {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .product-item img[b-mrubmisl4o] {
        height: 200px;
    }

    .product-content[b-mrubmisl4o] {
        padding: 1rem;
    }

    .product-content h3[b-mrubmisl4o] {
        font-size: 1.3rem;
    }
}
/* _content/HamecoWEB/Pages/Referanser.razor.rz.scp.css */
.container[b-80tqh0l70q] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-header[b-80tqh0l70q] {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 3px solid #0066cc;
}

.page-header h1[b-80tqh0l70q] {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header .lead[b-80tqh0l70q] {
    color: #666;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .container[b-80tqh0l70q] {
        padding: 30px 15px;
    }

    .page-header[b-80tqh0l70q] {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }

    .page-header h1[b-80tqh0l70q] {
        font-size: 2rem;
    }

    .page-header .lead[b-80tqh0l70q] {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .page-header h1[b-80tqh0l70q] {
        font-size: 1.75rem;
    }

    .page-header .lead[b-80tqh0l70q] {
        font-size: 1rem;
    }
}
/* _content/HamecoWEB/Shared/CallToActionFooter.razor.rz.scp.css */
.cta-footer[b-ocfmv5izsy] {
    background-color: #070d59;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 4rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.cta-footer p[b-ocfmv5izsy] {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    .cta-footer[b-ocfmv5izsy] {
        padding: 2rem 1rem;
    }

    .cta-footer p[b-ocfmv5izsy] {
        font-size: 1.2rem;
    }
}
/* _content/HamecoWEB/Shared/MainLayout.razor.rz.scp.css */
.page[b-038mlcnq3b] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-038mlcnq3b] {
    flex: 1;
}

.top-row[b-038mlcnq3b] {
    background-color: #ceddef;
    border-bottom: 2px solid #e0e0e0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.brand[b-038mlcnq3b] {
    display: flex;
    align-items: center;
}

.brand-link[b-038mlcnq3b] {
    color: #1a1a1a;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.brand-link:hover[b-038mlcnq3b] {
    opacity: 0.8;
}

.logo[b-038mlcnq3b] {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.external-links[b-038mlcnq3b] {
    display: flex;
    align-items: center;
}

.external-links a[b-038mlcnq3b] {
    color: #0066cc;
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.external-links a:hover[b-038mlcnq3b] {
    color: #004499;
}

article[b-038mlcnq3b] {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    padding-top: 1.5rem;
}

@media (max-width: 640.98px) {
    .top-row[b-038mlcnq3b] {
        flex-wrap: wrap;
        height: auto;
        padding: 0.5rem 1rem;
    }

    .external-links[b-038mlcnq3b] {
        display: none;
    }

    article[b-038mlcnq3b] {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}
/* _content/HamecoWEB/Shared/NavMenu.razor.rz.scp.css */
.nav-menu[b-1v1laz3md4] {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    margin: 0 2rem;
}

.navbar-toggler[b-1v1laz3md4] {
    display: none;
    background-color: #f0f0f0;
    border: 1px solid #d0d0d0;
    color: #333;
    padding: 0.5rem;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 4px;
}

.navbar-toggler:hover[b-1v1laz3md4] {
    background-color: #e0e0e0;
}

.navbar-toggler-icon[b-1v1laz3md4] {
    color: #333;
}

nav[b-1v1laz3md4] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link[b-1v1laz3md4] {
    color: #333;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link:hover[b-1v1laz3md4] {
    background-color: #f5f5f5;
    color: #0066cc;
}

.nav-link.active[b-1v1laz3md4] {
    color: #0066cc;
    background-color: #e6f2ff;
}

.oi[b-1v1laz3md4] {
    font-size: 1rem;
}

/* Mobile styles */
@media (max-width: 640.98px) {
    .navbar-toggler[b-1v1laz3md4] {
        display: block;
    }

    nav[b-1v1laz3md4] {
        position: absolute;
        top: 70px;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        align-items: stretch;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        min-width: 200px;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
    }

    nav.collapsed[b-1v1laz3md4] {
        display: none;
    }

    nav.expanded[b-1v1laz3md4] {
        display: flex;
    }

    .nav-link[b-1v1laz3md4] {
        padding: 1rem;
        border-radius: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link:last-child[b-1v1laz3md4] {
        border-bottom: none;
    }
}
/* _content/HamecoWEB/Shared/PageHeader.razor.rz.scp.css */
.page-header[b-ntp17pcxr3] {
    background-color: #070d59;
    color: white;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: -1.5rem;
    margin-bottom: 2rem;
}

.page-header h1[b-ntp17pcxr3] {
    background-color: transparent;
    color: white;
    padding: 1.2rem 0;
    margin: 0 auto;
    max-width: 1200px;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .page-header[b-ntp17pcxr3] {
        margin-top: -1rem;
    }

    .page-header h1[b-ntp17pcxr3] {
        font-size: 2rem;
        padding: 1rem 1rem;
    }
}
/* _content/HamecoWEB/Shared/ReferenceProject.razor.rz.scp.css */
.reference-project[b-wrn309qbjg] {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid #e0e0e0;
}

.reference-project:last-child[b-wrn309qbjg] {
    border-bottom: none;
}

.reference-content[b-wrn309qbjg] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.reference-text h2[b-wrn309qbjg] {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.customer-logo[b-wrn309qbjg] {
    margin-bottom: 20px;
}

.customer-logo img[b-wrn309qbjg] {
    max-width: 200px;
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.customer-logo img:hover[b-wrn309qbjg] {
    filter: grayscale(0%);
    opacity: 1;
}

.project-details[b-wrn309qbjg] {
    margin-bottom: 25px;
    padding: 15px;
    background-color: #f8f9fa;
    border-left: 4px solid #0066cc;
    border-radius: 4px;
}

.detail-item[b-wrn309qbjg] {
    margin-bottom: 8px;
    color: #555;
    font-size: 0.95rem;
}

.detail-item:last-child[b-wrn309qbjg] {
    margin-bottom: 0;
}

.detail-item strong[b-wrn309qbjg] {
    color: #333;
    font-weight: 600;
    display: inline-block;
    min-width: 140px;
}

.detail-item span[b-wrn309qbjg] {
    color: #666;
}

.description[b-wrn309qbjg] {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

.reference-gallery[b-wrn309qbjg] {
    position: relative;
}

.main-image[b-wrn309qbjg] {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: #f5f5f5;
}

.main-image img[b-wrn309qbjg] {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.main-image:hover img[b-wrn309qbjg] {
    transform: scale(1.02);
}

.thumbnail-container[b-wrn309qbjg] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.thumbnail[b-wrn309qbjg] {
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background-color: #f5f5f5;
    aspect-ratio: 1;
}

.thumbnail img[b-wrn309qbjg] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.thumbnail:hover[b-wrn309qbjg] {
    border-color: #ddd;
    transform: translateY(-2px);
}

.thumbnail.active[b-wrn309qbjg] {
    border-color: #0066cc;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

.thumbnail:hover img[b-wrn309qbjg] {
    opacity: 0.8;
}

.thumbnail.active img[b-wrn309qbjg] {
    opacity: 1;
}

/* Responsive design */
@media (max-width: 992px) {
    .reference-content[b-wrn309qbjg] {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reference-text[b-wrn309qbjg] {
        order: 2;
    }

    .reference-gallery[b-wrn309qbjg] {
        order: 1;
    }

    .main-image img[b-wrn309qbjg] {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .reference-text h2[b-wrn309qbjg] {
        font-size: 1.75rem;
    }

    .thumbnail-container[b-wrn309qbjg] {
        grid-template-columns: repeat(4, 1fr);
    }

    .main-image img[b-wrn309qbjg] {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .reference-project[b-wrn309qbjg] {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .reference-text h2[b-wrn309qbjg] {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .description[b-wrn309qbjg] {
        font-size: 0.95rem;
    }

    .thumbnail-container[b-wrn309qbjg] {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .main-image img[b-wrn309qbjg] {
        height: 250px;
    }
}
/* _content/HamecoWEB/Shared/Slideshow.razor.rz.scp.css */
.slideshow-container[b-8qvpfnlbs5] {
    position: relative;
    max-width: 100%;
    margin: auto;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slide[b-8qvpfnlbs5] {
    display: none;
    width: 100%;
    position: relative;
}

.slide.active[b-8qvpfnlbs5] {
    display: block;
    animation: fade-b-8qvpfnlbs5 0.5s;
}

.slide img[b-8qvpfnlbs5] {
    width: 100%;
    height: auto;
    display: block;
    max-height: 600px;
    object-fit: cover;
}

@keyframes fade-b-8qvpfnlbs5 {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

.prev[b-8qvpfnlbs5], .next[b-8qvpfnlbs5] {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
}

.next[b-8qvpfnlbs5] {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover[b-8qvpfnlbs5], .next:hover[b-8qvpfnlbs5] {
    background-color: rgba(0, 0, 0, 0.8);
}

.dots[b-8qvpfnlbs5] {
    text-align: center;
    padding: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.dot[b-8qvpfnlbs5] {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.dot.active[b-8qvpfnlbs5], .dot:hover[b-8qvpfnlbs5] {
    background-color: white;
}

.no-images[b-8qvpfnlbs5] {
    padding: 40px;
    text-align: center;
    color: #666;
}

@media (max-width: 640.98px) {
    .slide img[b-8qvpfnlbs5] {
        max-height: 400px;
    }

    .prev[b-8qvpfnlbs5], .next[b-8qvpfnlbs5] {
        padding: 12px;
        font-size: 16px;
    }
}
