/* Additional custom styles */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

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

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

::-webkit-scrollbar-thumb {
    background: #FF6B6B;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #EE5253;
}

/* Blob animations */
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.blob {
    animation: float 20s ease-in-out infinite;
}

/* Card hover effects */
.vintage-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vintage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(44, 62, 80, 0.15);
}

/* Button styles */
.btn-primary {
    background-color: #FF6B6B;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #EE5253;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: #2C3E50;
    color: white;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #34495E;
    transform: scale(1.05);
}
