/* Custom utility classes in pure CSS to complement Tailwind */

/* Hide scrollbar for the ticker */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* 1px gold frame for images */
.royal-frame {
    border: 1px solid #D4AF37;
    padding: 6px;
    background-color: #FAF9F6;
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.1); 
    transition: all 0.5s ease;
}

.royal-frame:hover {
    box-shadow: 0 20px 40px -5px rgba(212, 175, 55, 0.2); 
    transform: translateY(-5px);
}

/* Glassmorphism utility */
.glass {
    background: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.glass-dark {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Adjustments for fixed navbar */
[id] {
    scroll-margin-top: 100px;
}
