@import "tailwindcss";

@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';
@source '../**/*.blade.php';
@source '../**/*.js';

@theme {
    --font-sans: "Instrument Sans", ui-sans-serif, system-ui, sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
}

body {
    font-family: "Fredoka", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.font-handwriting {
    font-family: "Kalam", cursive;
}

.fade-in {
    animation: fadeIn 0.3s ease-out;
}

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

.tab-active {
    background: linear-gradient(to right, #e84393, #fd79a8);
    color: white;
}

.tab-inactive {
    color: #636e72;
    background: rgba(255, 255, 255, 0.6);
}

.tab-inactive:hover {
    color: #2d3436;
    background: rgba(255, 255, 255, 0.8);
}

.form-tab-active {
    background: #f8f9fa;
    border-bottom: 2px solid #e84393;
    color: #e84393;
}

.form-tab-inactive {
    color: #636e72;
    border-bottom: 2px solid transparent;
}

.form-tab-inactive:hover {
    background: #f1f3f4;
}

.stamp-option {
    transition: all 0.2s ease;
}

.stamp-option.selected {
    border-color: #e84393;
    box-shadow: 0 0 0 2px rgba(232, 67, 147, 0.2);
    transform: scale(1.05);
}

.theme-option {
    transition: all 0.2s ease;
}

.theme-option.selected {
    box-shadow: 0 0 0 4px rgba(232, 67, 147, 0.3);
    transform: scale(1.05);
}
