.card {
    height: 100%;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.stars {
    color: #FFD700;
}

.price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #2c3e50;
}

.pagination .page-item.active .page-link {
    background-color: #2c3e50;
    border-color: #2c3e50;
    color: white;
}

.pagination .page-link {
    color: #2c3e50;
}

.pagination .page-link:hover {
    background-color: #34495e;
    color: white;
}

/* Header styles */
body {
    padding-top: 56px; /* Height of fixed navbar */
}

/* Jumbotron styles */
.jumbotron-container {
    position: relative;
    height: 500px;
    background: url('img/jumbotron.png') center/cover no-repeat;
    background-color: #2c3e50;
    margin-bottom: 2rem;
}

.jumbotron-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.jumbotron-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.jumbotron-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.jumbotron-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Footer styles */
.social-links a {
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #007bff !important;
}

/* Update script.js untuk menangani gambar yang tidak muncul */ 