/* CSS dari UAS Dea.html */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('logo.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
}
.menu-item {
    transition: transform 0.3s ease;
}
.menu-item:hover {
    transform: translateY(-5px);
}
.coffee-img {
    height: 200px;
    object-fit: cover;
}
.about-section {
    background-color: #f8f9fa;
}
.footer {
    background-color: #343a40;
    color: white;
}
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}
.btn-primary {
    background-color: #8B4513;
    border-color: #8B4513;
}
.btn-primary:hover {
    background-color: #654321;
    border-color: #654321;
} 