
:root {
    --gold: #C5A059;
    --gold-light: #E8D5B5;
    --dark: #1A1A1A;
    --light: #FDFDFB;
    --card-bg: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

.serif-font {
    font-family: 'Bodoni Moda', serif;
}

.gold-gradient {
    background: linear-gradient(135deg, #C5A059 0%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-gold {
    background: linear-gradient(135deg, #C5A059 0%, #B8860B 100%);
    color: white;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3);
}

.premium-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.premium-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

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

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.bg-pattern {
    background-image: radial-gradient(#C5A059 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.1;
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* Input Styles */
.input-premium {
    background: #F4F4F2;
    border: 1px solid transparent;
    border-radius: 0.75rem;
    padding: 1rem;
    width: 100%;
    outline: none;
    transition: all 0.3s;
    color: var(--dark);
}

.input-premium:focus {
    border-color: var(--gold);
    background: white;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.05);
}

select.input-premium {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C5A059'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
}

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

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

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

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