/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.navbar-brand img {
    height: 40px;
    width: auto;
}

/* Card Styles */
.card {
    transition: transform 0.2s;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Badge Styles */
.badge {
    padding: 0.5rem 0.8rem;
    font-size: 0.875rem;
}

/* Button Styles */
.btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.2s;
}

.btn:hover {
    transform: translateY(-1px);
}

/* Pagination Styles */
.pagination {
    margin-top: 2rem;
}

.page-link {
    color: #333;
    border-radius: 0.375rem;
}

.page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}

/* Star Rating Styles */
.star-rating {
    color: #ffd700;
    font-size: 1.25rem;
}

/* Filter Form Styles */
.form-select {
    padding: 0.5rem;
    border-radius: 0.375rem;
    border: 1px solid #ddd;
}

/* Breadcrumb Styles */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
}

/* Footer Styles */
.footer {
    background-color: #f8f9fa;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid #eee;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
}

.footer-links a:hover {
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .card {
        margin-bottom: 1rem;
    }
}
