/* Novelties Bank - Standard Style Library */

/* Reset & Base */
body {
    background-color: #050505;
    color: white;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.serif { font-family: 'Playfair Display', serif; }
.gold-text { color: #C5A059; }
.gold-border { border: 1px solid rgba(197, 160, 89, 0.3); }

/* Glassmorphism */
.glass {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Nav Links */
.nav-link {
    font-size: 10px;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
    text-transform: uppercase;
}
.nav-link:hover { color: #C5A059; }

/* Global Utilities */
html { scroll-behavior: smooth; }

/* Custom Animations */
@keyframes gold-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.animate-gold-pulse {
    animation: gold-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Hero Background Overlays */
.hero-gradient {
    background: linear-gradient(to right, #050505 0%, rgba(5, 5, 5, 0.6) 50%, transparent 100%);
}

.hero-bottom-fade {
    background: linear-gradient(to top, #050505 0%, transparent 100%);
}
