body {
    font-family: 'Inter', sans-serif;
}

.hero-gradient {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%),
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80') center/cover;
    background-blend-mode: overlay;
    position: relative;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(45,55,72,0.7) 100%);
    pointer-events: none;
}

.button-gold {
    background: linear-gradient(135deg, #d4af37 0%, #f1c40f 100%);
    transition: all 0.3s ease;
}

.button-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.form-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.form-input:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #d4af37;
}

.elegant-title {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.02em;
}

.language-switcher {
    transition: all 0.3s ease;
}

.language-switcher:hover {
    color: #d4af37;
}
