/* Custom styles for Boddeker Kenneth */

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

/* Custom button styles */
.btn-primary {
    @apply bg-burgundy-700 text-white font-semibold px-6 py-3 rounded-2xl hover:bg-burgundy-600 transition-all duration-300 shadow-lg hover:shadow-xl hover:-translate-y-0.5;
}

.btn-secondary {
    @apply bg-white text-burgundy-700 font-semibold px-6 py-3 rounded-2xl hover:bg-burgundy-50 transition-all duration-300 shadow-lg hover:shadow-xl border-2 border-burgundy-200;
}

/* Navigation link styles */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #a01538, #d83b63);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Service card hover effect */
.service-card {
    perspective: 1000px;
}

.service-card:hover {
    transform: translateY(-8px);
}

/* Mobile menu link styles */
.mobile-link {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.mobile-link:hover {
    background-color: #fdf2f4;
    color: #a01538;
}

/* Navbar scroll effect */
header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

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

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #a01538, #d83b63);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #841635, #c22049);
}

/* Input focus styles */
input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(160, 21, 56, 0.1);
}

/* Image hover zoom */
img {
    transition: transform 0.5s ease;
}

/* Responsive typography */
@media (max-width: 640px) {
    .font-serif {
        font-size: 2rem;
    }
}

/* Print styles */
@media print {
    header,
    footer,
    #back-to-top {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
