/* Global Styles */

/* Typography */
h1, h2, h3, h4, h5, h6, .card-title, .navbar-brand, .page-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

body {
    font-family: 'Roboto', sans-serif;
    background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    min-height: 100vh;
}

/* Card Styling */
.card {
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.12);
}

.card-title {
    color: #333;
}

[data-bs-theme="dark"] .card-title {
    color: #fff;
}

/* Logo Styling */
.site-logo {
    height: 150px;
    margin-right: -35px;
    margin-left: -35px;
    margin-top: -30px;
    margin-bottom: -60px;
    vertical-align: middle;
    pointer-events: none; /* Prevent dragging/clicking if not wrapped in link */
}

.site-title {
    position: relative;
    top: 17px;
    font-size: 1.5em;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #D42426; /* Santa Red */
}

[data-bs-theme="dark"] .site-title {
    color: #ff6b6b;
}

.text-santa-red {
    color: #D42426 !important;
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.dashboard-card {
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.dashboard-card:hover {
    text-decoration: none;
    color: inherit;
}

.dashboard-card .card {
    height: 100%;
    text-align: center;
    padding: 2rem 1rem;
}

.dashboard-card .card:hover {
    transform: translateY(-5px);
    /* box-shadow inherited from .card:hover */
}

.dashboard-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0d6efd;
}

/* Form Controls */
.form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}
