@import "tailwindcss";

/* Custom Base Styles */
:root {
    --gold: #D4AF37;
    --dark: #1A1A1A;
}

body {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--dark);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Vertical Continuous Scroll */
@keyframes scrollVertical {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.animate-scroll-vertical {
    animation: scrollVertical 40s linear infinite;
    display: flex;
    flex-direction: column;
}

/* Text Utility */
.text-small-caps {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-weight: 700;
}

/* Product Card Hover Effect */
.product-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-overlay {
    transition: opacity 0.4s ease;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0) 50%);
}

/* Navigation Line Effect */
nav a {
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Form Styles */
input, select, textarea {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}
