

.bg-image-section {
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


.rating-stars {
    display: flex;
    gap: 5px;
    font-size: 2rem;
    line-height: 1;
}

.rating-stars .star {
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

.rating-stars .star.active,
.rating-stars .star.hover-active {
    color: #ffc107;
}
.rating-stars .star i {
    font-size: 1.5rem;
    color: #ddd;
}
.rating-stars .star.active i,
.rating-stars .star.hover-active i {
    color: #ffc107;
}


.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.nav-tabs .nav-link {
    font-weight: 500;
}

.badge {
    font-size: 0.75rem;
}