@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700;900&family=Inter:wght@400;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3 {
    font-family: 'Merriweather', serif;
}

.perforated-edge {
    position: relative;
}

.perforated-edge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, 
        transparent 0%, transparent 45%, 
        currentColor 45%, currentColor 55%, 
        transparent 55%, transparent 100%);
    background-size: 20px 8px;
    opacity: 0.1;
}

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

.animate-bounce {
    animation: bounce 0.5s ease-in-out;
}

/* Print styles for "Freedom Fees Report" */
@media print {
    header, footer, button {
        display: none !important;
    }
    
    .no-print {
        display: none !important;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem !important;
    }
    
    .text-5xl {
        font-size: 2.5rem !important;
    }
}

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

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

::-webkit-scrollbar-thumb {
    background: #5D7052;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2C3E50;
}

/* Hover effects for license cards */
.perforated-edge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Achievement glow effect */
.bg-yellow-50 {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}