/* Custom styles on top of Bootstrap */
body {
    font-family: 'Georgia', serif;
    background-color: #faf9f6;
}

header {
    background: linear-gradient(135deg, #f8e8e8 0%, #faf9f6 100%);
}

h1 {
    color: #5a3e36;
}

.dessert-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333;
    position: relative;
}

.dessert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2) !important;
}

.card-title {
    color: #5a3e36;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline !important;
}

/* Badge overlay on images */
.badge-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 10;
}

.card-img-wrapper {
    position: relative;
}