/* Custom styles for Premium Furniture Website */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary: #4A3728; /* Wood Brown */
    --secondary: #F5F5F0; /* Linen White */
    --accent: #D4AF37; /* Gold */
    --text-main: #2D2D2D;
    --text-muted: #6B7280;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: #FFFFFF;
}

h1, h2, h3, h4, .serif {
    font-family: 'Playfair Display', serif;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Transitions */
.transition-soft {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Product Card Hover */
.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-card:hover .quick-view {
    opacity: 1;
    transform: translateY(0);
}

/* Timeline Reveal */
.timeline-line-active {
    height: 100%;
}

.serif-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.letter-spacing-xl {
    letter-spacing: 0.5em;
}

/* Image Parallax Hint */
.parallax-hover {
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.parallax-hover:hover {
    transform: scale(1.02) translateY(-10px);
}
