/*
 * Polices personnalisées Ratchou
 * Contient les 3 polices utilisées pour les éléments graphiques de Ratchou
 */

/* Police Zooland - Contient le rat musicien (lettre N) */
@font-face {
    font-family: 'Zooland';
    src: url('Zooland.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Police Money Money Money - Thème financier */
@font-face {
    font-family: 'Money Money Money';
    src: url('Money money money.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Police LCR Meeses - Style particulier */
@font-face {
    font-family: 'LCR Meeses';
    src: url('LCR Meeses.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Styles pour la mascotte Ratchou */
.ratchou-mascot {
    font-family: 'Zooland', sans-serif;
    color: white;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

/* Animations hover pour la mascotte */
.ratchou-mascot:hover {
    transform: rotate(-3deg) scale(1.05);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}

.ratchou-mascot:active {
    transform: rotate(3deg) scale(0.95);
}

/* Classes utilitaires pour les différentes polices */
.font-zooland { font-family: 'Zooland', sans-serif; }
.font-money { font-family: 'Money Money Money', sans-serif; }
.font-lcr { font-family: 'LCR Meeses', sans-serif; }