/* Navigation Components */
.nav-link {
    color: #64748b;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

.nav-link:hover {
    color: #3b82f6;
}

.mobile-nav-item {
    color: #64748b;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.mobile-nav-item:hover {
    color: #3b82f6;
    background-color: #f8fafc;
}

.mobile-sticky-nav {
    position: sticky;
    top: 4rem;
    z-index: 40;
}

/* Breadcrumb Component */
.breadcrumb {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb.breadcrumb-dark {
    background: transparent;
    border-bottom: none;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    color: #64748b;
}

.breadcrumb-item:last-child {
    color: #0f172a;
    font-weight: 500;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: #94a3b8;
}

.breadcrumb-link {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: #1d4ed8;
}

@media (max-width: 640px) {
    .breadcrumb {
        padding: 0.5rem 1rem;
    }
    
    .breadcrumb-item {
        font-size: 0.8rem;
    }
    
    .breadcrumb-separator {
        margin: 0 0.25rem;
    }
}

/* Cookie Consent Styles */
@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOutDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

#cookieConsent {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 -10px 25px -3px rgba(0, 0, 0, 0.1), 0 -4px 6px -2px rgba(0, 0, 0, 0.05);
}

#cookieConsent.translate-y-full {
    animation: slideOutDown 0.3s ease-in-out;
}

#cookieConsent:not(.translate-y-full) {
    animation: slideInUp 0.3s ease-in-out;
}

/* Custom toggle switches */
.peer:checked ~ .peer-checked\:bg-becore-primary {
    background-color: #3b82f6;
}

/* Modal backdrop blur */
#cookieSettingsModal {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Smooth transitions for modal */
#cookieSettingsModal.hidden {
    transition: opacity 0.2s ease-in-out;
}

/* Cookie button hover effects */
#cookieConsent button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile responsive adjustments for cookie consent */
@media (max-width: 640px) {
    #cookieConsent {
        padding: 1rem;
    }
    
    #cookieSettingsModal .bg-white {
        margin: 0.5rem;
        max-height: calc(100vh - 1rem);
    }
}

/* Hero scroll indicator */
.hero-scroll-indicator {
    transition: opacity 0.3s ease-in-out;
}

.hero-scroll-indicator.hidden-scroll {
    opacity: 0;
    pointer-events: none;
} 