@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #2E7D32;
    --accent: #F57C00;
    --trust: #1565C0;
    --bg: #FFF8E7;
    --text: #2C2C2C;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: var(--bg);
}

/* Custom Mesh Gradient Background for Unique Look */
.bg-gradient-mesh {
    background-image: 
        radial-gradient(at 0% 0%, rgba(46, 125, 50, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(245, 124, 0, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(21, 101, 192, 0.08) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(46, 125, 50, 0.08) 0px, transparent 50%);
    background-attachment: fixed;
}

/* Custom Webkit Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

/* Glassmorphism Panels */
.glass-panel {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

/* Hover Scale Utility */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Image reveal animation on load */
.img-reveal {
    animation: reveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes reveal {
    0% { filter: blur(10px) brightness(0.8); transform: scale(1.05); }
    100% { filter: blur(0) brightness(1); transform: scale(1); }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Toast Animations */
@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; transform: translateY(10px); }
}

.toast-enter {
    animation: slideInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.toast-exit {
    animation: fadeOut 0.4s ease forwards;
}

/* Progress Bar Anim */
.progress-fill {
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Unique Grid Styling for Imports */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    grid-auto-rows: 250px;
}
