/* =====================================================================
   Rusape Pork & Genetics — Custom Styles
   Extracted from the single-file brochure website
   ===================================================================== */

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

/* ===== Scroll-driven Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Subtle floating animation ===== */
.animate-float-slow {
    animation: floatSlow 6s ease-in-out infinite;
}
@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* ===== Scroll-progress bar ===== */
#scroll-progress {
    height: 4px;
    background: linear-gradient(to right, #ea580c, #f97316);
    width: 0%;
    transition: width 0.1s ease-out;
}

/* ===== Active nav indicator ===== */
.nav-active {
    color: #14532d !important;
    border-bottom: 2px solid #14532d;
    font-weight: 700;
}

/* ===== Smooth anchor offset ===== */
html {
    scroll-padding-top: 6rem;
}
