@import url('style.css');

/* Specifični stilovi za poslastice */
.dessert-card {
    border: 1px solid #333;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    transition: var(--transition);
    background: linear-gradient(145deg, #1a1a1a, #151515);
    animation: fadeInScale 0.6s ease forwards;
}

.dessert-card:hover {
    border-color: #e91e63; /* Roze akcent */
    transform: scale(1.02);
}

.dessert-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.dessert-header h4 {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.95rem;
    color: white;
}

.price {
    color: #ffffff; /* Cijena prati roze akcent na ovoj stranici */
    font-weight: bold;
}

.description {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
}

/* Prilagođeno za dynamic naslove sekcija */
.menu-subheading {
    margin: 40px 0 20px 0;
    font-size: 1rem;
    letter-spacing: 3px;
    color: #eee;
    border-left: 3px solid #e91e63;
    padding-left: 10px;
    text-transform: uppercase;
}

/* Animacija */
@keyframes fadeInScale {
    from { 
        opacity: 0; 
        transform: scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

.back-btn {
    display: inline-block;
    margin-top: 50px;
    color: var(--text-color);
    text-decoration: none;
    border: 1px solid #444;
    padding: 10px 25px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.back-btn:hover {
    background: #e91e63;
    color: white;
    border-color: #e91e63;
}