/* Custom styles for Pulp Solutions website */

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

/* Body */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
}

/* Navigation */
.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

/* Buttons */
.btn {
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
}

/* Badges */
.badge {
    font-weight: 500;
    padding: 0.5rem 0.75rem;
}

/* Links */
a {
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Header sections */
header h1 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Timeline */
.timeline {
    position: relative;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.1rem;
    }
}

/* Footer */
footer {
    font-size: 0.95rem;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Feature icons */
.feature-icon {
    flex-shrink: 0;
}

/* Alert improvements */
.alert {
    border: none;
    border-radius: 0.5rem;
}

/* Shadow utilities enhancement */
.shadow-sm {
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1) !important;
}

/* Smooth transitions for all interactive elements */
* {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
}

/* Remove transition from elements that shouldn't have it */
*:not(a):not(button):not(.btn):not(.card):not(.nav-link) {
    transition: none;
}

/* Re-add transitions to specific elements */
a, button, .btn, .card, .nav-link {
    transition: all 0.3s ease;
}
