/* Custom Styles for Plant City MRI */

:root {
    --color-coral: #FF6B6B;
    --color-coral-dark: #E85A5A;
    --color-charcoal: #1F2937;
    --color-slate-light: #F8FAFC;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--color-charcoal);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

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

/* Details/Summary Animation */
details > summary {
    list-style: none;
}

details > summary::-webkit-details-marker {
    display: none;
}

/* Navbar Glass Effect */
.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Coral Button Hover */
.bg-coral:hover {
    background-color: var(--color-coral-dark);
}

/* Custom Selection Color */
::selection {
    background-color: var(--color-coral);
    color: white;
}
