/* Custom styles for Full Armor Wealth */

/* Clip path for diagonal hero background */
.clip-path-diagonal {
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

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

::-webkit-scrollbar-thumb {
    background: #059669;
    border: 2px solid #f9f7f0;
}

::-webkit-scrollbar-thumb:hover {
    background: #047857;
}

/* Selection color */
::selection {
    background: #059669;
    color: white;
}

/* Animation for mobile menu */
#mobile-menu {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar scroll effect */
.navbar-scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Hover effects for service cards */
.group:hover .group-hover\\:bg-emerald-600 {
    background-color: #059669;
}

/* Form focus states */
input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .clip-path-diagonal {
        clip-path: none;
    }
    
    .font-display {
        letter-spacing: 0.02em;
    }
}

/* Print styles */
@media print {
    .fixed,
    nav,
    button {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
}
