/* 
   EVANDRO365 - Premium Styles
   Custom overrides and effects that can't be easily done via Tailwind classes alone
*/

:root {
    --color-brand-black: #0b0b0b;
    --color-brand-orange: #ff6a00;
    --color-brand-glow: rgba(255, 106, 0, 0.4);
}

/* Custom Utilities */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.text-glow {
    text-shadow: 0 0 20px var(--color-brand-glow);
}

.shadow-glow {
    box-shadow: 0 0 20px var(--color-brand-glow);
}

/* Base resets and specifics */
html {
    scroll-behavior: smooth;
    background-color: var(--color-brand-black);
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Button hover animation scale */
.scale-button {
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scale-button:hover {
    transform: scale(1.05);
}

.scale-button:active {
    transform: scale(0.95);
}

/* Hide scrollbar but keep functionality */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-brand-black);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 106, 0, 0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 106, 0, 0.5);
}

/* Heading display settings */
h1, h2, h3, h4 {
    font-feature-settings: "ss01", "ss02";
}

/* Specific card glows */
.group:hover .glass-card {
    border-color: rgba(255, 255, 255, 0.2);
}
