/* ==========================================================================
   Raphzshots — Custom Styles
   Tailwind handles utility classes via CDN. This file holds only the
   custom CSS that Tailwind can't express: base body styles, scrollbar,
   glassmorphism, hero transitions, and the marquee animation.
   ========================================================================== */

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #0b0c0f;
    color: #ffffff;
    overflow-x: hidden;
}

/* Custom premium scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0b0c0f;
}
::-webkit-scrollbar-thumb {
    background: #2d313f;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #e53e3e;
}

/* Glassmorphism utility */
.glass-nav {
    background: rgba(11, 12, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* Advanced Custom Cubic Bezier Transitions for Expandable Hero */
.hero-content-panel {
    transition: opacity 0.5s ease-in-out;
}

.hero-video-panel {
    transition: inset 0.5s ease-in-out, width 0.5s ease-in-out, height 0.5s ease-in-out;
}

/* Infinite scrolling brand marquee */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 35s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}
