/* Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
    --gold-primary: #D4AF37;
    --gold-light: #F4C430;
    --gold-dark: #AA6C39;
    --dark-bg: #0f172a;
}

body {
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.text-gold {
    color: var(--gold-primary);
}

.bg-gold {
    background-color: var(--gold-primary);
}

.gold-gradient {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 50%, var(--gold-light) 100%);
}

.gold-text-gradient {
    background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hover-gold-glow:hover {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* AOS overrides if needed */
