/* Custom Styles for ARENT Consultant */

:root {
    --brand-primary: #219653;
    --brand-dark: #1b7a43;
    --brand-light: #2ecc71;
}

body {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

/* Material Symbols Fill State */
.font-filled {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Navigation Links */
.nav-link {
    position: relative;
    padding-bottom: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Animation Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-500 { transition-delay: 500ms; }

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-primary);
}

/* Section Specifics */
#contact select, #contact input, #contact textarea {
    outline: none !important;
    transition: all 0.3s ease;
}

#contact select:focus, #contact input:focus, #contact textarea:focus {
    background: #fff !important;
    box-shadow: 0 10px 15px -3px rgba(33, 150, 83, 0.1), 0 4px 6px -2px rgba(33, 150, 83, 0.05);
}

/* Hero Gradient Overlay */
.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(33, 150, 83, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
}
