/* Custom styles for wnsr Venice */

:root {
    --gold-200: #f2e1ad;
    --gold-400: #ddad4f;
    --gold-500: #d4912c;
    --gold-600: #b97423;
}

body {
    scroll-behavior: smooth;
}

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

.font-serif {
    font-family: 'Cormorant Garamond', serif;
}

.text-amber-gradient {
    background: linear-gradient(to bottom, var(--gold-200), var(--gold-400), var(--gold-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-amber-glass {
    background: rgba(24, 24, 27, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

::-webkit-scrollbar-track {
    background: #09090b;
}

::-webkit-scrollbar-thumb {
    background: rgba(185, 116, 35, 0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(185, 116, 35, 0.5);
}

/* Animations */
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-spin-slow {
    animation: spin-slow 60s linear infinite;
}

/* Page Transitions */
.page-section {
    transition: opacity 0.4s ease-in-out;
}

.hidden {
    display: none;
}

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

.product-card {
    transition: all 0.3s ease;
}

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