/* --- CUSTOM STYLES --- */
body { font-family: 'Lato', sans-serif; background-color: #FDFCF8; }
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; font-weight: 700; letter-spacing: -0.5px; }

/* Override Tailwind's font-serif to use Poppins for headings */
.font-serif {
    font-family: 'Poppins', sans-serif;
}

.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

.zoom-img { transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.group:hover .zoom-img { transform: scale(1.03); }

/* Smooth Scroll */
html { scroll-behavior: smooth; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f9f9f9; }
::-webkit-scrollbar-thumb { background: #d4d4d4; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #a3a3a3; }

/* Animation Keyframes */
@keyframes pan-slow {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}
.animate-pan-slow {
    animation: pan-slow 25s infinite alternate linear;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

/* Outline Text for Numbers */
.text-outline {
    -webkit-text-stroke: 1px rgba(0,0,0,0.08);
    color: transparent;
    font-family: 'Poppins', sans-serif;
}

/* Button Hover Line Effect */
.btn-line::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}
.btn-line:hover::after {
    width: 100%;
}

/* Navbar Styling */
.navbar-light {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-dark {
    background-color: transparent;
}
