/* MANO PANELLI - LUXURY THEME */

:root {
    --gold-primary: #f59e0b; /* Amber 500 */
    --gold-secondary: #d97706; /* Amber 600 */
}

/* Custom Gradients */
.text-gold-gradient {
    background: linear-gradient(to right, #f59e0b, #fbbf24, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gold-gradient {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.border-gold {
    border-color: rgba(245, 158, 11, 0.3);
}

/* Glassmorphism */
.mobile-glass {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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