/* Custom Styles for FLIA Landing Page */

/* Base Styles */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Glassmorphism for Modal */
.glass-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.glass-overlay {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}

/* Custom Gradients to replace images */
.gradient-abstract-hero {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    position: relative;
    overflow: hidden;
}

.gradient-abstract-hero::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(90, 166, 50, 0.15) 0%, transparent 60%);
    animation: rotateSlow 20s linear infinite;
}

.gradient-waves {
    background: linear-gradient(to right, #000000, #0a1f0a);
    background-image: repeating-linear-gradient(45deg, rgba(90, 166, 50, 0.05) 0px, rgba(90, 166, 50, 0.05) 2px, transparent 2px, transparent 10px);
}

.gradient-geometry {
    background: linear-gradient(135deg, #2d5a1e 0%, #5aa632 100%);
    position: relative;
}
.gradient-geometry::before {
    content: '';
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background-image: linear-gradient(30deg, rgba(0,0,0,0.1) 50%, transparent 50%), linear-gradient(-30deg, rgba(0,0,0,0.1) 50%, transparent 50%);
    background-size: 50px 50px;
}

/* Animations */
@keyframes rotateSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Modal Transitions */
.modal-enter {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-enter-active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.modal-leave {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition: all 0.2s ease-in;
}

.modal-leave-active {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
}

/* Form Styles */
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #5AA632;
    box-shadow: 0 0 0 3px rgba(90, 166, 50, 0.2);
}
