.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/pisang.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-section .lead {
    font-size: 1.5rem;
    font-weight: 500;
}

.card {
    transition: transform 0.5s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

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

.card-img-top {
    height: 200px;
    object-fit: contain;
    padding: 1rem;
    background-color: #f8f9fa;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.card-img-top:hover {
    transform: scale(2);
    z-index: 1;
}

.price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #28a745;
    margin: 1rem 0;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
    padding: 10px 20px;
    font-size: 1.1rem;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #8B0000 !important; /* Dark Red */
}

section {
    padding: 60px 0;
}

footer {
    margin-top: 0;
}

.weight {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
} 