/* Save as: styles.css */
:root {
    --color-gold: #D4AF37;
    --color-dark: #1A1A1A;
    --color-darker: #0F0F0F;
    --color-soft-white: #F8F8F8;
}

/* Custom Classes */
.text-gold {
    color: var(--color-gold);
}

.bg-dark {
    background-color: var(--color-dark);
}

.bg-darker {
    background-color: var(--color-darker);
}

.bg-soft-white {
    background-color: var(--color-soft-white);
}

/* Navigation */
.nav-link {
    @apply text-gray-700 hover:text-gold transition-colors duration-300 text-sm uppercase tracking-wide;
}

/* Buttons */
.btn-primary {
    @apply px-6 py-2 bg-gold text-white rounded-full hover:bg-gold/90 transition-all duration-300 text-sm uppercase tracking-wide;
}

.btn-primary-large {
    @apply px-8 py-3 bg-gold text-white rounded-full hover:bg-gold/90 transition-all duration-300 text-base uppercase tracking-wide;
}

.btn-secondary {
    @apply px-6 py-2 border-2 border-gold text-gold rounded-full hover:bg-gold hover:text-white transition-all duration-300 text-sm uppercase tracking-wide;
}

/* Product Cards */
.product-card {
    @apply bg-white rounded-2xl p-8 shadow-lg transition-all duration-300 hover:shadow-2xl;
}

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

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

/* Scroll Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

::-webkit-scrollbar-track {
    background: var(--color-soft-white);
}

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

/* Loading Animation */
.loader-content {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}
