/* Custom styles for BLBuitenleven */

html {
    scroll-behavior: smooth;
}

/* Modern heading styles */
h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    letter-spacing: -0.02em;
}

/* Product image hover effect with modern shadow */
.product-image {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.product-image:hover {
    transform: translateY(-8px);
}

.product-image img {
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
    transition: box-shadow 0.3s ease, opacity 0.3s ease;
}

.product-image:hover img {
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.25);
}

/* Modern modal animation */
#modal {
    animation: fadeIn 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Modern form styling */
input, select, textarea {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    font-family: inherit;
}

input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1), 0 0 20px rgba(37, 99, 235, 0.2);
}

/* Modern button styles */
button[type="submit"] {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

a {
    position: relative;
}

/* Smooth color transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

/* Service Tab Styling */
.service-tab {
    cursor: pointer;
    user-select: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
}

.service-tab.active {
    color: #2563eb;
    border-bottom: 2px solid #2563eb;
}

.service-tab:hover {
    color: #2563eb;
}

/* Service Panel Transitions */
.service-panel {
    animation: fadeIn 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

nav a:not(.bg-blue-600):not(.bg-gray-600):not(.bg-yellow-400)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transition: width 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

nav a:not(.bg-blue-600):not(.bg-gray-600):not(.bg-yellow-400):hover::after {
    width: 100%;
}

/* Modern gradient text */
.bg-clip-text {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Smooth page transitions */
body {
    transition: background-color 0.3s ease;
}

