/* Hero image grid zoals origineel */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 600px;
    height: 600px;
    margin: 0 auto;
}
.item.large {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 250px;
    border-radius: 1.5rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}
.item.large img.img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Tablet breakpoint */
@media (max-width: 1024px) {
    .image-grid {
        max-width: 500px;
        height: 500px;
        gap: 1.25rem;
    }
    .item.large {
        min-height: 200px;
        border-radius: 1.25rem;
    }
}
/* Mobile breakpoint */
@media (max-width: 768px) {
    .image-grid {
        max-width: 100%;
        height: auto;
        min-height: 400px;
        gap: 1rem;
    }
    .item.large {
        min-height: 180px;
        border-radius: 1rem;
    }
}
/* Small mobile breakpoint */
@media (max-width: 480px) {
    .image-grid {
        min-height: 320px;
        gap: 0.75rem;
    }
    .item.large {
        min-height: 150px;
        border-radius: 0.75rem;
    }
}
/* ToverPrint Custom Styles */
:root {
    --tover-blue: #4169E1;
    --tover-dark: #2C3E50;
    --tover-gray: #6B7280;
}

/* Logo Circle */
.logo-circle {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4169E1 0%, #5B7FE8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: white;
    box-shadow: 0 4px 6px rgba(65, 105, 225, 0.2);
}

/* Gradient backgrounds */
.gradient-bg {
    background: linear-gradient(135deg, #4169E1 0%, #5B7FE8 100%);
}

/* Blob background */
.blob-bg {
    position: relative;
    overflow: hidden;
}

.blob-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: blob-float 20s ease-in-out infinite;
}

@keyframes blob-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -50px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Hover effects */
.hover-scale {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Professionele card en hover-lift styling */
.hover-lift {
    transition: box-shadow 0.25s, transform 0.25s;
}
.hover-lift:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 8px 32px 0 rgba(65,105,225,0.13), 0 2px 8px 0 rgba(44,62,80,0.10);
}
.card, .product-card {
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px 0 rgba(44,62,80,0.08), 0 1.5px 4px 0 rgba(65,105,225,0.06);
    border: 1px solid #e5e7eb;
    background: #fff;
    transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover, .product-card:hover {
    box-shadow: 0 8px 32px 0 rgba(65,105,225,0.13), 0 2px 8px 0 rgba(44,62,80,0.10);
    transform: translateY(-6px) scale(1.015);
}
.card img, .product-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1.25rem;
    background: #f3f4f6;
}

/* Section spacing helpers */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--tover-dark);
    letter-spacing: -1px;
}
.section-subtitle {
    font-size: 1.25rem;
    color: var(--tover-gray);
    margin-bottom: 2.5rem;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delay {
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

/* Pulse effect for buttons */
@keyframes pulse-blue {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(65, 105, 225, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(65, 105, 225, 0);
    }
}

.pulse-blue {
    animation: pulse-blue 2s infinite;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #4169E1 0%, #5B7FE8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile menu animation */
.mobile-menu {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Print texture overlay */
.print-texture {
    position: relative;
}

.print-texture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.3;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4169E1 0%, #5B7FE8 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4169E1;
}

/* Ensure no white seam between CTA (#contact) and footer */
#contact {
    margin-bottom: 0 !important;
    /* padding-bottom reset removed to allow section padding to apply */
}

footer {
    margin-top: 0 !important;
}

/* In case a 1-2px seam remains on some browsers, slightly overlap footer */
@media (min-width: 0px) {
    footer {
        margin-top: -1px !important;
    }
}
