@import url('style.css');

.menu-section {
    margin-bottom: 35px;
}

.menu-section h3 {
    color: var(--accent-color);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 8px;
    text-transform: uppercase;
}

.menu-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
    font-size: 0.9rem;
    /* Suptilna animacija pri učitavanju */
    animation: fadeInRow 0.5s ease forwards;
    opacity: 0;
}

/* Redoslijed pojavljivanja stavki */
.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }

.dots {
    flex: 1;
    border-bottom: 1px dotted #444;
    margin: 0 10px;
}

.price {
    font-weight: bold;
    color: var(--text-color);
}

.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: var(--accent-color);
    color: black;
}

@keyframes fadeInRow {
    from { 
        opacity: 0; 
        transform: translateY(5px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}