/* Import additional Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Allura&family=Berkshire+Swash&family=Clicker+Script&family=Condiment&family=Euphoria+Script&family=Freehand&family=Italianno&family=Kalam&family=Kaushan+Script&family=La+Belle+Aurore&family=Marck+Script&family=MonteCarlo&family=Petit+Formal+Script&family=Pinyon+Script&family=Playball&family=Qwigley&family=Rouge+Script&family=Satisfy&display=swap');

/* Font classes */
.font-dancing { font-family: 'Dancing Script', cursive; }
.font-great { font-family: 'Great Vibes', cursive; }
.font-pacifico { font-family: 'Pacifico', cursive; }
.font-sacramento { font-family: 'Sacramento', cursive; }
.font-tangerine { font-family: 'Tangerine', cursive; }
.font-alex { font-family: 'Alex Brush', cursive; }
.font-allura { font-family: 'Allura', cursive; }
.font-berkshire { font-family: 'Berkshire Swash', cursive; }
.font-clicker { font-family: 'Clicker Script', cursive; }
.font-condiment { font-family: 'Condiment', cursive; }
.font-euphoria { font-family: 'Euphoria Script', cursive; }
.font-freehand { font-family: 'Freehand', cursive; }
.font-italianno { font-family: 'Italianno', cursive; }
.font-kalam { font-family: 'Kalam', cursive; }
.font-kaushan { font-family: 'Kaushan Script', cursive; }
.font-belle { font-family: 'La Belle Aurore', cursive; }
.font-marck { font-family: 'Marck Script', cursive; }
.font-monte { font-family: 'MonteCarlo', cursive; }
.font-petit { font-family: 'Petit Formal Script', cursive; }
.font-pinyon { font-family: 'Pinyon Script', cursive; }
.font-playball { font-family: 'Playball', cursive; }
.font-qwigley { font-family: 'Qwigley', cursive; }
.font-rouge { font-family: 'Rouge Script', cursive; }
.font-satisfy { font-family: 'Satisfy', cursive; }

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.font-preview {
    animation: fadeIn 0.3s ease-out;
}

/* Custom gradient backgrounds */
.gradient-bg {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.gradient-bg-alt {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

/* Custom shadows */
.custom-shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .font-preview {
        padding: 1rem;
    }
}

/* Button hover effects */
.hover-effect {
    transition: all 0.3s ease;
}

.hover-effect:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
} 