/**
 * Custom styles for 221Buddy
 */

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Custom header styles */
header h1 {
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* Navigation styles */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.25rem;
}

/* Card hover effects */
.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: 1px solid rgba(0,0,0,0.125);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Footer styles */
footer {
    margin-top: auto;
}

/* Jumbotron styles for Bootstrap 5 */
.jumbotron {
    background-color: var(--light-color);
    border: 1px solid rgba(0,0,0,0.1);
}

/* Utility classes */
.text-primary-custom {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .jumbotron h1 {
        font-size: 2rem;
    }

    .jumbotron .lead {
        font-size: 1rem;
    }
}
