/* Custom styles complementing Tailwind */

/* Subtle gradient overlay on hero */
#top::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, rgba(242,247,240,0.6) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Smooth section transitions */
section {
    position: relative;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #faf9f6;
}
::-webkit-scrollbar-thumb {
    background: #c5dbb0;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #9cc07e;
}

/* Selection color */
::selection {
    background: #c5dbb0;
    color: #111a0c;
}

/* Form input focus ring fallback */
input:focus, textarea:focus {
    box-shadow: none;
}

/* Mobile menu animation */
#mobile-menu {
    animation: slideDown 0.2s ease-out;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Navbar scroll state */
.navbar-scrolled {
    box-shadow: 0 1px 0 rgba(49,80,34,0.06);
}

/* Image hover */
section img {
    transition: transform 0.5s ease;
}
section img:hover {
    transform: scale(1.01);
}
