/* Custom Styles for JYOO Corporation */

:root {
    --brand-cream: #fdfcf9;
    --brand-blue: #1f5fdd;
    --brand-blue-dark: #0f2a66;
    --brand-gold: #c5a059;
    --brand-ink: #1a1a1a;
    --brand-text: #152b51;
}

body { background: var(--brand-cream); color: var(--brand-text); }

nav, .bg-white { background-color: rgba(255,255,255,0.9); }

a, .text-[#1a1a1a] { color: var(--brand-text) !important; }

.text-[#c5a059], .text-[#1a1a1a] + .text-[#c5a059], .text-[#c5a059] + a { color: var(--brand-gold) !important; }

.btn-primary, .bg-[#c5a059], .border-[#c5a059] { background-color: var(--brand-blue) !important; border-color: var(--brand-blue) !important; color: #fff !important; }

.btn-primary:hover, .bg-[#c5a059]:hover, .hover\:bg-[#c5a059]:hover { background-color: var(--brand-blue-dark) !important; }

.text-[#1a1a1a]/60, .text-[#1a1a1a]/70, .text-[#1a1a1a]/80 { color: rgba(21,43,81,0.78) !important; }

body {
    overflow-x: hidden;
}

/* Reveal Animation on Scroll */
.reveal {
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-700 { transition-delay: 0.7s; }

/* Navbar Scrolled State */
nav.scrolled {
    background-color: rgba(253, 252, 249, 0.9);
    backdrop-filter: blur(10px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--brand-gold);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-olive);
}

/* Global intro background */
.intro-bg {
    background-image: url("../img/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

