/**
 * Tema1 — Asrın Teması (Navy/Gold)
 * Bootstrap 5 üzerine tema spesifik stiller
 */

:root {
    --bs-primary: #1a2e4a;
    --bs-primary-rgb: 26, 46, 74;
    --bs-secondary: #e8a020;
    --bs-secondary-rgb: 232, 160, 32;
    --bs-link-color: #1a2e4a;
}

/* Buton override */
.btn-primary {
    background-color: #1a2e4a;
    border-color: #1a2e4a;
}
.btn-primary:hover {
    background-color: #12213a;
    border-color: #12213a;
}

/* Kart hover efekti */
.card-hover {
    transition: all .2s ease;
}
.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(26,46,74,.15) !important;
}
